From: <cod...@go...> - 2008-08-30 05:27:48
|
Author: uelsk8s Date: Fri Aug 29 22:26:55 2008 New Revision: 156 Modified: branches/iVL/FMain.class branches/iVL/FrmLilo.class branches/iVL/MdlLiloOsList.module Log: Timezone list now populating now to make it do something Modified: branches/iVL/FMain.class ============================================================================== --- branches/iVL/FMain.class (original) +++ branches/iVL/FMain.class Fri Aug 29 22:26:55 2008 @@ -255,7 +255,8 @@ frmNext = FrmZoneSet CASE "FrmZoneSet" - MdlZoneSet.TIME_ZONES + 'MdlZoneSet.TIME_ZONES() + frmNext = FrmSelISO END SELECT Modified: branches/iVL/FrmLilo.class ============================================================================== --- branches/iVL/FrmLilo.class (original) +++ branches/iVL/FrmLilo.class Fri Aug 29 22:26:55 2008 @@ -44,7 +44,6 @@ FBResolution_Click() MdlLiloOsList.list_boot_options() ME.TabStrip1.Index = 0 -'ME.TabStrip1.Linux.Click() 'set the focus to the Linux tab HOW? ME.cbDefBoot.Text = "Linux" END Modified: branches/iVL/MdlLiloOsList.module ============================================================================== --- branches/iVL/MdlLiloOsList.module (original) +++ branches/iVL/MdlLiloOsList.module Fri Aug 29 22:26:55 2008 @@ -358,7 +358,7 @@ ' Add an option to boot the recently installed OS to CLI mode 'ClsPartSel.sRoot = "/dev/sdb" ' for testing only - IF sLiloDesc LIKE "Vector" THEN + 'IF sLiloDesc LIKE "Vector" THEN IF arrLinux[i] = ClsPartSel.sRoot THEN cbInclude = NEW CheckBox(FrmLilo.TabStrip1) AS "VlCliOption" WITH cbInclude @@ -372,18 +372,11 @@ END WITH ME.iVlTag = FrmLilo.TabStrip1.Index - 1 END IF - - END IF - - - + 'END IF END WITH ' end jacking with the tabstrip itself - - - END IF - - SHELL "umount /tmp/lilo_tmp" WAIT - END IF + END IF + SHELL "umount /tmp/lilo_tmp" WAIT + END IF NEXT FOR i = 0 TO FrmLilo.TabStrip1.Count - 1 |