private void txtProductName_KeyDown(object sender, KeyEventArgs e)
{
if(e.KeyValue ==(char)Keys.Enter)
{
Cbounit.Focus();
}
I tried the same code but my text is getting clear on pressing enter button for moving next textbox
shailendra vermaPosted Jan 26, 2019, 9:03 AM
Salman BegPosted Jan 26, 2019, 9:00 AM