hi,
I have a win ce.net device that can read barcode labels.

A Evc DLL uses a com port to read the barcode string.

I'd like to send that string (from a vb.net program) over the standard
input or simulate the keyboard keystrokes.

Is it possibile in vb.net, and how ?

thanks

Re: redirect to std input by Paul

Paul
Mon Nov 28 10:14:20 CST 2005

Search in the archives of the newsgroup for keybd_event() and
PostKeybdMessage(). Those are the native calls that you'll have to make to
do this.

Paul T.

"merco" <d.mercanti@gmail.com> wrote in message
news:1132925664.962816.30360@g49g2000cwa.googlegroups.com...
> hi,
> I have a win ce.net device that can read barcode labels.
>
> A Evc DLL uses a com port to read the barcode string.
>
> I'd like to send that string (from a vb.net program) over the standard
> input or simulate the keyboard keystrokes.
>
> Is it possibile in vb.net, and how ?
>
> thanks
>



Re: redirect to std input by merco

merco
Tue Nov 29 01:10:51 CST 2005

thanks it was keybd_event.