用C#窗体程序中的Button控键调出系统CMD,并要在CMD中写东西,程序应怎样写???
4个回答
展开全部
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.RedirectStandardInput = true;
p.Start();
p.StandardInput.WriteLine("netstat -n");
p.StandardInput.WriteLine("exit");
字限
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.RedirectStandardInput = true;
p.Start();
p.StandardInput.WriteLine("netstat -n");
p.StandardInput.WriteLine("exit");
字限
参考资料: http://202.115.144.53/blog/post/4.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private Sub cmd1_Click()
Form2.Show
End Sub
关闭是Form2.close
Form2.Show
End Sub
关闭是Form2.close
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
Private Sub cmd1_Click()
Form2.Show
End Sub
关闭是Form2.close
Form2.Show
End Sub
关闭是Form2.close
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
先把要用的命令写在一个bat文件里,然后在程序里调用这个bat文件就行了呀
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询