Textbox Navigation

  • Thread starter Thread starter David
  • Start date Start date
D

David

Hello All,
I am having trouble navigating from textbox1 to textbox2. I am using a
built-in barcode scanner to enter data into textbox1 and then I need to jump
to textbox2.

Thanks for any help
David
 
Have the scanner append a Tab to the end of the scan. If you have SP2
installed, it will advance to the next control in the z-order.

-Chris
 
David,

I assume that there is a way that you can listen to events from the barcode
scanner via a dll after the event has fired move the focus to the other
textbox via this.textBox2.Focus();
 
Back
Top