[DotNetDevelopment] Re: Notepad by VB 2008

2009-06-24 Thread Processor Devil
damn, man, that way is horrible :D using System; using System.Diagnostics; namespace NotePad { class MainClass { public static void Main(string[] args) { ProcessStartInfo info = new ProcessStartInfo(@"C:\WINDOWS\notepad.exe"); //here it is Proces

[DotNetDevelopment] Re: Notepad by VB 2008

2009-06-23 Thread Processor Devil
Yes, of course you can create application similar to Notepad. All you need is some MenuBar with File --> New, Open, Save, Exit, TextView to see and edit text. And maybe some toolbar to show you on which line you and column you are. 2009/6/22 The_Fruitman > > Yes. > > System.Diagnostics.Process.S

[DotNetDevelopment] Re: Notepad by VB 2008

2009-06-23 Thread Scott M.
I just tried this. If it can't find notepad.exe on your system, you get a misleading error message. Here is my code; using System; using System.Diagnostics; namespace Notepad { public partial class Form1 : Form { public Form1() { InitializeComponent();

[DotNetDevelopment] Re: Notepad by VB 2008

2009-06-22 Thread The_Fruitman
Yes. System.Diagnostics.Process.Start("notepad.exe") If you wanted something more, post a better worded question, your problem and code you've tried. On Jun 22, 10:19 am, Afewerki wrote: > can I create Notepad in VB2008? If your answer is yes. how I can? tell > me