git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES2/trunk@201 b2cfbe5a-eba1-4a0c-8b32-7feea0a119f2
36 lines
734 B
ObjectPascal
36 lines
734 B
ObjectPascal
unit uEditorFechaFacturaFinal;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls, cxControls, cxContainer, cxEdit, cxTextEdit, cxMaskEdit,
|
|
cxDropDownEdit, cxCalendar;
|
|
|
|
type
|
|
TfEditorFechaFacturaFinal = class(TForm)
|
|
Label1: TLabel;
|
|
eFechaFactura: TcxDateEdit;
|
|
Button1: TButton;
|
|
Label2: TLabel;
|
|
procedure FormShow(Sender: TObject);
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
fEditorFechaFacturaFinal: TfEditorFechaFacturaFinal;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
procedure TfEditorFechaFacturaFinal.FormShow(Sender: TObject);
|
|
begin
|
|
eFechaFactura.Date := Date;
|
|
end;
|
|
|
|
end.
|