Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

how i can handle the interrupt of parallel port under winxp?

Status
Not open for further replies.

alec82

Advanced Member level 4
Joined
Oct 25, 2006
Messages
118
Helped
12
Reputation
24
Reaction score
4
Trophy points
1,298
Activity points
1,874
parallel port delphi interrupt

hi guys
how i can handle the interrupt of parallel port under winxp?(with delphi)
best regards
 

Re: how i can handle the interrupt of parallel port under wi

Refer to
TVicLPT v.1.3
 

Re: how i can handle the interrupt of parallel port under wi

i want to use windows API command.anybody can help me?
best regards
 

Re: how i can handle the interrupt of parallel port under wi

Take a look at these calls in the MSDN help files.


Code:
HANDLE hEvent;
  
 hEvent = CreateEvent(NULL, false, false, "");

 SetEventNotification(ftHandle, MY_EVENT, hEvent);

 WaitForSingleObject(hEvent, INFINITE);
 

Status
Not open for further replies.

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top