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

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