2015-01-16 62 views
0

我有這個變化部分

System.Diagnostics.Process process = new System.Diagnostics.Process(); 
System.Diagnostics.ProcessStartInfo startInfo = new 
System.Diagnostics.ProcessStartInfo(); 
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; 
startInfo.FileName = "cmd.exe"; 
startInfo.Arguments = "/C"; 
process.StartInfo = startInfo; 
process.Start(); 

,我希望能夠改變什麼是後/ C寫在這條線

startInfo.Arguments = "/C"; 

我也希望它的形式一個文本框和下拉菜單。那可能嗎? 解釋:我希望能夠在文本框中輸入我想要的命令,然後在下拉菜單中選擇將包含在命令中的更多單詞。

回答

0

這與您的標籤無關。您要添加的任何內容在/c之後添加。

你的問題是關於一些未知的編程語言和表單包。

IN VBS

Cmd = Inputbox("Enter command?") 

然後

wshshell.run "cmd /c " & Cmd