Jump to content
xisto Community

Blackbelt012

Members
  • Content Count

    5
  • Joined

  • Last visited

Everything posted by Blackbelt012

  1. This tutorial was not made by me and I take no credit what so ever. Site Found From: http://www.cprogramming.com/
  2. OK, so the program you use is Microsoft C# 2005 Express Edition. When you start a new project there is a place on the left side called "Toolbox" and there is something in there called "button". You drag and drop the button onto your application. Once you did that you double click on the button you just added. If you still need more help let me know.
  3. First add a button Then double click on it Add this code below for the simple version. MessageBox.Show("Whatever you want the message to say");Now to add a title to you message box do this. MessageBox.Show("Whatever you want the message to say", "Your Title");This adds a title to the message box. This is very easy but if you need more help just lemme know.
  4. Made by Blackbelt012 OK to start add a button or a menu strip to your form. ----------------------------------- Then double click the button you just added and it will take you to the code of your application. ----------------------------------- Next scroll to the very top of your form and add this code. using System.Diagnostics; ----------------------------------- Then scroll back down to the button you double clicked. ----------------------------------- After that add this code. Process.Start(@"C:\Program Files\Mozilla Firefox\firefox");just switch the C:\Program Files\Mozilla Firefox\firefox to the path of the program you want to start. ----------------------------------- Now if you want to test your program before you publish it hit the "F5" key and it will go into Debug Mode. Then just press the button and if done properly the program will open that you selected.
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.