Symlink.dfm 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. object SymlinkDialog: TSymlinkDialog
  2. Left = 384
  3. Top = 214
  4. HelpType = htKeyword
  5. HelpKeyword = 'ui_symlink'
  6. BorderIcons = [biSystemMenu, biMinimize, biMaximize, biHelp]
  7. BorderStyle = bsDialog
  8. Caption = 'SymlinkDialog'
  9. ClientHeight = 177
  10. ClientWidth = 417
  11. Color = clBtnFace
  12. ParentFont = True
  13. Position = poOwnerFormCenter
  14. OnShow = FormShow
  15. DesignSize = (
  16. 417
  17. 177)
  18. TextHeight = 15
  19. object SymlinkGroup: TGroupBox
  20. Left = 8
  21. Top = 8
  22. Width = 401
  23. Height = 130
  24. Anchors = [akLeft, akTop, akRight, akBottom]
  25. TabOrder = 0
  26. DesignSize = (
  27. 401
  28. 130)
  29. object FileNameLabel: TLabel
  30. Left = 9
  31. Top = 9
  32. Width = 93
  33. Height = 15
  34. Caption = '&Link/shortcut file:'
  35. FocusControl = FileNameEdit
  36. end
  37. object Label1: TLabel
  38. Left = 9
  39. Top = 56
  40. Width = 116
  41. Height = 15
  42. Caption = '&Point link/shortcut to:'
  43. FocusControl = PointToEdit
  44. end
  45. object FileNameEdit: TEdit
  46. Left = 9
  47. Top = 27
  48. Width = 383
  49. Height = 23
  50. Anchors = [akLeft, akTop, akRight]
  51. MaxLength = 250
  52. TabOrder = 0
  53. OnChange = ControlChange
  54. end
  55. object PointToEdit: TEdit
  56. Left = 9
  57. Top = 74
  58. Width = 383
  59. Height = 23
  60. Anchors = [akLeft, akTop, akRight]
  61. MaxLength = 250
  62. TabOrder = 1
  63. OnChange = ControlChange
  64. end
  65. object HardLinkCheck: TCheckBox
  66. Left = 11
  67. Top = 103
  68. Width = 401
  69. Height = 17
  70. Caption = '&Hard link'
  71. TabOrder = 2
  72. OnClick = ControlChange
  73. end
  74. end
  75. object OkButton: TButton
  76. Left = 157
  77. Top = 144
  78. Width = 80
  79. Height = 25
  80. Anchors = [akRight, akBottom]
  81. Caption = 'OK'
  82. Default = True
  83. ModalResult = 1
  84. TabOrder = 1
  85. end
  86. object CancelButton: TButton
  87. Left = 243
  88. Top = 144
  89. Width = 80
  90. Height = 25
  91. Anchors = [akRight, akBottom]
  92. Cancel = True
  93. Caption = 'Cancel'
  94. ModalResult = 2
  95. TabOrder = 2
  96. end
  97. object HelpButton: TButton
  98. Left = 329
  99. Top = 144
  100. Width = 80
  101. Height = 25
  102. Anchors = [akRight, akBottom]
  103. Caption = '&Help'
  104. TabOrder = 3
  105. OnClick = HelpButtonClick
  106. end
  107. end