Ticket #336 -> Limitar los campos de datos bancarios en la ficha de clientes

git-svn-id: https://192.168.0.254/svn/Proyectos.Noviseda_FactuGES2/trunk@27 f33bb606-9f5c-448d-9c99-757f00063c96
This commit is contained in:
David Arranz 2010-01-18 12:32:35 +00:00
parent f0ad57c6a2
commit 29b29b503a

View File

@ -5,23 +5,24 @@ object fEditorDatoBancario: TfEditorDatoBancario
BorderStyle = bsDialog BorderStyle = bsDialog
Caption = 'Cambiar datos bancarios' Caption = 'Cambiar datos bancarios'
ClientHeight = 193 ClientHeight = 193
ClientWidth = 426 ClientWidth = 502
Color = clBtnFace Color = clBtnFace
ParentFont = True ParentFont = True
OldCreateOrder = True OldCreateOrder = True
Position = poOwnerFormCenter Position = poOwnerFormCenter
DesignSize = ( DesignSize = (
426 502
193) 193)
PixelsPerInch = 96 PixelsPerInch = 96
TextHeight = 13 TextHeight = 13
object Bevel1: TBevel object Bevel1: TBevel
Left = 8 Left = 8
Top = 8 Top = 8
Width = 329 Width = 405
Height = 177 Height = 177
Anchors = [akLeft, akTop, akRight] Anchors = [akLeft, akTop, akRight]
Shape = bsFrame Shape = bsFrame
ExplicitWidth = 329
end end
object Label2: TLabel object Label2: TLabel
Left = 20 Left = 20
@ -64,7 +65,7 @@ object fEditorDatoBancario: TfEditorDatoBancario
Caption = 'C'#243'digo de cuenta:' Caption = 'C'#243'digo de cuenta:'
end end
object OKBtn: TButton object OKBtn: TButton
Left = 343 Left = 419
Top = 7 Top = 7
Width = 75 Width = 75
Height = 25 Height = 25
@ -72,9 +73,10 @@ object fEditorDatoBancario: TfEditorDatoBancario
Caption = '&Aceptar' Caption = '&Aceptar'
ModalResult = 1 ModalResult = 1
TabOrder = 0 TabOrder = 0
ExplicitLeft = 343
end end
object CancelBtn: TButton object CancelBtn: TButton
Left = 343 Left = 419
Top = 38 Top = 38
Width = 75 Width = 75
Height = 25 Height = 25
@ -83,6 +85,7 @@ object fEditorDatoBancario: TfEditorDatoBancario
Caption = '&Cancelar' Caption = '&Cancelar'
ModalResult = 2 ModalResult = 2
TabOrder = 1 TabOrder = 1
ExplicitLeft = 343
end end
object eEntidad: TDBEdit object eEntidad: TDBEdit
Left = 136 Left = 136
@ -91,6 +94,7 @@ object fEditorDatoBancario: TfEditorDatoBancario
Height = 21 Height = 21
DataField = 'ENTIDAD' DataField = 'ENTIDAD'
DataSource = dsDatosBancarios DataSource = dsDatosBancarios
MaxLength = 4
TabOrder = 3 TabOrder = 3
end end
object eSucursal: TDBEdit object eSucursal: TDBEdit
@ -100,6 +104,7 @@ object fEditorDatoBancario: TfEditorDatoBancario
Height = 21 Height = 21
DataField = 'SUCURSAL' DataField = 'SUCURSAL'
DataSource = dsDatosBancarios DataSource = dsDatosBancarios
MaxLength = 4
TabOrder = 4 TabOrder = 4
end end
object eDC: TDBEdit object eDC: TDBEdit
@ -109,12 +114,13 @@ object fEditorDatoBancario: TfEditorDatoBancario
Height = 21 Height = 21
DataField = 'DC' DataField = 'DC'
DataSource = dsDatosBancarios DataSource = dsDatosBancarios
MaxLength = 2
TabOrder = 5 TabOrder = 5
end end
object eTitular: TDBEdit object eTitular: TDBEdit
Left = 135 Left = 135
Top = 24 Top = 24
Width = 191 Width = 266
Height = 21 Height = 21
DataField = 'TITULAR' DataField = 'TITULAR'
DataSource = dsDatosBancarios DataSource = dsDatosBancarios
@ -127,6 +133,7 @@ object fEditorDatoBancario: TfEditorDatoBancario
Height = 21 Height = 21
DataField = 'CUENTA' DataField = 'CUENTA'
DataSource = dsDatosBancarios DataSource = dsDatosBancarios
MaxLength = 10
TabOrder = 6 TabOrder = 6
end end
object dsDatosBancarios: TDADataSource object dsDatosBancarios: TDADataSource