Here is the scene:
DB1.mdb contains two very simple forms and a table
frm1, frm2 and tbl1
tbl1 contains these fields:
ID#, Name, Type
frm1 is a Tabular form that has three objects:
ID#, Name, Type
frm2 is a Justified form with two objects:
Text0 and btn1
What I need to do is use my barcode scanner to keep my inventory, everything I have has a barcode on it, that is unique to that specific item.
The problem is that some items I get are in a series, like I could get series 1 today with a barcode of 011113 (I know this is not a true barcode), but tomorrow I could get series 2 of the same product and it will have a barcode of 011114.
Let me break down the barcode for you:
01 is the begining of the barcode, this is generic and can change
111 would be the product number this will not change for this item
3 is the end of the barcode and can also change
I have many products and the product number is in different location in the barcode. Sometimes it will be in the middle as in the example above, but it may be in the begining or the end.
I need to be able to scan the item and then click on my btn1 and have it find LIKE products to that barcode.... Can any of you help me with this.
I have tried some like statements but have not been successful.
If you need more infor or clearification, just let me know.
DB1.mdb contains two very simple forms and a table
frm1, frm2 and tbl1
tbl1 contains these fields:
ID#, Name, Type
frm1 is a Tabular form that has three objects:
ID#, Name, Type
frm2 is a Justified form with two objects:
Text0 and btn1
What I need to do is use my barcode scanner to keep my inventory, everything I have has a barcode on it, that is unique to that specific item.
The problem is that some items I get are in a series, like I could get series 1 today with a barcode of 011113 (I know this is not a true barcode), but tomorrow I could get series 2 of the same product and it will have a barcode of 011114.
Let me break down the barcode for you:
01 is the begining of the barcode, this is generic and can change
111 would be the product number this will not change for this item
3 is the end of the barcode and can also change
I have many products and the product number is in different location in the barcode. Sometimes it will be in the middle as in the example above, but it may be in the begining or the end.
I need to be able to scan the item and then click on my btn1 and have it find LIKE products to that barcode.... Can any of you help me with this.
I have tried some like statements but have not been successful.
If you need more infor or clearification, just let me know.