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
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
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();
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