From: <cod...@go...> - 2008-11-18 23:07:12
|
Author: M0...@gm... Date: Tue Nov 18 15:06:41 2008 New Revision: 301 Modified: branches/iVL/.project branches/iVL/FrmNetConf.class branches/iVL/FrmNetConf.form branches/iVL/installer.gambas Log: fixed more navigation woes. needs optimizing for lower resolutions Modified: branches/iVL/.project ============================================================================== --- branches/iVL/.project (original) +++ branches/iVL/.project Tue Nov 18 15:06:41 2008 @@ -2,7 +2,7 @@ # Compiled with Gambas 2.9.0 Title=VectorLinux Installer Startup=MdlCore -Version=0.0.170 +Version=0.0.172 Library=gb.gtk Library=gb.form Library=gb.debug Modified: branches/iVL/FrmNetConf.class ============================================================================== --- branches/iVL/FrmNetConf.class (original) +++ branches/iVL/FrmNetConf.class Tue Nov 18 15:06:41 2008 @@ -47,11 +47,11 @@ FMain.FrmCurr = ME ME.tlHostNameLbl.Alignment = Align.Normal - ' ' WITH FMain - ' ' .tvPlan["Conf3"].Picture = MdlCore.sDonePic - ' ' .tvPlan["Conf4"].Picture = MdlCore.sNowPic - ' ' .tvPlan["Conf4"].Selected = TRUE - ' ' END WITH + WITH FMain + .tvPlan["Conf3"].Picture = MdlCore.sDonePic + .tvPlan["Conf4"].Picture = MdlCore.sNowPic + .tvPlan["Conf4"].Selected = TRUE + END WITH ME.txtHostName.text = ME.GET_CURRENT_HOST_NAME() @@ -67,7 +67,7 @@ FOR EACH cb IN MdlNetConf.objCombos cb.Refresh NEXT - ME.frmNetDevices.Text = Space(1) & ("Network Interfaces") & Space(1) +' ME.frmNetDevices.Text = Space(1) & ("Network Interfaces") & Space(1) FMain.btnext.Enabled = TRUE END Modified: branches/iVL/FrmNetConf.form ============================================================================== --- branches/iVL/FrmNetConf.form (original) +++ branches/iVL/FrmNetConf.form Tue Nov 18 15:06:41 2008 @@ -55,7 +55,7 @@ MoveScaled(1,16,93,6) { txtPrimaryDNS TextBox txtManDNSBoxes Name = "txtPrimaryDNS" - MoveScaled(26,0,18.1429,3) + MoveScaled(26,0,18.125,3) Enabled = False Text = ("192.168.1.254") } @@ -66,7 +66,7 @@ } { txtSecDNS TextBox txtManDNSBoxes Name = "txtSecDNS" - MoveScaled(26,3,18.1429,3) + MoveScaled(26,3,18.125,3) Enabled = False Text = ("") } @@ -91,17 +91,11 @@ Expand = True Arrangement = Arrange.Horizontal { TSNetDevices TabStrip - MoveScaled(2,1,70,35) + MoveScaled(1,0,70,35) Expand = True Index = 0 Text = ("Tab 0") Index = 0 - } - { frmNetDevices Frame - MoveScaled(4,1,85,40) - Visible = False - Expand = True - Text = ("") } } } Modified: branches/iVL/installer.gambas ============================================================================== Binary files. No diff available. |