lixtifur36
Programmer
I am trying to make a setup program for my Access application that I have created. I need to register a dll file. How do I do that in Visual Basic 6? I
Thank you,
Thank you,
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Declare Function RegisterTestDLL Lib "Test.Dll" _
Alias "DllRegisterServer" () As Long
[green]'and then function call[/green]
Dim regTest as Long
regTest = RegisterTestDll()