Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.2 KiB

  1. <%
  2. Const L_TITLE_TEXT="Server File System"
  3. Const L_PATHNOTFOUND_TEXT = "The path was not found."
  4. Const L_TOMANYFSOBJECTS_TEXT = "This directory contains more files or folders than can be displayed."
  5. Const L_LOOKIN_TEXT = "Look in:"
  6. Const L_SLASH_TEXT = "\"
  7. Const L_DBLSLASH_TEXT = "\\"
  8. Const L_FWDSLASH_TEXT = "/"
  9. Const L_NAME_TEXT = "Name"
  10. Const L_SIZE_TEXT = "Size"
  11. Const L_TYPE_TEXT = "Type"
  12. Const L_LASTMODIFIED_TEXT = "Modified"
  13. Const L_FILENAME_TEXT = "File name:"
  14. Const L_OPEN_TEXT = " OK "
  15. Const L_CANCEL_TEXT = " Cancel "
  16. ' Resizing constants for the File System Dialog
  17. ' Dialog dimensions
  18. Const L_JSBROWSER_W = 580
  19. Const L_JSBROWSER_H = 400
  20. ' Dialog Frame Sizes
  21. Const L_BROWSERHEADFRM_NUM = 40
  22. Const L_BROWSERCOLHEADFRM_NUM = 40
  23. Const L_BROWSERMARGIN_NUM = 5
  24. Const L_BROWSERBOTTOMFRM_NUM = 75
  25. Const L_BROWSERPAGEWIDTH_NUM = 550
  26. ' File List Sizes
  27. Const L_NAMECOLUMN_NUM = 200
  28. Const L_NAMECHARS_NUM = 30
  29. Const L_SIZECOLUMN_NUM = 55
  30. Const L_TYPECOLUMN_NUM = 110
  31. Const L_TYPECHARS_NUM = 10
  32. Const L_LASTMODIFIEDCOLUMN_NUM = 185
  33. Const L_LASTMODIFIEDCHARS_NUM = 20
  34. ' Control Sizes
  35. Const L_FILENAME_NUM = 45
  36. %>