I wrote a small C# program for scanning documents. It uses WIA.CommonDialog
Class to show the process bar.
However, the percentage is not updating, and instead, there is a fixed string "Percent complete" as shown in the image attached. Here is the code:
WIA.CommonDialog dialog = new WIA.CommonDialog();
WIA.ImageFile image = (WIA.ImageFile)dialog.ShowTransfer(scannerItem, FormatID.wiaFormatJPEG);
I need to constantly update the percentage number with the bar.