Here is what Im trying to do. I have an existing program at work that allows me to scan barcodes into a textbox using a scanner or I can type in the barcodes. We also have a seperate hand scanner that we can use to do inventory with. The hand scanner saves
to a memory card and then allows us to import the barcodes back onto the computer as a text document.
What I would like to do is write a simple program that reads in the text file (Ive done this and stored the barcodes into an arraylist) and then one by one send them to the textbox on the existing program.
My question is, if I use a foreach loop and iterate through the array, how do I send the barcodes from my program to the existing programs textbox.
I saw a bunch of stuff talking about FindWindow and FindWindowEx, but I dont really understand how to use them. Any help is appreciated. Thanks.
View the full article
to a memory card and then allows us to import the barcodes back onto the computer as a text document.
What I would like to do is write a simple program that reads in the text file (Ive done this and stored the barcodes into an arraylist) and then one by one send them to the textbox on the existing program.
My question is, if I use a foreach loop and iterate through the array, how do I send the barcodes from my program to the existing programs textbox.
I saw a bunch of stuff talking about FindWindow and FindWindowEx, but I dont really understand how to use them. Any help is appreciated. Thanks.
View the full article