Ver Mensaje Individual
  #3  
Antiguo 14-06-2013
feliz-58 feliz-58 is offline
Miembro
 
Registrado: sep 2012
Posts: 314
Reputación: 14
feliz-58 Va por buen camino
Cita:
Empezado por ecfisa Ver Mensaje
Hola feliz-58.

Código Delphi [-]
procedure Templeados.FormCreate(Sender: TObject);
begin
  ComboBox1.Clear;
  ComboBox1.Style := csDropDownList;
  with ADOConnection1 do
  begin
    Connected := True;
    GetTableNames(ComboBox1.Items);
  end;
  ComboBox1.Items.Delete(ComboBox1.Items.IndexOf('Tablaprincipal'));
  ComboBox1.ItemIndex := 0;
end;

Saludos.
Excelente Gracias
Responder Con Cita