Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I have a question about loading Act

Status
Not open for further replies.

ahoodin7

Programmer
Jun 16, 2004
72
0
0
US
I have a question about loading ActiveX Controls with ASP Classic.
The problem is that typically these controls are loaded from the server.
IT has locked out all Administrative rights on Workstations, so ActiveX
controls can not be loaded from remote servers without changes to group
policies which they do not care to make.

Here is the method the app loads the controls
HTML:
    <object ID="oPersonalInbox" 
      CLASSID="CLSID:0006F063-0000-0000-C000-000000000046" 
      CODEBASE="Graph/outlctlx.CAB#ver=9,0,0,3203"
      HEIGHT="100%"
      WIDTH="100%">
...
    </object>

This loads the control from the server. Now they are trying
to package the controls and deploy them locally by copying
them to a system directory and registering them with
regsvr32. If the path is removed, will the control load
from the local system directory?

HTML:
    <object ID="oPersonalInbox" 
      CLASSID="CLSID:0006F063-0000-0000-C000-000000000046" 
      CODEBASE="outlctlx.CAB#ver=9,0,0,3203"
      HEIGHT="100%"
      WIDTH="100%">
...
    </object>
 
I'd ask here:
forum333

Hope This Helps, PH.
FAQ219-2884
FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top