ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 Developing an application with a DuplexScanner

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

T O P I C    R E V I E W
alaki12 Posted - Jun 08 2014 : 01:03:55
Hi
I want to develop an application by En image controls and a Duplex Scanner. But I do not know how to catch the second side of the paper.
Could you please guide me?

Special thanks,
Bob
1   L A T E S T    R E P L I E S    (Newest First)
HeinzPo Posted - Jun 17 2014 : 12:30:51
Perhaps some like that..

Use an ImageEnMView

ImageEnMView1.MIO.TwainParams.Update;
ImageEnMView1.MIO.TwainParams.DuplexEnabled := True;

if not ImageEnMView1.MIO.TwainParams.FeederLoaded then
ShowMessage('No paper for ADF') else
begin
ImageEnMView1.MIO.TwainParams.FeederEnabled := True;
ImageEnMView1.MIO.Acquire;
end;

Best regards