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.
LuisLeon_FactuGES/Modulos/Pedidos de cliente/Views/uViewDatosPedidoCliente.pas
2007-06-11 15:35:41 +00:00

32 lines
810 B
ObjectPascal

unit uViewDatosPedidoCliente;
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, cxGraphics, ImgList, PngImageList,
cxImageComboBox;
type
TfrViewDatosPedidoCliente = class(TfrViewBase)
Bevel1: TBevel;
Label5: TLabel;
Label1: TLabel;
Label2: TLabel;
edtFechaConfirmacion: TcxDBDateEdit;
Label3: TLabel;
edtFechaEntrega: TcxDBDateEdit;
DADataSource: TDADataSource;
Label6: TLabel;
edtFechaPedido: TcxDBDateEdit;
ImageList: TPngImageList;
cbSituacion: TcxDBImageComboBox;
end;
implementation
{$R *.dfm}
end.