This repository has been archived on 2024-12-02. You can view files and clone it, but cannot push or open issues or pull requests.
AlonsoYSal_FactuGES/Modulos/Pagos/Cliente/uViewDatosPagoCliente.pas

36 lines
799 B
ObjectPascal
Raw Normal View History

unit uViewDatosPagoCliente;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, uViewBase, DB, uDADataTable, cxControls, cxContainer, cxEdit,
cxTextEdit, cxMaskEdit, cxDropDownEdit, cxCalendar, cxDBEdit, StdCtrls,
Mask, DBCtrls, ExtCtrls, cxMemo, cxRichEdit, cxDBRichEdit;
type
TfrViewDatosPago = class(TfrViewBase)
Bevel1: TBevel;
Label5: TLabel;
Label1: TLabel;
Label2: TLabel;
edtFecha: TcxDBDateEdit;
Label3: TLabel;
edtVencimiento: TcxDBDateEdit;
DADataSource: TDADataSource;
eReferencia: TcxDBTextEdit;
private
{ Private declarations }
public
{ Public declarations }
end;
var
frViewDatosPago: TfrViewDatosPago;
implementation
{$R *.dfm}
end.