home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2003 February / PCWFEB03.iso / software / dantzretrospect / English / Installer / Data.Cab / F4269_fileconstants.bas < prev    next >
Encoding:
BASIC Source File  |  2001-07-03  |  1.7 KB  |  35 lines

  1. Attribute VB_Name = "fileConstants"
  2. ' fileConstants.bas (fileConstants)
  3. '
  4. '     Common contstants for using the clsCommonDialog class.
  5. '
  6. ' Copyright 1999 Dantz Development Corporation
  7.  
  8.  
  9. ' Public Constants for flags
  10. Public Const OFN_READONLY = &H1                             ' checks readonly box initially
  11. Public Const OFN_OVERWRITEPROMPT = &H2                     ' warn if selected file already exists
  12. Public Const OFN_HIDEREADONLY = &H4                        ' hide readonly box
  13. Public Const OFN_NOCHANGEDIR = &H8                         ' restores current directory afterwards
  14. 'Public Const OFN_SHOWHELP = &H10                          ' Used to show help, no hooks are possible, so don't use this
  15. 'Public Const OFN_ENABLEHOOK = &H20
  16. 'Public Const OFN_ENABLETEMPLATE = &H40
  17. 'Public Const OFN_ENABLETEMPLATEHANDLE = &H80
  18. Public Const OFN_NOVALIDATE = &H100
  19. Public Const OFN_ALLOWMULTISELECT = &H200
  20. Public Const OFN_EXTENSIONDIFFERENT = &H400
  21. Public Const OFN_PATHMUSTEXIST = &H800
  22. Public Const OFN_FILEMUSTEXIST = &H1000
  23. Public Const OFN_CREATEPROMPT = &H2000
  24. Public Const OFN_SHAREAWARE = &H4000
  25. Public Const OFN_NOREADONLYRETURN = &H8000
  26. Public Const OFN_NOTESTFILECREATE = &H10000
  27. Public Const OFN_NONETWORKBUTTON = &H20000
  28. Public Const OFN_NOLONGNAMES = &H40000                    ' force no long names for 4.x modules
  29. Public Const OFN_EXPLORER = &H80000                       ' new look commdlg
  30. Public Const OFN_NODEREFERENCELINKS = &H100000
  31. Public Const OFN_LONGNAMES = &H200000                     ' force long names for 3.x modules
  32. Public Const OFN_ENABLEINCLUDENOTIFY = &H400000           ' send include message to callback
  33. Public Const OFN_ENABLESIZING = &H800000
  34.  
  35.