Author: M0...@gm...
Date: Wed Aug 13 06:08:29 2008
New Revision: 118
Modified:
branches/iVL/MdlLiloOsList.module
Log:
Fixed indexing problem in the lilo tabstrip when adding windows partitions.
Modified: branches/iVL/MdlLiloOsList.module
==============================================================================
--- branches/iVL/MdlLiloOsList.module (original)
+++ branches/iVL/MdlLiloOsList.module Wed Aug 13 06:08:29 2008
@@ -37,6 +37,7 @@
DIM tb AS TextBox
DIM sWinPart AS String
DIM sWinAddr AS String
+ DIM idx AS Integer
' I'd like to verify that there is actually a windows isntall there...
rather than simply listing every partition
' But I guess listing partitions will do for now
@@ -99,10 +100,11 @@
FOR i = 0 TO arrNTFS.count - 1
+ idx = FrmLilo.TabStrip1.count - 1
WITH FrmLilo.TabStrip1
.count = .count + 1
- .index = .count
+ .index = idx
.text = "Windows"
END WITH
NEXT
|