uViewDetallesGenerico: faltaba la declaración del interfaz IViewDetallesGenerico.

git-svn-id: https://192.168.0.254/svn/Proyectos.Acana_FactuGES2/trunk@143 f4e31baf-9722-1c47-927c-6f952f962d4b
This commit is contained in:
David Arranz 2008-02-24 16:03:13 +00:00
parent 0d1359c606
commit 62a906bbb8
3 changed files with 11 additions and 7 deletions

Binary file not shown.

View File

@ -73,19 +73,19 @@ inherited frViewDetallesGenerico: TfrViewDetallesGenerico
Transparent = True
object ToolButton1: TToolButton
Left = 0
Top = 2
Top = 0
Action = actAnadir
AutoSize = True
end
object ToolButton4: TToolButton
Left = 62
Top = 2
Top = 0
Action = actModificar
AutoSize = True
end
object ToolButton5: TToolButton
Left = 136
Top = 2
Top = 0
Width = 8
Caption = 'ToolButton5'
ImageIndex = 2
@ -93,13 +93,13 @@ inherited frViewDetallesGenerico: TfrViewDetallesGenerico
end
object ToolButton2: TToolButton
Left = 144
Top = 2
Top = 0
Action = actEliminar
AutoSize = True
end
object ToolButton6: TToolButton
Left = 211
Top = 2
Top = 0
Width = 8
Caption = 'ToolButton6'
ImageIndex = 2
@ -107,7 +107,7 @@ inherited frViewDetallesGenerico: TfrViewDetallesGenerico
end
object ToolButton7: TToolButton
Left = 219
Top = 2
Top = 0
Action = actAnchoAutomatico
AutoSize = True
end

View File

@ -11,7 +11,11 @@ uses
cxControls, cxGridCustomView, cxGrid, uDAInterfaces;
type
TfrViewDetallesGenerico = class(TfrViewBase)
IViewDetallesGenerico = interface(IViewBase)
['{CA4BD183-1DCD-453D-A1A2-A3B7349BBE40}']
end;
TfrViewDetallesGenerico = class(TfrViewBase, IViewDetallesGenerico)
cxGrid: TcxGrid;
cxGridView: TcxGridDBTableView;
cxGridViewID: TcxGridDBColumn;