0
votes

I need to integrate scanner in my C# application. I had done integration of scanner in my application using WIA, but I want to show the status of scanning using progressing bar. Can any one help me that how can I do it in my C# windows application.

1

1 Answers

2
votes

by using the :dialog.ShowTransfer you will be able to get a percent dialog of the current scan

                scannedImage = dialog.ShowTransfer(item,
                           FormatID.wiaFormatTIFF, true) as ImageFile;

there is another option , you can use a BackgroundWorker to monitor the WIA scanning proccess. check this example : from Code Project