git-svn-id: https://192.168.0.254/svn/Proyectos.LuisLeon_FactuGES/trunk@226 c93665c3-c93d-084d-9b98-7d5f4a9c3376
36 lines
709 B
ObjectPascal
36 lines
709 B
ObjectPascal
unit uEditorFechaFactura;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, StdCtrls, cxControls, cxContainer, cxEdit, cxTextEdit, cxMaskEdit,
|
|
cxDropDownEdit, cxCalendar;
|
|
|
|
type
|
|
TfEditorFechaFactura = class(TForm)
|
|
Label1: TLabel;
|
|
eFechaFactura: TcxDateEdit;
|
|
Button1: TButton;
|
|
Label2: TLabel;
|
|
procedure FormShow(Sender: TObject);
|
|
private
|
|
{ Private declarations }
|
|
public
|
|
{ Public declarations }
|
|
end;
|
|
|
|
var
|
|
fEditorFechaFactura: TfEditorFechaFactura;
|
|
|
|
implementation
|
|
|
|
{$R *.dfm}
|
|
|
|
procedure TfEditorFechaFactura.FormShow(Sender: TObject);
|
|
begin
|
|
eFechaFactura.Date := Date;
|
|
end;
|
|
|
|
end.
|