| Documentation component by D.Glodt (c)2000-2001 |
Appendix A: QDriveCombobox |
|
QDriveCombobox Component
-
QDriveCombobox is a component as QCombobox with filling of present drivers.
QDriveCombobox Properties
QDriveCombobox Methods
| Method |
Type |
Description |
Params |
|
|
|
|
| GetDrives |
SUB |
Fill the box of present drivers |
0 |
QDriveCombobox Events
| Event |
Type |
Occurs when... |
Params |
|
|
|
|
QDriveCombobox Examples
$INCLUDE <QDriveComboBox.inc>
DECLARE SUB ChangeDrive
Dim Form as qform
Dim dbox as QDriveComboBox
dbox.parent = Form
dbox.GetDrives
dbox.OnChange = ChangeDrive
Form.ShowModal
SUB ChangeDrive
ChDir(dbox.Item(ItemIndex) - "[" - "]")
END SUB