Ver Mensaje Individual
  #1  
Antiguo 14-03-2010
bothy bothy is offline
Miembro
 
Registrado: ene 2010
Posts: 144
Reputación: 15
bothy Va por buen camino
como puedo borrar 100 edit

como puedo borrar 100 edit

e puesto este codigo en un Button para limpiar


Código Delphi [-]
var i :integer;
begin
for i := 0 to ComponentCount -1 do
if Components[i] is TEdit then
begin
TEdit(Components[i]).Clear ;
     end;
end;


no me marca ningun error pero tampoco me limpia los edit..
Responder Con Cita