- Home
·
- Miscellaneous
·
- How to register and un-register ActiveX Controls This tip describes how ActiveX controls can be reg
How to register and un-register ActiveX Controls This tip describes how ActiveX controls can be reg
How to register and un-register ActiveX Controls This tip describes how ActiveX controls can be registered and unregistered directly from
API Declarations
Alias "DllRegisterServer" () As Long
Declare Function UnRegComCtl32 Lib "ComCtl32.OCX" _
Alias "DllUnregisterServer" () As Long
Const ERROR_SUCCESS = &H0
Rate How to register and un-register ActiveX Controls This tip describes how ActiveX controls can be reg
(1(1 Vote))
MsgBox "Registration Successful"
Else
MsgBox "Registration Unsuccessful"
End If
If UnRegComCtl32 = ERROR_SUCCESS Then
MsgBox "UnRegistration Successful"
Else
MsgBox "UnRegistration Unsuccessful"
End If
How to register and un-register ActiveX Controls This tip describes how ActiveX controls can be reg Comments
No comments yet — be the first to post one!
Post a Comment