How can i send and receive data though parallel port using C# .net? Also can u guys please explain how to use parallel port to receive data?
Asked
Active
Viewed 8,018 times
1 Answers
4

Mitch Wheat
- 295,962
- 43
- 465
- 541
-
i saw this one dude. But I need to know how to control it without help of a dll. I just need to learn it. – Vicky Jun 23 '09 at 12:35
-
Dude, I don't think .NET has support for the parallel port, so you *have* to go through one of the non-.NET DLLs to use it. – Steve Jul 21 '13 at 11:12
-
The inpout32.dll has a kernel driver built into it that it extracts on-demand, that it then makes calls to using a file handle to change the state of the parallel port. You might be able to extract the kernel driver and permanently install it, from there you might be able to figure out the interface between the user-land dll and the kernel driver to call into it yourself. – antiduh Dec 06 '13 at 15:54