2011-11-14 17:40:41 +00:00
|
|
|
unit uViewTotalesPresupuesto;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
|
|
|
Dialogs, uViewTotales, cxGraphics, dxLayoutLookAndFeels, DB, uDAInterfaces,
|
|
|
|
|
uDADataTable, dxLayoutControl, cxCheckBox, cxDBEdit, StdCtrls, cxDropDownEdit,
|
|
|
|
|
cxLookupEdit, cxDBLookupEdit, cxDBLookupComboBox, cxMaskEdit, cxSpinEdit,
|
2018-03-26 16:26:46 +00:00
|
|
|
cxContainer, cxEdit, cxTextEdit, cxCurrencyEdit, ExtCtrls, cxControls,
|
|
|
|
|
cxCalendar;
|
2011-11-14 17:40:41 +00:00
|
|
|
|
|
|
|
|
type
|
|
|
|
|
TfrViewTotalesPresupuesto = class(TfrViewTotales)
|
|
|
|
|
cxValorado: TdxLayoutItem;
|
|
|
|
|
cbValorado: TcxDBCheckBox;
|
|
|
|
|
private
|
|
|
|
|
{ Private declarations }
|
|
|
|
|
public
|
|
|
|
|
{ Public declarations }
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
var
|
|
|
|
|
frViewTotalesPresupuesto: TfrViewTotalesPresupuesto;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
{$R *.dfm}
|
|
|
|
|
|
|
|
|
|
end.
|