GamesRule Posted January 11, 2004 Posted January 11, 2004 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? Quote
Administrators PlausiblyDamp Posted January 11, 2004 Administrators Posted January 11, 2004 Build menu -> build solution. Also whenever you run your app in the debugger it gets compiled. If you look in the folder where your app's code is located there should be a folder named bin. The executable should be in there. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
GamesRule Posted January 11, 2004 Author Posted January 11, 2004 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. Quote
Administrators PlausiblyDamp Posted January 11, 2004 Administrators Posted January 11, 2004 What errors did you get? If you are calling the eventhandler for a list box you will need to pass in the two required arguments. Quote Posting Guidelines FAQ Post Formatting Intellectuals solve problems; geniuses prevent them. -- Albert Einstein
reboot Posted January 12, 2004 Posted January 12, 2004 And there's no reason in the world to use Call. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.