Hi,
Tell me little clearly ,when that 3 charaters before or after the barcode reader sends the data,
if it is before, then simple you can use text1.text="",else
you better to get the barcode reader value in a string and then use it,
if this not helps to you, give more details (step by step process...)
With regards
Venkatramasamy SN
venkatramasamy
Junior Poster in Training
71 posts since Aug 2007
Reputation Points: 12
Solved Threads: 12
HI Rajesh,
i gues that your task may like this...
you need 3 charater to be typed before the barcode reading
2. the barcode lenght is 12
3. the text box maxsize 12
my view
i dont know why you typ ethe 3 charaters, if you want to delete that later, while reading the barcode....
if you need concatenate the both
take the textbox string to an stringvariable and then clear the textbox
then concatenate the previous string with the textbox string(Barcode)....
now your string variable will contain the Barcode along with the #chars as orefix
Ex:
dim Barcode as string
(3Chars= abc)
Barcode=text1.text
text1.text=""
'now read the Barcode
Barcode=Barcode & text1.text
if you dont need that 3 chars then simple use
text1.text=""
before you reading the Barcode
hope this will help you,
with regards
Venkatramasamy SN
venkatramasamy
Junior Poster in Training
71 posts since Aug 2007
Reputation Points: 12
Solved Threads: 12