Reputation: 581
I can create ActiveX
object using interface of custom app:
Dim CustomObject As Object
Set CustomObject = CreateObject("CustomApp.CustomOleInterface")
But I don't know API of this interface. Can I see available methods for CustomObject
? Or can I dump object to file for viewing it in HEX-redactor?
Upvotes: 1
Views: 295
Reputation: 11755
You cannot use intellisense with late binding. You would have to add the DLL/TLB file to the project references to use early binding.
In the VB Editor:
Go to Tools >> References
A dialog will appear where you can select the file using the checkbox next to its name. It will be in the list if it is registered in your system. If it is not, you would have to use the Browse button and locate it yourself.
Upvotes: 1