I have a bar code which contains a "part number", a "from location", a "quantity", a "To location", and a "lot code" field and all of these fields are seperated by a tab.
A typical bar code might decode as follows:
N18-128200 WH 3 LOC04 1d2423
(part) (from) (qty) (to) lot)
Because these fields can be of different lengths, how
can I parse each field from an individual text box on my
form into certain controls on my form with extra space compression?
I envision having the user scan the bar code into one text box field on the form and then have this data populate certain controls on my form with the data derived from the bar code...
I would like to store the "part number" into Me.Part,
the from data into Me.from, the quantity into Me.qty, the
to data into Me.to, and the lot info into Me.lotsn
Is there an efficient way of doing this?
Thanks in advance...
A typical bar code might decode as follows:
N18-128200 WH 3 LOC04 1d2423
(part) (from) (qty) (to) lot)
Because these fields can be of different lengths, how
can I parse each field from an individual text box on my
form into certain controls on my form with extra space compression?
I envision having the user scan the bar code into one text box field on the form and then have this data populate certain controls on my form with the data derived from the bar code...
I would like to store the "part number" into Me.Part,
the from data into Me.from, the quantity into Me.qty, the
to data into Me.to, and the lot info into Me.lotsn
Is there an efficient way of doing this?
Thanks in advance...