09-05-2005 02:37 AM - edited 09-05-2005 02:37 AM
Mensaje editado por Comadreja
09-05-2005 09:15 AM
Comadreja,
What you can try is to intercept the windows messages.
Look at the functions under User Interface Library >> Callback functions >> Windows Interrupt Support.
RegisterWinMsgCallback might do what you need, it registers a callback function that LabWindows/CVI calls when your application receives a specific Windows message. RegisterWinMsgCallback returns the actual number of the Windows message.
I messed around with messages a couple of years ago to try to mimic key and mouse events for other applications, it's not easy and not very well documented.