home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic 4 Unleashed / Visual_Basic_4_Unleashed_SAMS_Publishing_1995.iso / european / tx.ba_ / tx.ba
Text File  |  1994-09-21  |  1KB  |  43 lines

  1. ' Global TX constants
  2. Global Const TF_FIELDFRAMED = &H4
  3. Global Const TF_DELETEABLE = &H8000
  4. Global Const TF_CHANGEABLE = &H4000
  5. Global Const TF_FIELDUNFRAMED = &H2000
  6.  
  7. ' File types
  8. Global Const TXM_FILE = 1
  9. Global Const RTF_FILE = 2
  10.  
  11. ' Clip property
  12. Global Const CLIP_CUT = 1
  13. Global Const CLIP_COPY = 2
  14. Global Const CLIP_PASTE = 3
  15. Global Const CLIP_CLEAR = 4
  16.  
  17. ' Color values
  18. Global Const COLOR_TEXT = 1
  19. Global Const COLOR_BACK = 2
  20.  
  21. ' Ruler scale values
  22. Global Const SCALE_MM = 0
  23. Global Const SCALE_CM = 1
  24. Global Const SCALE_INCH = 2
  25.  
  26. ' Error event messages
  27. Global Const EVERR_GLOBALMEM = "Insufficient global memory."
  28. Global Const EVERR_LOCALMEM = "Insufficient local memory."
  29. Global Const EVERR_INTERNAL = "Internal error."
  30. Global Const EVERR_FILE = "File read/write error."
  31. Global Const EVERR_64K_TEXT = "Item larger than 64 KB."
  32. Global Const EVERR_CLIPBOARD = "Clipboard operation failed."
  33. Global Const EVERR_MODULE = "Module not found."
  34. Global Const EVERR_FORMAT = "Unknown format."
  35. Global Const EVERR_TXT_FORMAT = "Unknown format."
  36. Global Const EVERR_TXT_TOKEN = "Illegal token."
  37. Global Const EVERR_TXT_READ = "File read error."
  38. Global Const EVERR_TXT_WRITE = "File write error."
  39. Global Const EVERR_TXT_OPEN = "File cannot be opened."
  40. Global Const EVERR_TXT_SIZE = "File contents too large."
  41. Global Const EVERR_TXT_UNSUPPORTED = "Unsupported text format."
  42.  
  43.