Symlink.dfm 2.2 KB

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