Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   GUI-Design mit VCL / FireMonkey / Common Controls (https://www.delphipraxis.net/18-gui-design-mit-vcl-firemonkey-common-controls/)
-   -   Delphi find a component, (TrackBar+ProgressBar) (https://www.delphipraxis.net/73286-find-component-trackbar-progressbar.html)

sailxia 15. Jul 2006 07:44


find a component, (TrackBar+ProgressBar)
 
hello,everyone:
i will find component see like Windows Media Player V9's TrackBar, it seem to a TrackBar+ProgressBar, but i don't know how to do...

i hope someone will give me a tips,thanks! sorry for my poor english.

greets.

SirThornberry 15. Jul 2006 10:07

Re: find a component, (TrackBar+ProgressBar)
 
can you post a screenshot of this bar please?

sailxia 16. Jul 2006 01:19

Re: find a component, (TrackBar+ProgressBar)
 
Liste der Anhänge anzeigen (Anzahl: 1)
ok, that's my picture.

greets.

Luckie 16. Jul 2006 01:36

Re: find a component, (TrackBar+ProgressBar)
 
Use just a normal Trackbar:
Delphi-Quellcode:
procedure TForm1.Button1Click(Sender: TObject);
var
  i: Integer;
begin
 Trackbar1.SelStart := 0;
  for i := 0 to 100 do
  begin
    Trackbar1.Position := i;
    Trackbar1.SelEnd := TrackBar1.Position;
    Trackbar1.Refresh;
    Sleep(100);
  end;
end;

sailxia 16. Jul 2006 04:50

Re: find a component, (TrackBar+ProgressBar)
 
@Luckie

thank you, but i want a custom theme component as it...have a tips?

greets.

SirThornberry 16. Jul 2006 12:13

Re: find a component, (TrackBar+ProgressBar)
 
you could write this component by yourself.


Alle Zeitangaben in WEZ +1. Es ist jetzt 17:33 Uhr.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024 by Thomas Breitkreuz