www.pudn.com > cvery_33427984.rar > Main.dfm


object Form1: TForm1 
  Left = 196 
  Top = 81 
  Width = 544 
  Height = 404 
  Caption = 'Test CRC16/CRC8/CRC32 (电猫工作室http://emouze.com)' 
  Color = clBtnFace 
  Font.Charset = GB2312_CHARSET 
  Font.Color = clWindowText 
  Font.Height = -12 
  Font.Name = '宋体' 
  Font.Style = [] 
  OldCreateOrder = False 
  Position = poDesktopCenter 
  OnCreate = FormCreate 
  PixelsPerInch = 96 
  TextHeight = 12 
  object Label1: TLabel 
    Left = 16 
    Top = 12 
    Width = 60 
    Height = 12 
    Caption = '16位多项式' 
  end 
  object Label2: TLabel 
    Left = 16 
    Top = 36 
    Width = 54 
    Height = 12 
    Caption = '8位多项式' 
  end 
  object Label3: TLabel 
    Left = 16 
    Top = 60 
    Width = 60 
    Height = 12 
    Caption = '32位多项式' 
  end 
  object Memo1: TMemo 
    Left = 16 
    Top = 88 
    Width = 505 
    Height = 276 
    Anchors = [akLeft, akTop, akRight, akBottom] 
    Font.Charset = GB2312_CHARSET 
    Font.Color = clWindowText 
    Font.Height = -12 
    Font.Name = '宋体' 
    Font.Style = [] 
    ParentFont = False 
    ScrollBars = ssVertical 
    TabOrder = 12 
  end 
  object TestCRC16Btn: TButton 
    Left = 168 
    Top = 8 
    Width = 75 
    Height = 22 
    Caption = '测试CRC16' 
    TabOrder = 1 
    OnClick = TestCRC16BtnClick 
  end 
  object CalCRC16Btn: TButton 
    Left = 304 
    Top = 8 
    Width = 75 
    Height = 22 
    Caption = '计算CRC16' 
    TabOrder = 6 
    OnClick = CalCRC16BtnClick 
  end 
  object TestCRC8Btn: TButton 
    Left = 168 
    Top = 32 
    Width = 75 
    Height = 22 
    Caption = '测试CRC8' 
    TabOrder = 3 
    OnClick = TestCRC8BtnClick 
  end 
  object CalCRC8Btn: TButton 
    Left = 304 
    Top = 32 
    Width = 75 
    Height = 22 
    Caption = '计算CRC8' 
    TabOrder = 8 
    OnClick = CalCRC8BtnClick 
  end 
  object GenPoly16Edit: TEdit 
    Left = 88 
    Top = 8 
    Width = 65 
    Height = 20 
    TabOrder = 0 
    Text = '$1021' 
  end 
  object GenPoly8Edit: TEdit 
    Left = 88 
    Top = 32 
    Width = 65 
    Height = 20 
    TabOrder = 2 
    Text = '$8C' 
  end 
  object GenPoly32Edit: TEdit 
    Left = 88 
    Top = 56 
    Width = 65 
    Height = 20 
    TabOrder = 4 
    Text = '$EDB88320' 
  end 
  object TestCRC32Btn: TButton 
    Left = 168 
    Top = 56 
    Width = 75 
    Height = 22 
    Caption = '测试CRC32' 
    TabOrder = 5 
    OnClick = TestCRC32BtnClick 
  end 
  object CalCRC32Btn: TButton 
    Left = 304 
    Top = 56 
    Width = 75 
    Height = 22 
    Caption = '计算CRC32' 
    TabOrder = 10 
    OnClick = CalCRC32BtnClick 
  end 
  object CRC16ResultEdit: TEdit 
    Left = 392 
    Top = 8 
    Width = 121 
    Height = 20 
    TabOrder = 7 
  end 
  object CRC8ResultEdit: TEdit 
    Left = 392 
    Top = 32 
    Width = 121 
    Height = 20 
    TabOrder = 9 
  end 
  object CRC32ResultEdit: TEdit 
    Left = 392 
    Top = 56 
    Width = 121 
    Height = 20 
    TabOrder = 11 
  end 
end