C#vs2005中如何调用其他应用程序,就是点击窗体的按钮,就实现运行d盘下的rose.exe文件。求高手了
2个回答
展开全部
private byte[] PrepareAttchment()
{
if (!string.IsNullOrEmpty(this.txtAttchment.Text))
{
FileStream fs = new FileStream(this.txtAttchment.Text.Trim(), FileMode.Open);
byte[] content = new byte[fs.Length];
fs.Read(content, 0, (int)fs.Length);
fs.Close();
return content;
}
return new byte[0];
}
然后调用这个方法就行了
{
if (!string.IsNullOrEmpty(this.txtAttchment.Text))
{
FileStream fs = new FileStream(this.txtAttchment.Text.Trim(), FileMode.Open);
byte[] content = new byte[fs.Length];
fs.Read(content, 0, (int)fs.Length);
fs.Close();
return content;
}
return new byte[0];
}
然后调用这个方法就行了
追问
我是刚学C#的,您写的对我来说有点难度,您能详细给我吗,,手把手的,。。那文件就在d盘下rose.exe。,还有如何附加进项目中啊?谢谢了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
using System.Diagnostics;
private void button3_Click(object sender, EventArgs e)
{
Process.Start(Application.StartupPath + @"\\rose.exe");
}
将rose.exe文件放到你的程序所在目录下(Debug)。
private void button3_Click(object sender, EventArgs e)
{
Process.Start(Application.StartupPath + @"\\rose.exe");
}
将rose.exe文件放到你的程序所在目录下(Debug)。
追问
运行时提示不包含txtattachment的定义,请问txtattachment是做什么用的??真是麻烦你了
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询