I have to get images from scanner with TWAIN 1.x interface
Some old scanners scan too long time so I guess how to notify user about scanning progress. There is built-in popup window with progress bar and "cancel" button but it's something I want to override.
Instead of TWAIN WIA API sends me pieces of scan with progress percent so I can solve this task with WIA, but what about TWAIN ?
I tried this nice TWAIN demo http://www.codeproject.com/KB/audio-video/twaintest.aspx.
It uses message loop for scanning. I guess that scan progress should be represented as set of messages sent to message loop but I was wrong. There are only some initial and finalization messages.
Is there a way to be notified about scan progress with TWAIN 1.x API?
Thank you in advance!