illumi
illumi

Reputation: 458

VB6 Adding a DLL reference dynamically

I am currently making a application that has several reference DLL and i am trying to add these references on runtime. how can i make this posible in vb6?

Please help me with my problem and share me code or link for reference. i highly appreciate it. thanks!

Upvotes: 2

Views: 4188

Answers (1)

sternr
sternr

Reputation: 6506

I might be wrong, but as long as the dll is registered (regsvr32), you should be able to load classes from it using the CreateObject("Class Identifier") method

Upvotes: 5

Related Questions