winform process.start() 调用外部EXE引用程序, 如何实现用户登录
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了winform process.start() 调用外部EXE引用程序, 如何实现用户登录相关的知识,希望对你有一定的参考价值。
string filename = @"C:\Program Files (x86)\PLSQL Developer\plsqldev.exe";
System.Diagnostics.Process p = new System.Diagnostics.Process();
//设定程序名
p.StartInfo.FileName = filename;
p.StartInfo.UserName = "dlias";
System.Security.SecureString a = new System.Security.SecureString();
a.AppendChar('d');
a.AppendChar('l');
a.AppendChar('i');
a.AppendChar('a');
a.AppendChar('s');
p.StartInfo.Password = a;
p.StartInfo.UseShellExecute = false;
p.Start();
进程开始后,提示用户名密码不对,具体该怎么写啊
System.Diagnostics.Process.Start(e.LinkText);
或
System.Diagnostics.Process.Start("IExplore.exe", e.LinkText); 参考技术A
这个有帮助吗?
以上是关于winform process.start() 调用外部EXE引用程序, 如何实现用户登录的主要内容,如果未能解决你的问题,请参考以下文章