求教
private void button2_Click(object sender, EventArgs e){
OpenFileDialog openFile=new OpenFileDialog();
openFile.Filter = "*.doc;|*.exe";
if (openFile.ShowDialog() == DialogResult.OK)
{
if (openFile.FileName != "")
{
this.textBox1.Text = openFile.FileName;
}
}
}
private void button1_Click(object sender, EventArgs e)
{
Process p = Process.Start(textBox1.Text,"113.108.95.18");
}
表达式Process p = Process.Start(textBox1.Text,"113.108.95.18");
可以运行程序 但为什么就是链接不到网络? --------------------编程问答-------------------- 你提供的Process.Start的第二个参数是作为第一个参数程序的命令行参数使用的。你的程序是怎样使用这个参数的,用法对不对? --------------------编程问答-------------------- textBox1.Text 是什么内容。 对应的参数"113.108.95.18" 可用吗?
补充:.NET技术 , 其他语言