Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Modify and Save Codes to Library

Status
Not open for further replies.

CrystalVis

Technical User
Jun 26, 2002
200
US
how do i modify a class in the library and save it? i'm a newbie to vb .net and do not know how to accomplish this. any details information or links that i can learn to accomplish this is greatly appreciated. thanks
 
the file that i'm trying to modify is a .DLL within a library
 
no one responds. here is more details of what i'm trying to accomplish. i have the codes and i want to turn this code into a DLL file then associate (import) this DLL into my project. hope someone can shed some light on this. thanks
 
I had the same problem.

For 1st question. Just open the properties of your project and set the type to library.

For load the that dll into your project. I used :

dim sassembly as [assembly]

sassembly=[assembly].loadfrom("your path\xxx.dll")

That will load the dll. but in my case, there are 3 form in the dll and I need to call them.

Do anyone know how to do that???

 
To modify it, I would try to inherit the class and then override some of the functions.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top