Symlink.dfm 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. Caption = '&Link/shortcut file:'
  41. FocusControl = FileNameEdit
  42. end
  43. object Label1: TLabel
  44. Left = 11
  45. Top = 64
  46. Width = 101
  47. Height = 13
  48. Caption = '&Point link/shortcut to:'
  49. FocusControl = PointToEdit
  50. end
  51. object FileNameEdit: TEdit
  52. Left = 11
  53. Top = 32
  54. Width = 358
  55. Height = 21
  56. Anchors = [akLeft, akTop, akRight]
  57. MaxLength = 250
  58. TabOrder = 0
  59. OnChange = ControlChange
  60. end
  61. object PointToEdit: TEdit
  62. Left = 11
  63. Top = 80
  64. Width = 358
  65. Height = 21
  66. Anchors = [akLeft, akTop, akRight]
  67. MaxLength = 250
  68. TabOrder = 1
  69. OnChange = ControlChange
  70. end
  71. object SymbolicCheck: TCheckBox
  72. Left = 17
  73. Top = 109
  74. Width = 238
  75. Height = 17
  76. Caption = 'Sy&mbolic link'
  77. TabOrder = 2
  78. OnClick = ControlChange
  79. end
  80. end
  81. object OkButton: TButton
  82. Left = 144
  83. Top = 150
  84. Width = 75
  85. Height = 25
  86. Anchors = [akRight, akBottom]
  87. Caption = 'OK'
  88. Default = True
  89. ModalResult = 1
  90. TabOrder = 1
  91. end
  92. object CancelButton: TButton
  93. Left = 228
  94. Top = 150
  95. Width = 75
  96. Height = 25
  97. Anchors = [akRight, akBottom]
  98. Cancel = True
  99. Caption = 'Cancel'
  100. ModalResult = 2
  101. TabOrder = 2
  102. end
  103. object HelpButton: TButton
  104. Left = 312
  105. Top = 150
  106. Width = 75
  107. Height = 25
  108. Anchors = [akRight, akBottom]
  109. Caption = '&Help'
  110. TabOrder = 3
  111. OnClick = HelpButtonClick
  112. end
  113. end