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