Tabbing doesn't work on VB Documents in IE3.02 
Author Message
 Tabbing doesn't work on VB Documents in IE3.02

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.



Tue, 09 Nov 1999 03:00:00 GMT  
 Tabbing doesn't work on VB Documents in IE3.02

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!



Quote:
> 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.



Wed, 10 Nov 1999 03:00:00 GMT  
 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.



Sat, 20 Nov 1999 03:00:00 GMT  
 Tabbing doesn't work on VB Documents in IE3.02

This fix (to the generated code in the .HTM file) also fixes the following
problems:

- failure to upgrade the ActiveX document if the project has been
recompiled.
- run-time error trying to access the App object to report things like
program version
- failure of menus on the ActiveX document to be merged with IE's menus
(altho the ActiveX doc's menu's don't show up immediately, but after I've
navigated to another ActiveX doc and then returned)

Thanks Chuck!

--
Kevin M. Klasman
Klasman Quality Consulting, Inc



Quote:
> 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



Sun, 28 Nov 1999 03:00:00 GMT  
 
 [ 4 post ] 

 Relevant Pages 

1. Tabbing doesn't work on VB Documents in IE3.02

2. ActiveX document can't run in IE3.02

3. IE3.02 and document.write to another window

4. IE3 doesn't work after working with webbrowser control

5. Embedding shdocvw.dll (ie3.02) into a vb app

6. Alt+Tab from IDE to modal VB App - 5.0 works, 6.0 doesn't

7. ie3.02 equivalent of VALUE

8. Trapping for Keystrokes in IE3.02

9. Migrating app from IE3.02 to IE4+

10. Out of String Space error in IE3.02

11. VBScript Compatibility Issue with IE3.02 and ActiveX label control

12. A very odd caching problem with IE3.02

 

 
Powered by phpBB® Forum Software