How to run application on other pc??

bcm

Well-known member
Joined
Aug 13, 2007
Messages
56
Programming Experience
Beginner
I have created a windows application in vb.net in my PC.How can I open an vb.net file in a pc where vb.net is not installed. Will I have create any <name>.vb.exe file in PC where i have created it? Please tell me any ways to do it. Please soon..........
:confused:
 
You have to deploy the executable output by the compiler. Every time you debug your project it is compiled to an EXE file and run. You could deploy that executable but you should not because it's a Debug version. You should change the configuration from Debug to Release and then build the project. VS.NET 2003 will output both versions to the bin folder under your project folder by default. I suggest that you change the output locations to bin\Debug and bin\Release to make sure you don't use the wrong one by mistake.
 
Back
Top