我正在尝试使用{密钥发送SendKeys.SendWait(y)。在本例中,我传递一个变量y,该变量是用包含{的字符串设置的。string y = "u8HXV/gIE_{";SendKeys.SendWait("{TAB}");我得到了以下错误:
An exception of type 'Syste
我希望下面的代码在将SendKeys.SendWait("^(s)");发送到记事本文件后显示保存文件对话框。但是代码不能工作,有什么问题吗?SendKeys.SendWait("Hello World!"); //to show savefiledialog
SendKeys.SendWait("^(s)");// to ent
我正在开发一个自动执行sqlplus的c#应用程序。我想找到一种方法来使用设置行,设置页面..和spool命令来创建适当格式和布局的输出文件。下面是我使用c#从cmd运行sqlplus的代码。processInfo.FileName = "sqlplus.exe";Process process = Proces