..and I am having a problem with security. My webpage loads into the Visual
C++ template wizard(new project) but I get the error "To help protect your
security, your web browser has restricted this file from showing active
content that could access your computer. Click here for options."
How do I turn this off?
I get the same message with a third party set of components that installs
a wizard. I haven't been able to get it to go away, though it doesn't
seem to hurt anything either as the wizard runs normally.
Eric
In case anyone wants to check my work I used the below link(best site could
find) to do my wizard:
http://siddhant.name/text/appwiznet.html
It(appwizard on site) also does the same thing. :(
This is more an issue with the browser than with VC++, no? I think the
"problem" is that your page either hosts an ActiveX control (look for
<object>) or a script block (<script>).
I might be wrong, but I think that the error is tripped when the browser is
about to download a control (or script?) that is not already present on the
box:
http://support.microsoft.com/kb/843017/
Regards,
Will
Yes, that is exactly what is happening, VC++ host a webcontrol(new project
wizards) and it is tripping an error when it hits the script in my page...The
question is, how do I tell VC++ webcontrol not to do this.
>
I used this guys(His wizard causes the same error) site(best I could find)
to do my wizard:
http://siddhant.name/text/appwiznet.html
>
I compared his wizard to WTL and Ogre3ds wizard and the code isn't that much
different...I mean besides no error that is. I just don't know where I am
getting it wrong in the process.