Ver Mensaje Individual
  #6  
Antiguo 04-10-2013
Avatar de nlsgarcia
[nlsgarcia] nlsgarcia is offline
Miembro Premium
 
Registrado: feb 2007
Ubicación: Caracas, Venezuela
Posts: 2.206
Reputación: 21
nlsgarcia Tiene un aura espectacularnlsgarcia Tiene un aura espectacular
Anitan,

Cita:
Empezado por danielmj
...sino me equivoco nlsgarcia, creo que se refiere a como llamar el form9 desde otro formulario...
Revisa este código:
Código Delphi [-]
unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

Uses Unit9;

procedure TForm1.Button1Click(Sender: TObject);
begin
   Form9.Show;
end;

end.
El código anterior llama Form9 desde Form1.

Espero sea útil

Nelson.

Última edición por nlsgarcia fecha: 04-10-2013 a las 22:07:54.
Responder Con Cita