Symlink.dfm 2.5 KB

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