What are the requirments for programming using these ports
ie. picking data sending data etc. My programming language
is C#.NET or VB.NET

Re: Parallel and/or serial port by Maxim

Maxim
Mon Nov 17 21:07:37 CST 2003

Is DeviceIoControl supported in .NET? If no - then you will need to write a
COM wrapper which will turn the method calls to DeviceIoControl, and use it for
the parallel port.

--
Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
maxim@storagecraft.com
http://www.storagecraft.com


"Hassan Gulzar" <hassan_gulzar@hotmail.com> wrote in message
news:0d4101c3ad73$0160ef00$a001280a@phx.gbl...
> What are the requirments for programming using these ports
> ie. picking data sending data etc. My programming language
> is C#.NET or VB.NET



Re: Parallel and/or serial port by Kirk

Kirk
Wed Nov 19 03:00:10 CST 2003

"Maxim S. Shatskih" <maxim@storagecraft.com> wrote in message
news:OY9PYDYrDHA.2012@TK2MSFTNGP12.phx.gbl...
> Is DeviceIoControl supported in .NET? If no - then you will need to
write a
> COM wrapper which will turn the method calls to DeviceIoControl, and use
it for
> the parallel port.

Not sure about C# but C++.NET with its interop feature can call any non .NET
method. So just use DeviceIoControl.

-Kirk