1
0

Symlink.dfm 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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 = 183
  10. ClientWidth = 396
  11. Color = clBtnFace
  12. ParentFont = True
  13. OldCreateOrder = False
  14. Position = poOwnerFormCenter
  15. OnShow = FormShow
  16. DesignSize = (
  17. 396
  18. 183)
  19. PixelsPerInch = 96
  20. TextHeight = 13
  21. object SymlinkGroup: TGroupBox
  22. Left = 8
  23. Top = 6
  24. Width = 380
  25. Height = 135
  26. Anchors = [akLeft, akTop, akRight, akBottom]
  27. TabOrder = 0
  28. DesignSize = (
  29. 380
  30. 135)
  31. object FileNameLabel: TLabel
  32. Left = 11
  33. Top = 16
  34. Width = 83
  35. Height = 13
  36. Caption = '&Link/shortcut file:'
  37. FocusControl = FileNameEdit
  38. end
  39. object Label1: TLabel
  40. Left = 11
  41. Top = 64
  42. Width = 103
  43. Height = 13
  44. Caption = '&Point link/shortcut to:'
  45. FocusControl = PointToEdit
  46. end
  47. object FileNameEdit: TEdit
  48. Left = 11
  49. Top = 32
  50. Width = 358
  51. Height = 21
  52. Anchors = [akLeft, akTop, akRight]
  53. MaxLength = 250
  54. TabOrder = 0
  55. OnChange = ControlChange
  56. end
  57. object PointToEdit: TEdit
  58. Left = 11
  59. Top = 80
  60. Width = 358
  61. Height = 21
  62. Anchors = [akLeft, akTop, akRight]
  63. MaxLength = 250
  64. TabOrder = 1
  65. OnChange = ControlChange
  66. end
  67. object HardLinkCheck: TCheckBox
  68. Left = 17
  69. Top = 109
  70. Width = 238
  71. Height = 17
  72. Caption = '&Hard link'
  73. TabOrder = 2
  74. OnClick = ControlChange
  75. end
  76. end
  77. object OkButton: TButton
  78. Left = 144
  79. Top = 150
  80. Width = 75
  81. Height = 25
  82. Anchors = [akRight, akBottom]
  83. Caption = 'OK'
  84. Default = True
  85. ModalResult = 1
  86. TabOrder = 1
  87. end
  88. object CancelButton: TButton
  89. Left = 228
  90. Top = 150
  91. Width = 75
  92. Height = 25
  93. Anchors = [akRight, akBottom]
  94. Cancel = True
  95. Caption = 'Cancel'
  96. ModalResult = 2
  97. TabOrder = 2
  98. end
  99. object HelpButton: TButton
  100. Left = 312
  101. Top = 150
  102. Width = 75
  103. Height = 25
  104. Anchors = [akRight, akBottom]
  105. Caption = '&Help'
  106. TabOrder = 3
  107. OnClick = HelpButtonClick
  108. end
  109. end