public partial class Form1 : Form
{
int billno=2000;
string code;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
billno = Convert.ToInt32(code);
billno = billno + 1;
textBox1.Text = " "+ billno;
}
问问题
22555 次