การสร้าง Textbox ที่ฟอร์ม (createTextboxOnForm)
public frmPaySlip()
{
}
public frmPaySlip()
{
InitializeComponent();
TextBox tb = new
TextBox();
this.Controls.Add(tb);
tb.KeyPress += new
KeyPressEventHandler(keypressed);
}
ความคิดเห็น