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

  1. object CertExportFormatForm: TCertExportFormatForm
  2.   Left = 200
  3.   Top = 108
  4.   BorderStyle = bsDialog
  5.   Caption = 'Export File Format'
  6.   ClientHeight = 235
  7.   ClientWidth = 451
  8.   Font.Color = clWindowText
  9.   Font.Height = -11
  10.   Font.Name = 'MS Sans Serif'
  11.   Font.Style = []
  12.   OnActivate = FormActivate
  13.   OnClose = FormClose
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object lSelect: TLabel
  17.     Left = 16
  18.     Top = 16
  19.     Width = 158
  20.     Height = 13
  21.     Caption = 'Select the format you want to use'
  22.   end
  23.   object rbBinCER: TRadioButton
  24.     Left = 16
  25.     Top = 88
  26.     Width = 430
  27.     Height = 17
  28.     Caption = '&DER encoded binary X.509 (.CER)'
  29.     TabOrder = 2
  30.     OnClick = DoClick
  31.   end
  32.   object rbBase64CER: TRadioButton
  33.     Left = 16
  34.     Top = 112
  35.     Width = 430
  36.     Height = 17
  37.     Caption = 'Ba&se-64 encoded X.509 (.CER)'
  38.     TabOrder = 3
  39.     OnClick = DoClick
  40.   end
  41.   object rbPFX: TRadioButton
  42.     Left = 16
  43.     Top = 40
  44.     Width = 430
  45.     Height = 17
  46.     Caption = 'Personal Information Exchange - PKCS #12 (.PFX)'
  47.     Checked = True
  48.     TabOrder = 0
  49.     TabStop = True
  50.     OnClick = DoClick
  51.   end
  52.   object rbPKCS7: TRadioButton
  53.     Left = 16
  54.     Top = 64
  55.     Width = 430
  56.     Height = 17
  57.     Caption = 'Cryptographic Message Syntax Standard - PKCS #7 (.P7B)'
  58.     TabOrder = 1
  59.     OnClick = DoClick
  60.   end
  61.   object cbFullPath: TCheckBox
  62.     Left = 16
  63.     Top = 144
  64.     Width = 430
  65.     Height = 17
  66.     Caption = 
  67.       'Include all the certificates in the certification path if possib' +
  68.       'le '
  69.     TabOrder = 4
  70.     OnClick = DoClick
  71.   end
  72.   object cbExportPrivate: TCheckBox
  73.     Left = 16
  74.     Top = 168
  75.     Width = 430
  76.     Height = 17
  77.     Caption = 'Export private keys as well'
  78.     TabOrder = 5
  79.     OnClick = DoClick
  80.   end
  81.   object bOK: TButton
  82.     Left = 200
  83.     Top = 200
  84.     Width = 75
  85.     Height = 25
  86.     Caption = 'OK'
  87.     Default = True
  88.     ModalResult = 1
  89.     TabOrder = 6
  90.   end
  91.   object bCancel: TButton
  92.     Left = 288
  93.     Top = 200
  94.     Width = 75
  95.     Height = 25
  96.     Cancel = True
  97.     Caption = 'Cancel'
  98.     ModalResult = 2
  99.     TabOrder = 7
  100.   end
  101. end
  102.