Configure Object |
Remarks: |
The object represents the FileCataloger program' setting at running. |
Property:
| Name |
Description |
| CDRomRootFrom |
a integer value indicating the source root path for cdrom catalog item. |
| MoveDiskRootFrom |
a integer value indicating the source root path for move disk catalog item. |
|
Functions:
| Name |
Description |
| Save |
Save the current the running setting. |
|
example: |
Const PathSource_ParameterBar = 0
Const PathSource_ImportLocation = 1
Const PathSource_None = 2
Configure.Save
Dim CDRomRootFrom
Select Case Configure.CDRomRootFrom
Case PathSource_ParameterBar
CDRomRootFrom = "ParameterBar"
Case PathSource_ImportLocation
CDRomRootFrom = "ImportLocation"
Case PathSource_None
CDRomRootFrom = "None"
End Select
Dim MoveDiskRootFrom
Select Case Configure.MoveDiskRootFrom
Case PathSource_ParameterBar
MoveDiskRootFrom = "ParameterBar"
Case PathSource_ImportLocation
MoveDiskRootFrom = "ImportLocation"
Case PathSource_None
MoveDiskRootFrom = "None"
End Select
Dim Msg
Msg = "Configure.CDRomRootFrom is " & CDRomRootFrom & vbCrLf
Msg = Msg & "Configure.CurMoveDisk is " & MoveDiskRootFrom & vbCrLf
Msg = Msg & "Configure.Save is ok."
MsgBox Msg |
| |
|
See Also: |
Application Object
MainWindow Object
Catalog Database Object
|