|
-
Jan 5th, 2000, 04:17 AM
#1
Thread Starter
Addicted Member
Ok have data tables declared as classes. One class per table. How do l now take these classes and combine them into a dll file.
-
Jan 5th, 2000, 01:29 PM
#2
Guru
Add all the classes into a new ActiveX DLL project and compile. VOILA!
-
Jan 6th, 2000, 06:02 AM
#3
Thread Starter
Addicted Member
Thanks Clunietp,
For the ActiveX dll project, in prioperties what do l set as the starting point, in a normal project would be something like Sub Main().
Do l then need to register the dll.
Need to get the dll happening because of major project where the same databases are used by multiple exes across a distributed client/server environment
-
Jan 6th, 2000, 01:19 PM
#4
Guru
there is no Sub_Main(), but the Class_Initialize event is fired when your object is instantiated.
VB Automatically registers the DLL on the machine that you build it on when you compile it, otherwise run REGSVR32.EXE DllName.DLL to register it on the client machine
-
Jan 6th, 2000, 01:24 PM
#5
Thread Starter
Addicted Member
Thanks again Clunietp.
Managed to get an example up and running, this will save alot of work later in my current project.
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
|
Click Here to Expand Forum to Full Width
|