开发者

Opening of a xml document in internet explore

开发者 https://www.devze.com 2023-02-13 02:17 出处:网络
How can I open 开发者_运维问答the xml document in internet explore in c sharp dot net with winforms onlyTry this. It works perfectly.

How can I open 开发者_运维问答the xml document in internet explore in c sharp dot net with winforms only


Try this. It works perfectly.

string strFileName = @"C:\File.xml";
Process proc = new Process();
proc.StartInfo.UseShellExecute = true;
proc.StartInfo.FileName = strFileName;
proc.Start();
0

精彩评论

暂无评论...
验证码 换一张
取 消