From: <cod...@go...> - 2008-08-07 19:42:05
|
Author: M0...@gm... Date: Thu Aug 7 12:41:31 2008 New Revision: 107 Modified: branches/iVL/.project branches/iVL/MdlLiloOsList.module Log: Modified: branches/iVL/.project ============================================================================== --- branches/iVL/.project (original) +++ branches/iVL/.project Thu Aug 7 12:41:31 2008 @@ -1,6 +1,6 @@ # Gambas Project File 2.0 Title=VectorLinux Installer -Startup=MdlCore +Startup=FrmLilo Version=0.0.33 Library=gb.gtk Library=gb.form Modified: branches/iVL/MdlLiloOsList.module ============================================================================== --- branches/iVL/MdlLiloOsList.module (original) +++ branches/iVL/MdlLiloOsList.module Thu Aug 7 12:41:31 2008 @@ -73,12 +73,21 @@ ELSE FrmLilo.TabStrip1[i].text = sLiloDesc END IF + + tl = NEW TextLabel(FrmLilo.TabStrip1) AS "OSIntro" + WITH tl + .text = "Operating system resides in " & arrLinux[i] + .Move(4, 4, MdlObjSizer.get_object_width(.text) + 4, 27) + END WITH + + + cbInclude = NEW CheckBox(FrmLilo.TabStrip1) AS "IncludeOS" WITH cbInclude .text = "Include this operating system in the boot menu" .Height = 27 .Value = TRUE - .Move(4, 4, MdlObjSizer.get_object_width(.text) + 24) + .Move(4, tl.top + tl.Height + 4, MdlObjSizer.get_object_width(.text) + 24) END WITH |