Ver Mensaje Individual
  #2  
Antiguo 02-06-2018
Avatar de ecfisa
ecfisa ecfisa is offline
Moderador
 
Registrado: dic 2005
Ubicación: Tres Arroyos, Argentina
Posts: 10.508
Reputación: 38
ecfisa is a splendid one to beholdecfisa is a splendid one to beholdecfisa is a splendid one to beholdecfisa is a splendid one to beholdecfisa is a splendid one to beholdecfisa is a splendid one to beholdecfisa is a splendid one to behold
Hola.

Código PHP:
...
void __fastcall TForm1::FormCreate(TObject *Sender)
{
  for( 
int a = 0; a < 100; a++ )
  {
    
Boton[a] = new TButton(this);
    
Boton[a]->Top = a * 25 + 10;
    
Boton[a]->Tag = a+1;
    
Boton[a]->Name = "Button" + IntToStr(a+1);
    
Boton[a]->OnClick = botonCliqueado;
    
Boton[a]->Parent = ScrollBox1;
  }
}

void __fastcall TForm1::botonCliqueado(TObject *Sender)
{
  
TButton *bt = static_cast<TButton*>(Sender);
  
ShowMessage("Name: " + bt->Name + "\nTag: " + IntToStr(bt->Tag));
}
... 
Saludos
__________________
Daniel Didriksen

Guía de estilo - Uso de las etiquetas - La otra guía de estilo ....
Responder Con Cita