Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
in visual basic how can i use my finished project without having to open the whole visual basic studio?
I just finished making a picture viewer (the first tutorial) in Visual Basic(2010 Express). i just want to know if/how can i just use my finished product as apposed to running in in the VB Studio Debug mode. I just want 1 easy file the can sit on my desktop and when i duoble click it it opens my picture viewer without opening the whole goddamn VB Studio
4 Answers
- Anonymous1 decade agoFavorite Answer
Build it into an Executable. Use Build menu.
.
Source(s): TaZ - NancyLv 45 years ago
You have to build your project. If it's a Windows form app, an .exe file will be created in the <myProject Name>/Bin/Debug folder. If the project is a web app, then you have to deploy the app to a web server and provide the url of the web page.
- 1 decade ago
Click "My Project" or something in the Explorer. Then go to the Publish tab. Set where you want to publish it, then "Publish Now"
- 1 decade ago
you go to your project location and open up bin/debug folder
and you should see your .exe file in there.. and that will do it.