![]() |
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. |
Re: find a component, (TrackBar+ProgressBar)
can you post a screenshot of this bar please?
|
Re: find a component, (TrackBar+ProgressBar)
Liste der Anhänge anzeigen (Anzahl: 1)
ok, that's my picture.
greets. |
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; |
Re: find a component, (TrackBar+ProgressBar)
@Luckie
thank you, but i want a custom theme component as it...have a tips? greets. |
Re: find a component, (TrackBar+ProgressBar)
you could write this component by yourself.
|
Alle Zeitangaben in WEZ +1. Es ist jetzt 13:24 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz