我想提前道歉,因为这个问题可能已在其他地方得到解答(找不到具体答案)。我进行了广泛的搜索,这使我越来越困惑。在这一点上,我想我可以轻松快速回答我的具体问题/困境。
我有一个C#Windows窗体应用程序。我正在使用文本框和按钮进行测试。我希望用户在文本框中输入一个3位数字,然后单击按钮将3位用户输入保存为字符串值,然后启动预先确定的.BAT文件。然后我希望我的.BAT文件执行输入GOTO string 。以下是我到目前为止的情况:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace ComboBoxAndButton
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.textBox1.KeyPress += new KeyPressEventHandler(textBox1_KeyPress);
}
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
e.Handled = !char.IsDigit(e.KeyChar);
}
public string opconumber;
private void textBox1_TextChanged(object sender, EventArgs e)
{
opconumber = textBox1.Text;
}
private void button1_Click(object sender, EventArgs e)
{
Start();
}
private void Start()
{
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.StartInfo.FileName = @"C:\mybat.bat";
//I am guessing that i need my string inserted somewhere in here.
proc.StartInfo.RedirectStandardError = false;
proc.StartInfo.RedirectStandardOutput = false;
proc.StartInfo.UseShellExecute = false;
proc.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
proc.EnableRaisingEvents = true;
proc.Start();
proc.WaitForExit();
this.Close();
}
}
}
我遇到的另一个问题是让退格键工作。我尝试了几个不同的片段,但无法做到正确。任何指针或批评都是公开接受的。提前谢谢!
编辑:
行。我有一个批处理文件,我想跳到一个特定的标签。我想保存的字符串变量作为bat文件中执行内容的决定因素。这是一个例子:
@echo off
:111 ECHO Argument 111
goto end
:112 ECHO Argument 112
goto end
:end
pause
如何在启动蝙蝠时使用字符串“112”启动蝙蝠:112?
答案 0 :(得分:4)
proc.StartInfo.Arguments = " my arguments";
答案 1 :(得分:1)
将其添加为参数:
proc.StartInfo.Arguments = opconumber ;
在bat文件中,您可以通过%1获得此信息。
哎呀太慢......
答案 2 :(得分:0)
在批处理中,您可以使用shift
命令访问超过9个参数:
@echo off &setlocal
:start
echo %~1
shift /1
if "%~1" neq "" goto :start
endlocal