How To Access Parallel Port from VB.NET?

Moh

New member
Joined
Jul 21, 2003
Messages
1
How to Access the parallel port form VB.Net?
can I find functions like OutPort() and InPort()?
 
Youll need to create a file handle to access the port using the API function [api]CreateFile[/api]. Then use the returned handle to instantiate a [msdn=System.IO.FileStream]FileStream[/msdn].
 
Back
Top