From b7576ab9f5ebe3126b4fd6038079476019025242 Mon Sep 17 00:00:00 2001 From: roberto Date: Thu, 22 Jan 2009 09:26:27 +0000 Subject: [PATCH] Se comenta la linea en la que se pone a true el visible de la barra de Archivo..., para que en todos los seleccionar no salga. git-svn-id: https://192.168.0.254/svn/Proyectos.Tecsitel_FactuGES2/trunk@856 0c75b7a4-871f-7646-8a2f-f78d34cc349f --- Source/Base/Base.dproj | 102 ++++++++++++++--------------- Source/GUIBase/uEditorGridBase.dfm | 4 +- Source/GUIBase/uEditorGridBase.pas | 2 +- 3 files changed, 55 insertions(+), 53 deletions(-) diff --git a/Source/Base/Base.dproj b/Source/Base/Base.dproj index fff1d726..97d49264 100644 --- a/Source/Base/Base.dproj +++ b/Source/Base/Base.dproj @@ -54,57 +54,57 @@ MainSource - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
fConfigurarConexion
diff --git a/Source/GUIBase/uEditorGridBase.dfm b/Source/GUIBase/uEditorGridBase.dfm index 48d80c92..ba25e322 100644 --- a/Source/GUIBase/uEditorGridBase.dfm +++ b/Source/GUIBase/uEditorGridBase.dfm @@ -30,7 +30,7 @@ inherited fEditorGridBase: TfEditorGridBase DockPos = 0 DragHandleStyle = dhDouble TabOrder = 1 - ExplicitWidth = 705 + ExplicitWidth = 600 inherited TBXItem29: TTBXItem Visible = False end @@ -243,12 +243,14 @@ inherited fEditorGridBase: TfEditorGridBase object actExpandir: TAction Category = 'Ver' Caption = 'Expandir' + Visible = False OnExecute = actExpandirExecute OnUpdate = actExpandirUpdate end object actContraer: TAction Category = 'Ver' Caption = 'Contraer' + Visible = False OnExecute = actContraerExecute OnUpdate = actContraerUpdate end diff --git a/Source/GUIBase/uEditorGridBase.pas b/Source/GUIBase/uEditorGridBase.pas index 164966d9..b92b856f 100644 --- a/Source/GUIBase/uEditorGridBase.pas +++ b/Source/GUIBase/uEditorGridBase.pas @@ -157,7 +157,7 @@ end; function TfEditorGridBase.ShowModal: Integer; begin - tbxMenu.Visible := True; +// tbxMenu.Visible := True; JvNavPanelHeader.Top := TBXDock.Height; Result := inherited ShowModal; end;