hi how can i send data to parallel port in c#.net 2003 and framework1.1
-
hi any plz help me how can i send data to parallel port in VC#.Net 2003 and framework 1.1 prem
-
hi any plz help me how can i send data to parallel port in VC#.Net 2003 and framework 1.1 prem
There's no built in support, I believe that the file inpout.dll is what you need ( that's what I used to read a custom controller via the parallel port in .NET 1.1 )
Christian Graus - Microsoft MVP - C++ Metal Musings - Rex and my new metal blog
-
hi any plz help me how can i send data to parallel port in VC#.Net 2003 and framework 1.1 prem
Hello, here code project it self has many articles on that. just chek it out:mad: nishu
-
hi any plz help me how can i send data to parallel port in VC#.Net 2003 and framework 1.1 prem
public class PortAccess { [DllImport("inpout32.dll", EntryPoint="Out32")] public static extern void Output(int adress, int value); } then, use PortAccess.Output(***,***) to send data to parallel port. wang