-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmConfig.form
95 lines (94 loc) · 3.76 KB
/
frmConfig.form
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# Gambas Form File 2.0
{ Form Form
MoveScaled(21.5714,26,95,64)
Font = Font["Luxi Sans"]
Background = &HFFFFFF&
Text = ("")
Border = Window.None
Arrangement = Arrange.Horizontal
{ ScrollView1 ScrollView
MoveScaled(0,0,69,59)
Font = Font["Luxi Sans,12"]
Background = &HDFFFFF&
Expand = True
ScrollBar = Scroll.Vertical
{ TextLabel1 TextLabel
MoveScaled(0,0,72,50)
Font = Font["Luxi Sans,14"]
Background = &HDFFFFF&
Padding = 10
AutoResize = True
Text = ("<center><h3><b>Configuration:</b></h3></center>\n\n<b><u>Linux Loader boot manager setup:</u></b>\n<ul>\n<li><b>Master Boot Record:</b> Install Linux Loader boot manager to the master Boot Record of the bootable hard disk. This is the simplest method and the default action for most common operating systems.</li>\n<li><b>VL Boot sector:</b> Install Linux Loader boot manager to the Boot Sector of the Vector Linux install partition. This will require the following extra steps:\n<ul>\n<li>make the Vector Linux partition bootable using a partition manager.</li>\n<li>add an option to your default boot manager to boot to LiLo in this partition.</li>\n</ul>\n</li>\n<li><b>Floppy diskette:</b> Install Linux Loader boot manager to a floopy diskette in /dev/fd0 (drive A:). You can then boot to the Vector Linux install by simply booting the diskette.</li>\n<li><b>Do not install:</b> Do not install Linux Loader. Select this if you use another boot manager and know how to set up an option to boot the Vector Linux install from it.</li>\n</ul>\n\n<b><u>Other configuration:</u></b>\n<ul>\n<li><b>Config 1:</b> Other configuration selection 1.</li>\n<li><b>Config 2:</b> Other configuration selection 2.</li>\n</ul>\n")
}
}
{ VBox1 VBox
MoveScaled(64,2,29,61)
{ lblSubTitle Label
MoveScaled(0,0,29,4)
Font = Font["Luxi Sans,Bold,12"]
Background = &H0055FF&
Text = ("Additional configuration")
Alignment = Align.Center
Border = Border.Etched
}
{ Panel1 Panel
MoveScaled(0,4,29,49.5714)
Font = Font["Luxi Sans"]
Background = &H0055FF&
Expand = True
Border = Border.Etched
{ Frame1 Frame
MoveScaled(2,1,25,27)
Font = Font["Luxi Sans,14"]
Text = ("Boot manager")
{ btnMBR Button
MoveScaled(1,3,23,5)
Font = Font["Luxi Sans,14"]
Background = Color.ButtonBackground
Foreground = Color.ButtonForeground
Text = ("Master Boot Record")
}
{ btnBootSec Button
MoveScaled(1,9,23,5)
Font = Font["Luxi Sans,14"]
Background = Color.ButtonBackground
Foreground = Color.ButtonForeground
Text = ("VL Boot Sector")
}
{ btnFloppy Button
MoveScaled(1,15,23,5)
Font = Font["Luxi Sans,14"]
Background = Color.ButtonBackground
Foreground = Color.ButtonForeground
Text = ("Floppy diskette")
}
{ btnNoBM Button
MoveScaled(1,21,23,5)
Font = Font["Luxi Sans,14"]
Background = Color.ButtonBackground
Foreground = Color.ButtonForeground
Text = ("Do not install")
}
}
{ Frame2 Frame
MoveScaled(2,28,25,15)
Font = Font["Luxi Sans,14"]
Text = ("Other configuration")
{ Button5 Button
MoveScaled(1,3,23,5)
Font = Font["Luxi Sans,14"]
Background = Color.ButtonBackground
Foreground = Color.ButtonForeground
Text = ("Config 1")
}
{ Button6 Button
MoveScaled(1,9,23,5)
Font = Font["Luxi Sans,14"]
Background = Color.ButtonBackground
Foreground = Color.ButtonForeground
Text = ("Config 2")
}
}
}
}
}