Link to home
Start Free TrialLog in
Avatar of danigraf
danigraf

asked on

Parallel Port File Transfer

I have to develop parallel port file transfer. I'm using VC++ and I couldn't find any sample code or documentation.

Is there anything available? For example, source code for something like laplink?

All I need is a reliable parallel port file transfer.

Thanks a lot
Daniel
Avatar of jkr
jkr
Flag of Germany image

Both parallel and serial communications are performed using the Win32 file API - the most comprehensive explanation on this issue can be found at 'http://msdn.microsoft.com/library/techart/msdn_serial.htm' - the name of the article is 'Serial Communications in Win32'. It describes in detail how to access the COM ports using C/C++ (the same for LPT).

If you prefer a class for doing this, take a look at 'http://www.codeguru.com/misc/serialport.shtml', which provides a complete communication class for all this.

Avatar of danigraf
danigraf

ASKER

I'm looking for parallel port communication!!! Serial port is no problem. To be more specific, I'm looking for parallel file transfer from one PC to another (Windows 95 and later also Windows NT).

Thanks a lot
Daniel
ASKER CERTIFIED SOLUTION
Avatar of chensu
chensu
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Hmm, did you take a look at the MSDN link? As I said, parallel and serial I/O are minla the same thing...