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
 How to make ProgressIndicators stay on top?

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
Dakota Posted - Sep 08 2011 : 14:26:27
Hi!

I am using TImageEnMView for scanning. I have ImageEnMView.mio.TwainParams.ProgressIndicators := True. When I scan, the progress dialog appears however it is always behind the modal form that I am scanning to.

Is there any trick to forcing the progress dialog to come to the front?

Thanks,

Dale
5   L A T E S T    R E P L I E S    (Newest First)
klausdoege Posted - Sep 16 2011 : 14:49:48
Hello,
I had the same problem.
After call with buttons.
procedure TForm1.ButtonClick(Sender:TObject,;
begin
if ImageEnIO1.Acquire(ieaTWain, then,
begin
.....
end;
end;

The Scan form vanished.

Now I have done that with a Timer, and it goes great.
procedure TForm1.ButtonClick(Sender:TObject,;
begin
timer1.enabled:=true;
end;

procedure TForm1.TimerTimer(Sender: TObject,;
begin
timer1.enabled:=false;
if ImageEnIO1.Acquire(ieaTWain, then,
begin
.....
end;
end;

Wy now i don't no.

Klaus
Dakota Posted - Sep 16 2011 : 14:46:02
Cool! That looks promising. I will give it a try and report back my results.

Thanks,

Dale
fab Posted - Sep 16 2011 : 12:34:33
In my tests the progress indicator is in the foreground, so I think this is a driver specific problem.
Dakota Posted - Sep 09 2011 : 07:56:11
I have the scanner dialog turned off. I want the progress dialog to appear in front of my form, but it always is behind it.

Dale
fab Posted - Sep 08 2011 : 22:23:24
quote:
...behind the modal form that I am scanning to.


do you mean behind the scanner dialog or behind of your form?