I use a cycling timing program with a RFID receiver and tags.It works 100% with 3rd party software to copy the Racenumber of athletes into a specific txtbox call "Filterbox" .
My problem - when more than one athlete finishes together, then every person's Racenumber is added to this same texbox called "Filterbox" at the sametime.
The Rfid sends 5 digits per person to this txtbox
ie Athlete No 1 = 00001; Athlete No 2 = 00002; Athlete No 3 = 00003.
When 1+2+3 finished together, the filterbox txt box looks like this - 000010000200003 instead of receiving them separately 00001 and then after that 00002 and the lastly 00003.
My plan: when the data arrives in the txtbox called "Filterbox" on my main form called "RacesetupF ", i want the data split to secondary txtboxes called Databox1, Databox2, Databox3 etc etc in groups of 5 characters.
In otherwords, if Filterbox received data = 000010000200003 then it must filter the data and the characters 1-5 (00001) go to Databox1, characters 6-10 (00002)go to Databox2 and characters 11-15 (00003)go to Databox3 etc etc.
From Databoxes 1-3, i will then forward the data to my subforms/tables etc.
Is this possible to split it and forward the data?Please assist
My problem - when more than one athlete finishes together, then every person's Racenumber is added to this same texbox called "Filterbox" at the sametime.
The Rfid sends 5 digits per person to this txtbox
ie Athlete No 1 = 00001; Athlete No 2 = 00002; Athlete No 3 = 00003.
When 1+2+3 finished together, the filterbox txt box looks like this - 000010000200003 instead of receiving them separately 00001 and then after that 00002 and the lastly 00003.
My plan: when the data arrives in the txtbox called "Filterbox" on my main form called "RacesetupF ", i want the data split to secondary txtboxes called Databox1, Databox2, Databox3 etc etc in groups of 5 characters.
In otherwords, if Filterbox received data = 000010000200003 then it must filter the data and the characters 1-5 (00001) go to Databox1, characters 6-10 (00002)go to Databox2 and characters 11-15 (00003)go to Databox3 etc etc.
From Databoxes 1-3, i will then forward the data to my subforms/tables etc.
Is this possible to split it and forward the data?Please assist
Comment