home *** CD-ROM | disk | FTP | other *** search
/ Chip Hitware 6 A / CHIP_HITWARE6_A.iso / internet / netVampire / _SETUP.1 / Vampire.exe / 0 / RCDATA / TLOCDIALOG / TLOCDIALOG.txt
Text File  |  1998-11-30  |  4KB  |  184 lines

  1. object LocDialog: TLocDialog
  2.   Left = 173
  3.   Top = 101
  4.   Width = 560
  5.   Height = 308
  6.   BorderIcons = [biSystemMenu, biMaximize]
  7.   Caption = 'Locations'
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   OnDestroy = FormDestroy
  16.   OnShow = FormShow
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Panel2: TPanel
  20.     Left = 0
  21.     Top = 252
  22.     Width = 552
  23.     Height = 29
  24.     Align = alBottom
  25.     BevelOuter = bvNone
  26.     TabOrder = 0
  27.     object AddBtn: TButton
  28.       Left = 12
  29.       Top = 0
  30.       Width = 55
  31.       Height = 23
  32.       Caption = '&Add'
  33.       TabOrder = 0
  34.       OnClick = AddBtnClick
  35.     end
  36.     object EditBtn: TButton
  37.       Left = 72
  38.       Top = 0
  39.       Width = 55
  40.       Height = 23
  41.       Caption = '&Edit'
  42.       TabOrder = 1
  43.       OnClick = EditBtnClick
  44.     end
  45.     object DelBtn: TButton
  46.       Left = 132
  47.       Top = 0
  48.       Width = 55
  49.       Height = 23
  50.       Caption = '&Delete'
  51.       TabOrder = 2
  52.       OnClick = DelBtnClick
  53.     end
  54.     object TestBtn: TButton
  55.       Left = 204
  56.       Top = 0
  57.       Width = 85
  58.       Height = 23
  59.       Caption = 'Start &Test'
  60.       Font.Charset = DEFAULT_CHARSET
  61.       Font.Color = clWindowText
  62.       Font.Height = -11
  63.       Font.Name = 'MS Sans Serif'
  64.       Font.Style = []
  65.       ParentFont = False
  66.       TabOrder = 3
  67.       OnClick = TestBtnClick
  68.     end
  69.     object Panel5: TPanel
  70.       Left = 424
  71.       Top = 0
  72.       Width = 128
  73.       Height = 29
  74.       Align = alRight
  75.       BevelOuter = bvNone
  76.       TabOrder = 4
  77.       object CancelBtn: TButton
  78.         Left = 60
  79.         Top = 0
  80.         Width = 55
  81.         Height = 23
  82.         Cancel = True
  83.         Caption = 'Cancel'
  84.         ModalResult = 2
  85.         TabOrder = 1
  86.         OnClick = CancelBtnClick
  87.       end
  88.       object OkBtn: TButton
  89.         Left = 0
  90.         Top = 0
  91.         Width = 55
  92.         Height = 23
  93.         Caption = 'OK'
  94.         Default = True
  95.         ModalResult = 1
  96.         TabOrder = 0
  97.         OnClick = OkBtnClick
  98.       end
  99.     end
  100.   end
  101.   object Panel4: TPanel
  102.     Left = 0
  103.     Top = 0
  104.     Width = 552
  105.     Height = 252
  106.     Align = alClient
  107.     BevelOuter = bvNone
  108.     BorderWidth = 10
  109.     TabOrder = 1
  110.     object LocListView: TAlListView
  111.       Left = 10
  112.       Top = 10
  113.       Width = 532
  114.       Height = 232
  115.       Align = alClient
  116.       OnDblClick = LocListViewDblClick
  117.       Columns = <
  118.         item
  119.           Caption = 'Location'
  120.           Width = 250
  121.         end
  122.         item
  123.           Alignment = taRightJustify
  124.           Caption = 'BPS'
  125.           Width = 60
  126.         end
  127.         item
  128.           Alignment = taRightJustify
  129.           Caption = 'Failures'
  130.         end
  131.         item
  132.           Alignment = taRightJustify
  133.           Caption = 'Delay, ms'
  134.           Width = 60
  135.         end
  136.         item
  137.           Alignment = taRightJustify
  138.           Caption = 'File Size'
  139.           Width = 80
  140.         end>
  141.       MultiSelect = True
  142.       RowSelect = True
  143.       OnChange = LocListViewChange
  144.       OnColumnClick = LocListViewColumnClick
  145.       OnCompare = LocListViewCompare
  146.       OnMouseDown = LocListViewMouseDown
  147.       PopupMenu = PopupMenu1
  148.       TabOrder = 0
  149.       SmallImages = LocImageList
  150.       StateImages = LocImageList
  151.       ResizeStyle = rsLastCol
  152.     end
  153.   end
  154.   object LocImageList: TImageList
  155.     Left = 76
  156.     Top = 116
  157.   end
  158.   object PopupMenu1: TPopupMenu
  159.     Left = 104
  160.     Top = 116
  161.     object AddLocationMNU: TMenuItem
  162.       Caption = '&Add location'
  163.       ShortCut = 45
  164.       OnClick = AddBtnClick
  165.     end
  166.     object EditLocationMNU: TMenuItem
  167.       Caption = '&Edit location'
  168.       OnClick = EditBtnClick
  169.     end
  170.     object DeleteMNU: TMenuItem
  171.       Caption = '&Delete selected'
  172.       ShortCut = 46
  173.       OnClick = DelBtnClick
  174.     end
  175.     object N1: TMenuItem
  176.       Caption = '-'
  177.     end
  178.     object TestSitesMNU: TMenuItem
  179.       Caption = 'Start &Test'
  180.       OnClick = TestBtnClick
  181.     end
  182.   end
  183. end
  184.