Ver Mensaje Individual
  #2  
Antiguo 28-07-2008
rafael_Delgado rafael_Delgado is offline
Registrado
 
Registrado: jul 2008
Posts: 3
Reputación: 0
rafael_Delgado Va por buen camino
Asi tengo el Codigo de mi formulario hasta el momento

unit AgendaGui;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Label6: TLabel;
TxtNombre: TEdit;
TxtApellido: TEdit;
TxtDireccion: TEdit;
TxtTelFijo: TEdit;
TxtTelCel: TEdit;
TxtEmail: TEdit;
Label7: TLabel;
TxtCod: TEdit;
Button1: TButton;
Button2: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
end.
Responder Con Cita