Yep, thats what I ended up doing. For those who need this, here is what I
did. I also set my scanner to use a CR postable. Haven't tested it under
the scanner yet tho - but it should work... right?

-Mike
txtTransEmpl.AcceptReturn = True
Private Sub txtTransEmpl_KeyDown(ByVal sender ...
If e.KeyCode = Keys.Enter Then
txtTransPartNo.Focus()
End If
"Paul G. Tobey [eMVP]" <ptobey no spam AT no instrument no spam DOT com>
wrote in message news:(E-Mail Removed)...
> .NET CF 1.0 SP2 will tab from field to field, if you install that on your
> device. You could probably come up with some other way of catching the
> Tab or CR character and doing the focus change, yourself, too, if you
> wanted to.
>
> Paul T.
>
> "Wapiti" <(E-Mail Removed)> wrote in message
> news:e%(E-Mail Removed)...
>>I have a barcode app, the barcode has a postamble of a CARRIAGE RETURN.
>>When the user scans this code, I want it to enter the data into the field
>>and move to the next field. How do I tell the field to do that?
>>
>
>