home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 January / PCWorld_2000-01_cd.bin / Komunik / News / Xnews / Xnews.exe / 0 / RCDATA / TFMREGEX / TFMREGEX.txt
Text File  |  1999-11-08  |  3KB  |  152 lines

  1. object fmRegex: TfmRegex
  2.   Left = 191
  3.   Top = 219
  4.   ActiveControl = coRegex
  5.   BorderIcons = [biSystemMenu]
  6.   BorderStyle = bsToolWindow
  7.   Caption = 'Test Regex'
  8.   ClientHeight = 296
  9.   ClientWidth = 522
  10.   Color = clBtnFace
  11.   Font.Charset = DEFAULT_CHARSET
  12.   Font.Color = clWindowText
  13.   Font.Height = -13
  14.   Font.Name = 'MS Sans Serif'
  15.   Font.Style = []
  16.   FormStyle = fsStayOnTop
  17.   OldCreateOrder = False
  18.   Position = poScreenCenter
  19.   OnCreate = FormCreate
  20.   OnDestroy = FormDestroy
  21.   PixelsPerInch = 120
  22.   TextHeight = 16
  23.   object Label1: TLabel
  24.     Left = 42
  25.     Top = 23
  26.     Width = 42
  27.     Height = 16
  28.     Caption = '&Pattern'
  29.     FocusControl = coRegex
  30.   end
  31.   object Label2: TLabel
  32.     Left = 22
  33.     Top = 63
  34.     Width = 62
  35.     Height = 16
  36.     Caption = '&Test string'
  37.     FocusControl = coStr
  38.   end
  39.   object Label3: TLabel
  40.     Left = 46
  41.     Top = 100
  42.     Width = 38
  43.     Height = 16
  44.     Caption = 'Result'
  45.   end
  46.   object Label4: TLabel
  47.     Left = 11
  48.     Top = 145
  49.     Width = 73
  50.     Height = 80
  51.     Alignment = taRightJustify
  52.     Caption = 'Matched'#13#10'string'#13#10'and'#13#10'sub-'#13#10'expressions'
  53.   end
  54.   object coRegex: TMyComboBox
  55.     Left = 104
  56.     Top = 18
  57.     Width = 402
  58.     Height = 24
  59.     Hint = 'Enter filter regex'
  60.     Ctl3D = False
  61.     DropDownCount = 10
  62.     Font.Charset = DEFAULT_CHARSET
  63.     Font.Color = clWindowText
  64.     Font.Height = -13
  65.     Font.Name = 'MS Sans Serif'
  66.     Font.Style = [fsBold]
  67.     ItemHeight = 16
  68.     ParentCtl3D = False
  69.     ParentFont = False
  70.     TabOrder = 0
  71.     RegKey = 'Software\Xnews\coRegexPattern'
  72.   end
  73.   object coStr: TMyComboBox
  74.     Left = 104
  75.     Top = 58
  76.     Width = 402
  77.     Height = 24
  78.     Hint = 'Enter filter regex'
  79.     Ctl3D = False
  80.     DropDownCount = 10
  81.     Font.Charset = DEFAULT_CHARSET
  82.     Font.Color = clWindowText
  83.     Font.Height = -13
  84.     Font.Name = 'MS Sans Serif'
  85.     Font.Style = [fsBold]
  86.     ItemHeight = 16
  87.     ParentCtl3D = False
  88.     ParentFont = False
  89.     TabOrder = 1
  90.     RegKey = 'Software\Xnews\coRegexString'
  91.   end
  92.   object bMatch: TButton
  93.     Left = 428
  94.     Top = 97
  95.     Width = 75
  96.     Height = 25
  97.     Caption = '&Match'
  98.     Default = True
  99.     TabOrder = 3
  100.     OnClick = bMatchClick
  101.   end
  102.   object Button2: TButton
  103.     Left = 428
  104.     Top = 252
  105.     Width = 75
  106.     Height = 25
  107.     Cancel = True
  108.     Caption = '&Close'
  109.     ModalResult = 1
  110.     TabOrder = 6
  111.     OnClick = Button2Click
  112.   end
  113.   object edResult: TEdit
  114.     Left = 104
  115.     Top = 97
  116.     Width = 303
  117.     Height = 24
  118.     Font.Charset = DEFAULT_CHARSET
  119.     Font.Color = clWindowText
  120.     Font.Height = -13
  121.     Font.Name = 'MS Sans Serif'
  122.     Font.Style = [fsBold]
  123.     ParentFont = False
  124.     ReadOnly = True
  125.     TabOrder = 2
  126.   end
  127.   object cbCase: TCheckBox
  128.     Left = 428
  129.     Top = 144
  130.     Width = 89
  131.     Height = 17
  132.     Caption = 'Match case'
  133.     TabOrder = 5
  134.   end
  135.   object Memo: TMemo
  136.     Left = 104
  137.     Top = 145
  138.     Width = 303
  139.     Height = 131
  140.     Font.Charset = DEFAULT_CHARSET
  141.     Font.Color = clWindowText
  142.     Font.Height = -13
  143.     Font.Name = 'MS Sans Serif'
  144.     Font.Style = []
  145.     ParentFont = False
  146.     ReadOnly = True
  147.     ScrollBars = ssBoth
  148.     TabOrder = 4
  149.     WordWrap = False
  150.   end
  151. end
  152.