知识点
怎样在C#里运行外部程序呢?
nuthing 2002-12-3 10:27:28
我想在C#里运行一个Dos命令,请问有什么解决办法?
scorpion 2002-12-3 11:13:45
好像open
就可以了。
其实这个是调用“运行“。
wildgun 2002-12-3 13:13:55
System.Diagnostics.Process.Start("你的EXE程序");
C#中如何定义自己的帮助(Winform)???
x007 2002-12-11 22:46:29
看了C#的帮助,不是太明白.
望高手指点一二.谢谢!
wxy2ab 2002-12-12 0:16:02
加一行代码
在必要的时候显示帮助不就行了
x007 2002-12-12 11:45:50
怎么加?
什么代码?
Michael_Jackson 2002-12-12 14:32:56
System.Windows.Forms.HelpProvider 控件
this.helpProvider1.HelpNamespace = "help.chm";
this.helpProvider1.SetHelpString(this, "******");
this.helpProvider1.SetShowHelp(this, true);
this.HelpRequested += new System.Windows.Forms.HelpEventHandler(this.MainForm_HelpRequested);
private void MainForm_HelpRequested(object sender, System.Windows.Forms.HelpEventArgs hlpevent)
{
hlpevent.Handled=true;
Help.ShowHelp(this,"help.chm");
}
x007 2002-12-13 22:47:18
谢谢,给你50分.