Here is the situation. At my work, we use an existing program that allows you to scan barcodes into a set of records. The problem is that to create this set of records, we must scan each item separately. We click the "Add" button, which displays the text field, and we scan the barcodes into it (or you can enter it)
To prevent this, I created a C # program that creates a list of barcodes, and I was looking for a way to simply set up a simple copy and paste type setting that would copy the barcode, paste it into the text box of existing programs, and maybe send return char so that it is ready for the next barcode. He would just send each barcode one at a time until he went through the list.
I have control over my C # program, but the working program is not built by me, and I do not have access to the code or any apis used. Can anyone suggest a solution that might work for this? I found something like SendMessage, but I'm not quite sure how it works, as it says I need to do a search first.
Chris source
share