Hi Tom,

i think your looking for:
if (Sender as TSpeedbutton).Name='SpdBtn1' then
   //do something


if you don't know the name of the component then when you create the component 
set the Tag property to a known amount as 20-41 to find components as

if (Sender as TSpeedbutton).Tag=21 then
   //do something

Or you can iterate through all the components on the form as


for C:=0 to Form1.ComponentCount-1 do begin
   if Components[C] is TSpeedbutton then begin
       //do something
   end;
end;

Cheers,
Charlie

  ----- Original Message ----- 
  From: Nesler, Thomas J 
  To: [email protected] 
  Sent: Wednesday, March 05, 2008 4:26 PM
  Subject: [delphi-en] Locating Speedbutton controls


  Hello!

  I have a Coolbar with 21speed buttons on it. I need to enter captions
  on the fly for these speedbuttons. How can I find these buttons and
  load the captions?

  I know there is some kind of search find function but I can't seem to
  locate it right now.


  Thanks in advance!

  Tom Nesler


  [Non-text portions of this message have been removed]



   

[Non-text portions of this message have been removed]

Reply via email to