Ver Mensaje Individual
  #2  
Antiguo 18-09-2011
cloayza cloayza is offline
Miembro
 
Registrado: may 2003
Ubicación: San Pedro de la Paz, Chile
Posts: 915
Reputación: 23
cloayza Tiene un aura espectacularcloayza Tiene un aura espectacular
Intenta este codigo...

Código Delphi [-]
function MiForm(AppHandle:THandle):Boolean;
begin
       application.Handle:=AppHandle;
       With Tmiform.Create(Application) do
       begin
              ShowModal;
              Free;
       end;
      Result:=True;
end ;
exports Miform;
begin
end.

Para llamar a la Funcion MiForm
Código Delphi [-]
MiForm(Application.Handle);

Saludos
Responder Con Cita