![]() |
![]() |
| Paypal | FTP | CCD | Buscar | Trucos | Trabajo | Foros |
|
|||||||
| Registrarse | FAQ | Miembros | Calendario | Guía de estilo | Temas de Hoy |
|
|
Herramientas | Buscar en Tema | Desplegado |
|
#2
|
||||
|
||||
|
En el OnClick del Botón :
Si el formulario es MDIChild . Código:
fForm := TfForm.Create(Self);
try
fForm.FormStyle := fsNormal;
fForm.Visible:= False;
fForm.ShowModal; // ó fForm.Show
finally
fForm.Free;
end;
Si el formulario no es MDIChild Código:
fForm := TfForm.Create(Self);
try
fForm.ShowModal; // ó fForm.Show
finally
fForm.Free;
end;
|
|
|
|