DLLs in .Net Framework

rangark

Newcomer
Joined
Dec 5, 2003
Messages
1
I am currently migrating a Financial application from VB 6 to VB.net. In VB 6, I have created DLLs for each modules - Masters, Transactions, Reports . Whenever a client requires a customization, i will recreate the DLL relating to the corresponding module and distribute to the client. The client will uninstall the present dll and install the new Dll for the mdoule. (No need to uninstall or reinstall the other DLL, where no changes have been made)

I want to enjoy the same flexibility in .net Framework. ,i.e distributing the relevant DLLs whenever a customoization or a new version is released.

Is this possible in .net framework. ? If so how to do this. If not why ?

thanks

ranga.
 
Do you know if there are any free DLLs for VB.NET 2003 that can be downloaded from the Internet and used, as you said, without having to register them in the Windows Registry?

TIA
 
The truth is, I used a free .NET DLL that I found in Microsoft Visual Basic .NET Resource Kit. It is produced by Infragistics and, among other things, it allows you to add a professional progress bar to your projects.

It worked fine when I used it on one of my computers with Visual Studio .NET 2003 installed but when I tested it on another computer equipped only with the .NET Framework, it didn't work.

I just copied the .NET exe and the dll from the source computer and put them in the same folder on the destination computer.

Please note that other VB.NET executables (without any third party DLLs) run without any problems.

So, it doesn't matter what free DLLs you have available, I just would like to test them for compatibility with Win98-based computers.

mutant said:
None of .NET DLLs have to registered. Are you looking for some particular DLL with some methods you need or what?
 
Back
Top