home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 March / Chip_2002-03_cd1.bin / tema / thebat / download / update / thebat.exe / 0 / RCDATA / TSELECTCERTFORM / TSELECTCERTFORM.txt
Text File  |  2001-09-09  |  2KB  |  91 lines

  1. object SelectCertForm: TSelectCertForm
  2.   Left = 78
  3.   Top = 107
  4.   ActiveControl = CertList
  5.   BorderStyle = bsDialog
  6.   Caption = 'Select a Certificate'
  7.   ClientHeight = 315
  8.   ClientWidth = 604
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnActivate = FormActivate
  15.   OnClose = FormClose
  16.   OnCloseQuery = FormCloseQuery
  17.   OnCreate = FormCreate
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object lCaption: TLabel
  21.     Left = 8
  22.     Top = 8
  23.     Width = 585
  24.     Height = 41
  25.     AutoSize = False
  26.     WordWrap = True
  27.   end
  28.   object CertList: TListView
  29.     Left = 8
  30.     Top = 56
  31.     Width = 585
  32.     Height = 209
  33.     OnClick = CertListClick
  34.     OnDblClick = CertListDblClick
  35.     Columns = <
  36.       item
  37.         Caption = 'Issued To'
  38.         Width = 180
  39.       end
  40.       item
  41.         Caption = 'Issued By'
  42.         Width = 180
  43.       end
  44.       item
  45.         Caption = 'Expires'
  46.         Width = 70
  47.       end
  48.       item
  49.         Caption = 'Root'
  50.         Width = 151
  51.         WidthType = (
  52.           -2)
  53.       end>
  54.     ReadOnly = True
  55.     OnChange = CertListChange
  56.     TabOrder = 0
  57.     ViewStyle = vsReport
  58.   end
  59.   object bOK: TButton
  60.     Left = 408
  61.     Top = 280
  62.     Width = 83
  63.     Height = 25
  64.     Caption = '&OK'
  65.     Default = True
  66.     Enabled = False
  67.     ModalResult = 1
  68.     TabOrder = 2
  69.   end
  70.   object bCancel: TButton
  71.     Left = 504
  72.     Top = 280
  73.     Width = 83
  74.     Height = 25
  75.     Cancel = True
  76.     Caption = 'Cancel'
  77.     ModalResult = 2
  78.     TabOrder = 3
  79.   end
  80.   object bView: TButton
  81.     Left = 16
  82.     Top = 280
  83.     Width = 89
  84.     Height = 25
  85.     Caption = '&View...'
  86.     Enabled = False
  87.     TabOrder = 1
  88.     OnClick = bViewClick
  89.   end
  90. end
  91.