Forma 2 adet text ve 1 adet command ekleyin...
ve aşağıdaki kodu olduğu gibi yapıştırın...

Kod:
Private Sub Command1_Click() Shell "cmd /d /c " & Text1.Text & ">" & Text2.Text, 0 End Sub Private Sub Form_Load() Text1.Text = "Buraya CMD Komutunuzu Giriniz..." Text2.Text = "C:\Gokhan.txt" Command1.Caption = "Tıkla" End Sub

__________________