Page 1 of 1

How to make a you-change-it in C#

Posted: Thu Feb 21, 2008 3:00 pm
by plushiefire
Ok, I wan't to make an app, and one of its features will be a selection in a menu strip that will let you put a link to an app on your computer, and save that link, so when you click on the option, your saved link will open...

Simplify 8)
-Click option
-Navigate to the "YOUR APP HERE" button
-Click it to put you app here
-Open file dialog pops up
-Find your app
-It gets saved to the button

Language is C#

Thanks guys

Posted: Thu Feb 21, 2008 3:01 pm
by grimdoomer
use this,

Code: Select all

Process.Start("location in string here");

Posted: Thu Feb 21, 2008 7:33 pm
by Jdogg
lol

Posted: Thu Feb 21, 2008 8:12 pm
by OwnZ joO
Grim did you even read what he asked??

Posted: Fri Feb 22, 2008 2:56 am
by grimdoomer
Ohh wow, I saw the Open your app here, I feel stupid now. So im guessing you want to save the path of the application you open? Use a stream reader and save it to a text file.

Posted: Fri Feb 22, 2008 4:55 am
by -DeToX-
No, use a Stream Writer. ;)

Posted: Fri Feb 22, 2008 7:23 am
by grimdoomer
-DeToX- wrote:No, use a Stream Writer. ;)
It was 6AM but I got sleep now :D

Posted: Fri Feb 22, 2008 8:11 am
by Patrickssj6
Just use embedded settings for this...look up a tut for that. The string will be saved inside the exe itself...no need for a crappy external txt file.