![]() |
![]() |
| Paypal | FTP | CCD | Buscar | Trucos | Trabajo | Foros |
|
|||||||
| Registrarse | FAQ | Miembros | Calendario | Guía de estilo | Temas de Hoy |
|
|
Herramientas | Buscar en Tema | Desplegado |
|
#2
|
||||
|
||||
|
Código:
Var
H: Integer;
begin
for H := 0 to Memo1.Lines.Count-1 do
begin
// Showmessage(Memo1.Lines[H]); Solo para ver que lineas tiene.
for ... // segundo for (anidado)
begin
...
for ... // tercer for (anidado)
begin
...
end;
...
end;
...
end;
...
end;
|
|
|
|