Click here to Skip to main content
15,890,527 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi every one,

I want to scan multiple pages. Using the below code, I got the scanner wizard and it's working good.
My problem is that user cant select the path for location - I want to set that. How is it possible?

C#
private void CallScanWizard()
{
        WIA.CommonDialog dlg = new WIA.CommonDialog();
        Device dvc = dlg.ShowSelectDevice(WiaDeviceType.ScannerDeviceType, true, false);

        if (dvc != null)
        {
            dlg.ShowAcquisitionWizard(dvc);
        }
}
Posted
Updated 18-Mar-11 21:10pm
v2

1 solution

AFAIK you can't: once you start the wizard, that is it until the user dismisses it.
 
Share this answer
 
Comments
jasna ashraf 19-Mar-11 4:09am    
ok,if any way to get the file url for my application

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900