From: <cod...@go...> - 2008-10-01 20:44:38
|
Author: m0e.lnx Date: Wed Oct 1 13:43:32 2008 New Revision: 199 Modified: branches/iVL/DevLog branches/iVL/FrmPartScheme.class Log: - Fixed problem with ucase(string) in partitioning scheme window - Updated binary Modified: branches/iVL/DevLog ============================================================================== --- branches/iVL/DevLog (original) +++ branches/iVL/DevLog Wed Oct 1 13:43:32 2008 @@ -1,6 +1,2 @@ -- Fixed combobox sizes in lilo setup form. -- Moved binding mount of /proc and /dev to it's own sub in MdlConfLIlo instead of the forms open() event - This sub will get executed only if the user chooses to install/setup lilo and right before setting it up. -- FrmRootPass Eliminated message "Password is set". Will only display error message if passwords do not match. -- Fixed problem with tabstrip width in netconf window - +- Fixed problem with ucase(string) in partitioning scheme window +- Updated binary Modified: branches/iVL/FrmPartScheme.class ============================================================================== --- branches/iVL/FrmPartScheme.class (original) +++ branches/iVL/FrmPartScheme.class Wed Oct 1 13:43:32 2008 @@ -53,7 +53,7 @@ PUBLIC SUB rbUseExisting_Click() - ME.tlChoiceExp.Text = "<b>" & UCase(rbUseExisting.Text) & "</b><br><br>" & + ME.tlChoiceExp.Text = "<h3>" & rbUseExisting.Text & "</h3><br>" & ("Select this option if you already have a linux installation that you wish to overwrite or if a linux partition scheme exists in your hard disk.")& "<b>" & ("This option will overwrite any existing data in the selected partitions") & "</b><br><br>" & "<i>" & ("Use this option if you already prepared your partitions using the VectorLinux installer") & "</i> " @@ -63,7 +63,7 @@ PUBLIC SUB rbEditPartitions_Click() - ME.tlChoiceExp.Text = "<b>" & UCase(rbEditPartitions.Text) & "</b><br><br>" & + ME.tlChoiceExp.Text = "<h3>" & rbEditPartitions.Text & "</h3><br>" & ("Select this option is you wish to create, more or resize partitions in order to make room for your new VectorLinux installation.")& ("This option is the safest choice if you have other existing installations that you wish to keep.") FMain.frmNext = FrmDiskPart |