vote up 0 vote down star

I have an ActiveX control in MFC that manipulates images and I am trying to add TWAIN scanning functionality to it.

I need to be able to receive a Windows Message back from the TWAIN driver that tells my control when an image has been scanned, so I have created a CDialog and I pass the HWND of the Dialog to the driver.

ALl the sample code I have seen on the net then uses PreTranslateMessage to capture the message from TWAIN, but in my ActiveX control this method is never being called.

Does anyone know how I can get the messages for that Dialog? I have also tried using PeekMessage with no success.

Many Thanks

flag
Did you define PreTranslateMessage in your control or in the Dialog? – Dani van der Meer Apr 2 at 9:15

1 Answer

vote up 1 vote down

You don't need to create a CDialog. You just need any window to process the messages. Anything dealing with TWAIN is best handled in its own thread. So, create a new thread for MFC (via CWinThread or AfxBeginThread). In that thread, create a CWnd. The HWND of this CWnd is the one you will pass with all the calls to the DSM, etc. Each thread has its own message queue, so set one up in there. Communicate with that thread via PostMessage, SendMessage, PostThreadMessage, etc. Assuming you post a message MY_SPECIAL_MESSAGE to signal to being acquiring an image, your message loop should look something like this:

MSG msg;
while (GetMessage(&msg, NULL, 0, 0))
{
    if (msg.message == MY_SPECIAL_MESSAGE)
    {	
    	GetImageFromTWAIN();
    }
    else if (!ProcessTWAINMessage(&msg)) {
    	TranslateMessage(&msg); 
    	DispatchMessage(&msg); 
    }
}

Definitely look at the source code in the TWAIN development kit to see how this all works in detail. TWAIN is a tricky creature.

Trust me, this is the best approach. You can do it all in a single thread using your main thread's message queue, but it's to be avoided.

link|flag
Hey adzm - I've been doing this the hard way (synchronous GetMessage loops) for years, but your way actually sounds better - allowing for the headaches of interthread synch & communication. Hmm - and multithreaded debugging... Have you used this, and if so can I ask what variety of environments has it been exposed to? – Spike0xff Jul 3 at 0:06
Yes, this exact method is currently in production at over a thousand medical institutions, some of which scan hundreds of images a day. – adzm Jul 6 at 12:28
(and has been in use for several years) – adzm Jul 6 at 12:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.