Question need some info

ajstillprogramming

New member
Joined
Oct 13, 2011
Messages
2
Programming Experience
1-3
Hi, im new to this forum and i need some help in codeing.
1) How do i opening an exe file in my program.
2) I made an text editor in my program. how do i make it save to a form and be able to open it.
3) And how do i make a task manger in my program that shows whats open in my propgram.

Thanks

ajstillprogramming
 
For future reference, please follow these guidelines when posting:

1. Always provide a descriptive thread title. This forum contains thousands of threads and everyone who posts needs some info. The title is supposed to tell everyone what your thread is about so they don't have to waste their time opening every single one to work out which are relevant.

2. Please keep each thread to a single topic and each topic to a single thread. You have asked three unrelated questions in one thread so you will possibly end up with three unrelated discussions all mixed up, making it hard for anyone to follow what's going on.

As for your questions:

1. When you say "open" do you mean run/execute? If so, you can call Process.Start to basically simulate with double-clicking a file in Windows Explorer or running the file from a command prompt.

2. Do you actually mean "save to a file" rather than "save to a form"? If so then you can look at the File.WriteAllText and File.ReadAllText methods.

3. That's far too general a question. We could suggest all sorts of things but they may not be anything like what you want. It's your app so you have to decide how you want it to work. If you then want help with the implementation, we can provide that. Your question(s) would need to be more specific though.
 
Hi thanks for the replay ,sorry i did not give more info on what i want, i want my program to be able to open a text editor that i made with in my program and save the text that i made to another form and i want to open it on the form that i saved the text file to like say the form name is savefile.frm and open the text file from savefile.frm. And i want to be able to open exe in my program, like the software name is test.exe i want to be able to open that from with in my program. And a task manger thats in my program that will show me whats in my program just like the windows task manger but its for my program, sorry about asking these questions next time i will add different post.And next time i will give more info, I hop this helps as im not that good at asking questions.

ajstillprogramming
 
Back
Top