Link to home
Start Free TrialLog in
Avatar of alterami
alterami

asked on

VB.net running exe without dll files in folder

I'm converting a vb6 app to vb.net 2003 and have it working the only problem is that if I try running the .exe file without all the "Interop.whatever.dll" files in the same folder, I get an error "An unhandled exception of type 'System.IO.FileNotFoundException' occurred in myprogram.exe . The vb6 program runs fine without any other supporting files needed. I've tried using regasm on the files but it doesn't seem to change anything. How can I get this to run without needing the dll files in the same folder as the exe?
Avatar of SStory
SStory
Flag of United States of America image

Well... If you just ran a converter, it probably made an interop dll to help you call things that the vb6 app used which aren't in vb.net or are done differently. If you find the offending location, you can look for a DotNet equivalent and replace it.  

If the code has to do with files/folders, look for objects in system.io namespace
Without knowing what code you have in the interop file or anything about where it is blowing up it would be hard to solve from here.  

The exception you are getting is pretty obvious.. The program can't find a file and your are not catching that error.
Is this the dll that it can't find or some other file that you are trying to open.

If you want to catch the error, surround the code block where it occurs with

Try

'your code here

Catch ex as system.io.filenotfoundexception
      'handle it or show a message about it
      msgbox(ex.message)
end try


Hope this helps some. Please provide more info for more help.

Shane
Avatar of alterami
alterami

ASKER

I know which files it can't find, the problem is I don't want to have the 8 dll files in the same folder as the exe. I want to be able to put the exe in any folder and have it work the same, without requiring any dll files in the same folder. I want to be able to put the dll files in the system or common files folder and the exe would know where to look for them.
Check if the .NET framework is up and running properly. If you VB.Net was installed properly you should not get this error.
the interop is created because your application is calling some com component. The interop file must be in the same folder as your app, this is a .net limitation, i cont seem to remember where i found this on msdn.

as i found in another post, you can use IlMerge to merge all your interop files and distribute only one file with your app.

or you can remove any reference to unmanage components in the application aswell...

hope that help.

here is the post i referenced above : https://www.experts-exchange.com/questions/21424609/Annoying-interop-file.html
Well, as mentioned you  have dependencies to com and if you don't want these DLL's you must rewrite that part of the application to use  .NET components instead of com objects.  This would solve your hole problem--but it is more work.

There is no "convert from vb6 to .NET" without any work.  That would be rare.  At least not to get the type of solution many people want.

Not knowing what your app does sort of limits my suggestions, but I can't imagine why it need be in whatever directory.
Why not just hide the dlls on install, then make shortcuts to anywhere you want, would this not do the same thing?
I don't mind if its dependant on dll files, I just don't want to have to have them in the same folder as the .exe file for it to function. I want to be able to move the .exe file around and put it into several different locations and be able to run it. Is there a way I can register the interop files and just put them into a common files folder somewhere, so that anytime I run the .exe file no matter which folder its in on my pc, that it would know where to look for them, and doesn't need them in the same folder?
ASKER CERTIFIED SOLUTION
Avatar of MySt1k
MySt1k

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial