Visual Basic 6 Help in DLL
-
I want to make a dll in vb 6 and use it in another project by vb6 too but i don't know how plzz help me :confused:
For using dll in the another project you have two ways: One way is to add ur dll project in the client vb project and make references Project -> References. In the references window it will show you the dll project's name select that name and say ok. Now you can use your dll in your client project. --Or-- Make the dll of your dll project. By making the dll vb6 automatically registers it on your system. If you want to use or deploy it on another computer you need to explicitly register it using regsvr32.exe. Then open your client project Goto Project -> References in the references window look for your dll name and select it and click on ok. Now you can use your dll in the client project. The former is best way to debug your dll project from the client project.