Ver Mensaje Individual
  #2  
Antiguo 14-05-2008
Avatar de axesys
axesys axesys is offline
Miembro
 
Registrado: ene 2007
Ubicación: Los Mochis Sinaloa
Posts: 208
Reputación: 18
axesys Va por buen camino
Código Delphi [-]
procedure TForm1.FormCreate(Sender: TObject);
  var b:TButton;
begin
  b := TButton.Create(self);
  b.Parent := StringGrid1;
  b.BoundsRect := StringGrid1.CellRect(2,3);
  b.OnClick := Button1Click;
end;
Responder Con Cita