Author: M0E.lnx
Date: Fri Oct 31 11:01:57 2008
New Revision: 254
Modified:
branches/iVL/FrmSelISO.class
Log:
Fixed error in media detection
Modified: branches/iVL/FrmSelISO.class
==============================================================================
--- branches/iVL/FrmSelISO.class (original)
+++ branches/iVL/FrmSelISO.class Fri Oct 31 11:01:57 2008
@@ -69,7 +69,7 @@
ClsGlobal.sBackNav.Add(ME)
END IF
- IF lstInstallableImg.count = 1 AND lstInstallableImg.Find(("No
Installable Media Found")) <> -1 THEN
+ IF lstInstallableImg.count = 1 AND lstInstallableImg.Find(("No
Installable Media Found")) = -1 THEN
tlBanner.Text = ("Click") & Space(1) & "\'" & FMain.btnext.text & "\'"
& Space(1) & ("to begin installating") & Space(1)&
Left(FrmSelISO.lstInstallableImg.text,
InStr(FrmSelISO.lstInstallableImg.text, "/") - 4)
ELSE IF lstInstallableImg.Find(("No Installable Media Found")) <> -1 THEN
@@ -79,6 +79,7 @@
FMain.btnext.ForeColor = Color.Gray
FMain.btback.ForeColor = Color.Gray
ELSE
+ tlBanner.text = "<b>" & ("Installable media found.") & "</b>"
WITH FMain
.btback.Enabled = FALSE
.btback.ForeColor = Color.Gray
|