-
ActiveX Components used in client side VB scripts
IE5 displays the following warning message
An ActiveX control on this page might be unsafe to interact with other parts
of the page. Do you want to allow this iteraction?
when running a htm file with the following client side script.
Sub Window_OnLoad
Dim oObj
'Inhouse ActiveX component
set oObj= CreateObject("MyDLL.clsMyClass")
End Sub
The DLL is created inhouse and is not digitally signed.
However, the following code instantiating ADODB connection class from MS
does not generate the above warning message.
Sub Window_OnLoad
On Error Resume Next
Dim oObj
set oObj = CreateObject("ADODB.Connection")
End Sub
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
Forum Rules
|
Top DevX Stories
Easy Web Services with SQL Server 2005 HTTP Endpoints
JavaOne 2005: Java Platform Roadmap Focuses on Ease of Development, Sun Focuses on the "Free" in F.O.S.S.
Wed Yourself to UML with the Power of Associations
Microsoft to Add AJAX Capabilities to ASP.NET
IBM's Cloudscape Versus MySQL
|
Bookmarks