- RemObjects 6.0.39.777 - Data_Abstract 6.0.39.777 - JCL 2.1.1 - JVCL 3.39 - DevExpressVCL x.48 - FastReport4 4.8.11 - TB2k 2.2.2 - TntUnicodeControls 2.3.0 - SpTBXLib 2.4.4 * Actualización a FinalBuilder 6 git-svn-id: https://192.168.0.254/svn/Proyectos.Noviseda_FactuGES2/trunk@47 f33bb606-9f5c-448d-9c99-757f00063c96
35 lines
960 B
ObjectPascal
35 lines
960 B
ObjectPascal
unit uViewFiltroImportes;
|
|
|
|
interface
|
|
|
|
uses
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
|
|
Dialogs, uViewBase, cxContainer, cxEdit, cxTextEdit, cxMaskEdit, cxSpinEdit,
|
|
dxLayoutControl, StdCtrls, cxControls, SpTBXDkPanels, uViewParametrosInforme,
|
|
SpTBXControls, SpTBXItem, cxGraphics, cxLookAndFeels, cxLookAndFeelPainters,
|
|
TB2Dock;
|
|
|
|
type
|
|
IViewFiltroImportes = interface(IViewParametrosInforme)
|
|
['{AE773F0B-E72A-4A71-9C5C-8E68EC61456A}']
|
|
end;
|
|
|
|
TfrViewFiltroImportes = class(TfrViewParametrosInforme, IViewFiltroImportes)
|
|
cbxDesglosado: TCheckBox;
|
|
eImporte: TcxSpinEdit;
|
|
TBXLabel2: TSpTBXLabel;
|
|
TBXAlignmentPanel1: TSpTBXDockablePanel;
|
|
procedure cbxDesglosadoClick(Sender: TObject);
|
|
end;
|
|
|
|
implementation
|
|
{$R *.dfm}
|
|
|
|
procedure TfrViewFiltroImportes.cbxDesglosadoClick(Sender: TObject);
|
|
begin
|
|
inherited;
|
|
eImporte.Enabled := not eImporte.Enabled;
|
|
end;
|
|
|
|
end.
|