Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Is this a bug in VC++ wizard?

5 views
Skip to first unread message

mr.sir bossman

unread,
Sep 6, 2006, 2:09:01 AM9/6/06
to
Is this a bug or is there somewhere in the wizard process that you have to
tell VC++ that your html file doesn't link(css) with anything?

Safe code
**************
<HTML>
<HEAD>
<LINK> <-- key to getting rid of warning-->
</HEAD>
<BODY />
</HTML>
<SCRIPT LANGUAGE="JSCRIPT">
function OnFinish(document)
{
OnWizFinish(document);
}
</SCRIPT>
////////////////////////////

Unsafe code - gives you warning "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."

**************
<HTML>
<HEAD />
<BODY />
</HTML>
<SCRIPT LANGUAGE="JSCRIPT">
function OnFinish(document)
{
OnWizFinish(document);
}
</SCRIPT>

0 new messages