This repository has been archived on 2024-11-28. You can view files and clone it, but cannot push or open issues or pull requests.
Noviseda_FactuGES2/Source/Modulos/Presupuestos de cliente/Views/uEditorFechaDecision.pas
2009-12-16 17:16:54 +00:00

36 lines
724 B
ObjectPascal

unit uEditorFechaDecision;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, cxControls, cxContainer,
cxEdit, cxTextEdit, cxMaskEdit, cxDropDownEdit, cxCalendar;
type
TfEditorFechaDecision = class(TForm)
Label1: TLabel;
edtFechaDecision: TcxDateEdit;
bAceptar: TButton;
bCancelar: TButton;
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
fEditorFechaDecision: TfEditorFechaDecision;
implementation
{$R *.dfm}
procedure TfEditorFechaDecision.FormShow(Sender: TObject);
begin
edtFechaDecision.Date := now;
end;
end.