hey thats amazing man, thanks so much!!!!!
also, what if im not using a splash, could i simulate progress betweeb pages with a progress bar and a timber?
Main Topics
Browse All Topicsi have a blank splash screen. it takes 8 seconds to load. how would i simulate a progress bar so the bar goes up and down the frames. ?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
this is supposed to work when button is pressed but its got no event foe a timer and it gives an error on the last bit of code,
procedure TForm1.Button1Click(Sender
begin
Timer1.Enabled := True;end;
procedure TForm1.Timer1Timer(Sender:
const cnt: integer = 1;
begin
ProgressBar1.Position := cnt;
if cnt = 1 then Label1.Caption := 'Waiting...'
else
if cnt = 100 then begin Label1.Caption := 'Done!';
Timer1.Enabled := False;
end
else
Label1.Caption := 'Working...';
Inc(cnt);
end;
end.
error is on inc(cnt);
any ideas how to fix it ?
You can use this component
MarqueeProgressBar v.1.0
http://www.torry.net/vcl/i
This component encapsulates the marquee style above.
Just install and test.
Hope this helps
Business Accounts
Answer for Membership
by: thiagoblimeiraPosted on 2009-07-12 at 17:11:41ID: 24836521
Hello
Which version of delphi are you using? if version >= 2007 you can use the set the style property of the progress bar to pbstMarquee, this way you get a nitty effect as shown below. This way you don't need to inform any information about completion.
Hope this helps
If this is not what you want then tell me please
Marquee effect
Marquee effects