
Tabbing doesn't work on VB Documents in IE3.02
There's a problem with the setup wizard noted on the MS web site. In the
HTM file, just add:
window.navigate "your_name.VBD"
and remove the 3 or 4 lines put in by the setup wizard. Everything will
work. Make it look like this and all will be well:
<HTML>
<OBJECT ID="WeeklyReport"
CLASSID="CLSID:D4161E11-DA81-11D0-BDD8-444553540000"
CODEBASE="WeeklyReport.CAB#version=1,0,0,0">
</OBJECT>
<SCRIPT LANGUAGE="VBScript">
Sub Window_OnLoad
window.navigate "WeeklyReport.VBD"
End Sub
</SCRIPT>
</HTML>
Chuck
Quote:
> I'm also experiencing the same problem and wish people at Microsoft would
> get up and do something about this because ActiveX Documents on the
> Internet is a HOT, very HOT thing for me and other VB developers that
have
> an aversion for the following:
> HTML
> REXX
> JCL
> I suspect all those languages were written by the same crew who LOVE
> difficulty and tedium more than making money. Sorry, but ActiveX
documents
> should've been invented a long time ago!
> > Has any experienced this problem?
> > When I say "VB Documents", I am refering to a object derived from the
> > UserDocument class and the resultant .VBD file.