home *** CD-ROM | disk | FTP | other *** search
/ PC Expert 29 / Pce29cd.iso / RUNIMAGE / DELPHI40 / BIN / CORIDE40.BPL / 0 / RCDATA / TATTACHDIALOG / TATTACHDIALOG.txt
Text File  |  1998-06-16  |  3KB  |  121 lines

  1. object AttachDialog: TAttachDialog
  2.   Left = 225
  3.   Top = 130
  4.   Width = 361
  5.   Height = 334
  6.   HorzScrollBar.Increment = 31
  7.   HorzScrollBar.Visible = False
  8.   VertScrollBar.Visible = False
  9.   ActiveControl = ProcessList
  10.   BorderIcons = [biSystemMenu]
  11.   Caption = 'Attach to Process'
  12.   Color = clBtnFace
  13.   Constraints.MinHeight = 256
  14.   Constraints.MinWidth = 338
  15.   ParentFont = True
  16.   OldCreateOrder = True
  17.   Position = poDesktopCenter
  18.   OnActivate = FormActivate
  19.   OnCreate = FormCreate
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object Label1: TLabel
  23.     Left = 8
  24.     Top = 8
  25.     Width = 84
  26.     Height = 13
  27.     Caption = 'Remote &Machine:'
  28.     FocusControl = MachineName
  29.   end
  30.   object Label2: TLabel
  31.     Left = 8
  32.     Top = 48
  33.     Width = 95
  34.     Height = 13
  35.     Caption = '&Running Processes:'
  36.     FocusControl = ProcessList
  37.   end
  38.   object MachineName: TEdit
  39.     Left = 8
  40.     Top = 24
  41.     Width = 337
  42.     Height = 21
  43.     Anchors = [akLeft, akTop, akRight]
  44.     TabOrder = 0
  45.     OnChange = MachineNameChange
  46.     OnEnter = MachineNameChange
  47.     OnExit = MachineNameExit
  48.   end
  49.   object ProcessList: TListView
  50.     Left = 8
  51.     Top = 64
  52.     Width = 337
  53.     Height = 205
  54.     Anchors = [akLeft, akTop, akRight, akBottom]
  55.     Columns = <
  56.       item
  57.         Caption = 'Image Name'
  58.         Width = 100
  59.       end
  60.       item
  61.         Caption = 'PID'
  62.         Width = 75
  63.       end
  64.       item
  65.         AutoSize = True
  66.         Caption = 'Path'
  67.       end>
  68.     HotTrackStyles = []
  69.     ReadOnly = True
  70.     RowSelect = True
  71.     TabOrder = 1
  72.     ViewStyle = vsReport
  73.     OnChange = ProcessListChange
  74.     OnColumnClick = ProcessListColumnClick
  75.     OnCompare = ProcessListItemCompare
  76.   end
  77.   object HelpButton: TButton
  78.     Left = 272
  79.     Top = 277
  80.     Width = 75
  81.     Height = 25
  82.     Anchors = [akRight, akBottom]
  83.     Caption = '&Help'
  84.     TabOrder = 2
  85.     OnClick = HelpButtonClick
  86.   end
  87.   object CancelButton: TButton
  88.     Left = 192
  89.     Top = 277
  90.     Width = 75
  91.     Height = 25
  92.     Anchors = [akRight, akBottom]
  93.     Cancel = True
  94.     Caption = 'Cancel'
  95.     ModalResult = 2
  96.     TabOrder = 3
  97.   end
  98.   object AttachButton: TButton
  99.     Left = 112
  100.     Top = 277
  101.     Width = 75
  102.     Height = 25
  103.     Anchors = [akRight, akBottom]
  104.     Caption = '&Attach'
  105.     Default = True
  106.     ModalResult = 1
  107.     TabOrder = 4
  108.   end
  109.   object ConnectButton: TButton
  110.     Left = 32
  111.     Top = 277
  112.     Width = 75
  113.     Height = 25
  114.     Anchors = [akRight, akBottom]
  115.     Caption = '&Connect'
  116.     Enabled = False
  117.     TabOrder = 5
  118.     OnClick = ConnectButtonClick
  119.   end
  120. end
  121.