csharp
how to open txt file by giving specific path on button click in csharp
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Satyapriya NayakPosted Sep 6, 2012, 11:38 PM
private void button2_Click(object sender, EventArgs e)
{
System.Diagnostics.Process.Start(@"c:\a.txt");
}
Also refer
http://www.homeandlearn.co.uk/csharp/csharp_s11p1.html
Thanks