Board index » delphi » Delphi 2: Progress Bar inside a Status Bar Panel

Delphi 2: Progress Bar inside a Status Bar Panel

Has anyone been able to put a Progress Bar inside a Status Bar Panel.  I
can put text but I don't know how to put a Progress Bar.

Any help would be greatly appreciated.

Thanks,

--
Eugene Ruben Ramirez
email: rrami...@ix.netcom.com

 

Re:Delphi 2: Progress Bar inside a Status Bar Panel


Ruben Ramirez <rrami...@ix.netcom.com> wrote in article

Quote
> Has anyone been able to put a Progress Bar inside a Status Bar Panel.  I
> can put text but I don't know how to put a Progress Bar.

You have to do it at run time, creating a progress bar and making it the
child of the status bar. Works quite well once you figure that step out!

Pete

Re:Delphi 2: Progress Bar inside a Status Bar Panel


Quote
Ruben Ramirez <rrami...@ix.netcom.com> wrote:
>Has anyone been able to put a Progress Bar inside a Status Bar Panel.  I
>can put text but I don't know how to put a Progress Bar.

I usually just shorten the statusbar to leave room on the right for the
progressbar, adjusting in the Form.Resize event when needed.
Quote
>Any help would be greatly appreciated.
>Thanks,
>--
>Eugene Ruben Ramirez
>email: rrami...@ix.netcom.com

Re:Delphi 2: Progress Bar inside a Status Bar Panel


Quote
On Wed, 21 Aug 1996 23:24:51 GMT, hi...@ionet.net (Thomas Hill) wrote:

If you place a Panel w/ align := bottom, then place the status bar w/
in the panel, you may then place the progress bar w/ in the status
bar.

Scott.

Quote
>Ruben Ramirez <rrami...@ix.netcom.com> wrote:
>>Has anyone been able to put a Progress Bar inside a Status Bar Panel.  I
>>can put text but I don't know how to put a Progress Bar.
>>Any help would be greatly appreciated.
>>Thanks,

____________________________
Scott Martin
Kvaerner FSSL, Inc.
smar...@firstnethou.com

Re:Delphi 2: Progress Bar inside a Status Bar Panel


On Mon, 19 Aug 1996 21:17:54 +0100, Ruben Ramirez

Quote
<rrami...@ix.netcom.com> wrote:
>Has anyone been able to put a Progress Bar inside a Status Bar Panel.  I
>can put text but I don't know how to put a Progress Bar.

>Any help would be greatly appreciated.

>Thanks,

Take a look at the Delphi Super Page or www.delphi32.com. There is a
new Status Bar component out there (freeware) which allows what you
want. It is a direct descendant of the original status bar.
Sorry, I don't know the name, but I think you should find it.

Hope this helps
Meikel Weber
m.we...@public.ndh.com
Make sure you visit my homepage
http://ourworld.compuserve.com/Homepages/meikel

Re:Delphi 2: Progress Bar inside a Status Bar Panel


Quote
Ruben Ramirez wrote:

> Has anyone been able to put a Progress Bar inside a Status Bar Panel.  I
> can put text but I don't know how to put a Progress Bar.

> Any help would be greatly appreciated.

> Thanks,

> --
> Eugene Ruben Ramirez
> email: rrami...@ix.netcom.com

I use a Panel that is aligned to the bottom of the form. I have
a Status Bar and Progress Bar as children of the Panel. You can
do this at design time.

Hari

Other Threads