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/Base/uViewTotales.pas
2007-06-21 16:02:50 +00:00

41 lines
967 B
ObjectPascal

unit uViewTotales;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, uViewBase, ExtCtrls, StdCtrls, DB, uDADataTable, cxGraphics,
cxTextEdit, cxMaskEdit, cxDropDownEdit, cxDBEdit, cxControls,
cxContainer, cxEdit, cxLabel, cxDBLabel, cxCurrencyEdit, cxSpinEdit,
ComCtrls;
type
TfrViewTotales = class(TfrViewBase)
DADataSource: TDADataSource;
GroupBox1: TGroupBox;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Label7: TLabel;
lblBase: TcxDBCurrencyEdit;
cxCurrencyEdit3: TcxDBCurrencyEdit;
cxCurrencyEdit4: TcxDBCurrencyEdit;
cxCurrencyEdit5: TcxDBCurrencyEdit;
cxCurrencyEdit1: TcxDBSpinEdit;
cxCurrencyEdit2: TcxDBSpinEdit;
TabControl1: TTabControl;
private
{ Private declarations }
public
{ Public declarations }
end;
implementation
{$R *.dfm}
end.