Compiling

GamesRule

Member
Joined
Dec 14, 2003
Messages
10
Hi

Either Im being really thick or I am blind. How can you compile .Net program to an executable?

In VB6 you go File>Make exe

In .Net, nope. Is it something to do with having academic version?
 
Build menu -> build solution.
Also whenever you run your app in the debugger it gets compiled.

If you look in the folder where your apps code is located there should be a folder named bin. The executable should be in there.
 
Thank you very much...a very quick question, doesnt need another thread being opened. How the heck do you call sub procedures like...

Private Sub lstTrack_SelectedItemChanged

End Sub

I tried Call lstTract_SelectedItemChanged but springs error.
 
Back
Top