' MessageBox type constants
const mtWarning      = 0
const mtError        = 1
const mtInformation  = 2
const mtConfirmation = 3
const mtCustom       = 4


' MessageBox buttons constants
const mbYes         =  0
const mbYesToAll    =  1
const mbNo          =  2
const mbNoToAll     =  3
const mbOk          =  4
const mbOkToAll     =  5
const mbEdit        =  6
const mbEditToAll   =  7
const mbCancel      =  8
const mbAbort       =  9
const mbRetry       = 10
const mbIgnore      = 11
const mbIgnoreToAll = 12
const mbAll         = 13
const mbHelp        = 14


' MessageBox results
const mrNone        =   0
const mrOk          =   1
const mrCancel      =   2
const mrAbort       =   3
const mrRetry       =   4
const mrIgnore      =   5
const mrYes         =   6
const mrNo          =   7
const mrAll         =   8
const mrNoToAll     =   9
const mrYesToAll    =  10
const mrOkToAll     = 110
const mrIgnoreToAll = 111


' Common Dialog (Open/Save) constants
const cdlOFNOverwritePrompt    = &H0002
const cdlOFNHideReadOnly       = &H0004
const cdlOFNNoChangeDir        = &H0008
const cdlOFNAllowMultiselect   = &H0200
const cdlOFNExtensionDifferent = &H0400
const cdlOFNPathMustExist      = &H0800
const cdlOFNFileMustExist      = &H1000
const cdlOFNCreatePrompt       = &H2000
const cdlOFNNoReadOnlyReturn   = &H8000


' Tree nodes placements
'const NodePos_InsertBefore   = 0
'const NodePos_InsertAfter    = 1
'const NodePos_AddChildFirst  = 2
'const NodePos_AddChildLast   = 3

' Drag&Drop constants
'const DragDrop_No            = 0
'const DragDrop_Copy          = 1
'const DragDrop_Move          = 2
'const DragDrop_JustMove      = 3
'const DragDrop_JustCopy      = 4