Page 1 of 1

Detect document put into the FLATBED scanner...

Posted: Thu Jan 28, 2010 10:37 am
by bharate.umesh
Hello Alexey,

For ADF scanner, thrugh the following code we come to know whether the documents are loaded or not.

And FeederPresent property determines if the device has automatic document feeder.

If VSTwain1.FeederPresent Then
VSTwain1.FeederEnabled = true
VSTwain1.AutoFeed = true
VSTwain1.XferCount = -1
If VSTwain1.FeederLoaded Then
VSTwain1.Acquire()
Endif
Endif

But suppose, if I haven't put any document into the FLATBED scanner, does above code will work?

Please specify a code for FLATBED scanner.

Thanks,Umesh

Re: Detect document put into the FLATBED scanner...

Posted: Tue Feb 02, 2010 10:06 am
by Alex
Hello Umesh,

You can determine the type of scanner with the FlatbedPresent and FeederPresent properties, please read the documentation for more info.

Best regards, Alexander

Re: Detect document put into the FLATBED scanner...

Posted: Tue Feb 02, 2010 11:16 am
by bharate.umesh
Yes. I already got the solution reading upon your documentation.

Thanks,Umesh