MattNeeley
IS-IT--Management
I'm using an ActiveX DLL and there's a considerable load time on using it as I packed up all the possibly needed DLLs and OCXs inside of the .CAB file. After packaging I get a HTM File that I split into independant .HTML files to be pointed at each section (UserDocument) of the program. See below*. The problem being is that i cannot get it to say "Loading Please Wait..." while it's loading the ActiveX DLL and Registering itself. Any helpful tips would be very appreciated.
<HTML>
<OBJECT ID="UserDocument"
CLASSID="CLSID:<Insert Compile ID Here>"
CODEBASE="project1.cab#version=1,0,0,24">
</OBJECT>
<SCRIPT LANGUAGE="VBScript">
Sub Window_OnLoad
Document.Open
Document.Write "<FRAMESET>"
Document.Write "<FRAME SRC=""UserDocument.vbd"">"
Document.Write "</FRAMESET>"
Document.Close
End Sub
</SCRIPT>
</HTML>
<HTML>
<OBJECT ID="UserDocument"
CLASSID="CLSID:<Insert Compile ID Here>"
CODEBASE="project1.cab#version=1,0,0,24">
</OBJECT>
<SCRIPT LANGUAGE="VBScript">
Sub Window_OnLoad
Document.Open
Document.Write "<FRAMESET>"
Document.Write "<FRAME SRC=""UserDocument.vbd"">"
Document.Write "</FRAMESET>"
Document.Close
End Sub
</SCRIPT>
</HTML>