Path Örnek
Bu örnekte path yolunu girmiş olduğumuz dosyaların çalıştırılmasını sağlıyacağız...Bahadirsa
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
this.Text = "Path Örnek...Bahadirsa";
this.MaximizeBox = false;
this.Location = new Point(260, 160);
this.Size = new System.Drawing.Size(215, 96);
}
private void button1_Click(object sender, EventArgs e)
{
string path= "c:\\kayit.txt";
System.Diagnostics.Process.Start(path);
}
}
}
Bir sonraki makalede görüşmek üzere...Bahadirsa