I'd like to know how to create the .dll file so i can use my programs on other computers. The first program I made created the .dll file on its own but I may have changed something and now it does not make the .dll file anymore. Does anyone have an idea as to what I'm doing wrong or must do?
Building Solution
Rebuilding Solution
Building *****
Rebuilding *****
I have tried already, as well as the Configuration Manager to Release and Debug.
Usually the program packager grabs all the dlls you need. Do you use that, or just grab all the files in the program's directory and move them to a different PC?
Could you explain what you yourself do to make a program so it is accessible on all Window-based operating systems, please? Maybe there is something i'm doing wrong.
I just use the program packager. I've never had a problem with it yet. I don't use .NET either though, I'm still using VB6. I could install VB.NET and see if I could find the option you're looking for, but I'd have to wait until tomorrow. My roommate has the discs at work.
It's probably the same as using Build Solution in VB.NET. It grabs all the relevant files that the executable needs, and packages them all into an installer executable.
1. Why do you want a dll? Its not needed to make it work on other machines. You only use a DLL if you want to call it from another application. You'll want to compile as an EXE
2. ANY Machine you want to run it on will REQUIRE the Stinkin' .NET Framework (automatically installed for your bugginess satisfaction via Win2k SP3).
Otherwise, when you compile the file should show up in the bin folder unless its throwing an error.
Are you sure you're BUILDing and not just debugging?
If you only have one file a packager isn't really necessary unless you want a single click install your app into a folder, and the .net framework (lemme tell ya its a PITA!!!! ) to get it working correctly.