Unit1.dfm
上传用户:lzd18710
上传日期:2009-11-26
资源大小:3595k
文件大小:3k
源码类别:

通讯编程

开发平台:

Visual Basic

  1. object Form1: TForm1
  2.   Left = 297
  3.   Top = 232
  4.   BorderStyle = bsDialog
  5.   Caption = 'Transaction Logs Reader'
  6.   ClientHeight = 371
  7.   ClientWidth = 234
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   OnCloseQuery = FormCloseQuery
  16.   OnCreate = FormCreate
  17.   OnDestroy = FormDestroy
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object Label1: TLabel
  21.     Left = 240
  22.     Top = 8
  23.     Width = 241
  24.     Height = 25
  25.     AutoSize = False
  26.     Caption = 
  27.       'This program is a demo for multi-thread. It start some backgroun' +
  28.       'd work threads to read the logs of BioClock Devices periodically' +
  29.       '.'
  30.     Visible = False
  31.     WordWrap = True
  32.   end
  33.   object Label2: TLabel
  34.     Left = 208
  35.     Top = 48
  36.     Width = 75
  37.     Height = 13
  38.     Caption = 'Read Period(S):'
  39.     Visible = False
  40.   end
  41.   object Label3: TLabel
  42.     Left = 232
  43.     Top = 104
  44.     Width = 26
  45.     Height = 13
  46.     Caption = 'Logs:'
  47.     Visible = False
  48.   end
  49.   object lblTimer: TLabel
  50.     Left = 272
  51.     Top = 80
  52.     Width = 62
  53.     Height = 21
  54.     Caption = '12:23:59'
  55.     Font.Charset = ANSI_CHARSET
  56.     Font.Color = clWindowText
  57.     Font.Height = -19
  58.     Font.Name = 'Times New Roman'
  59.     Font.Style = []
  60.     ParentFont = False
  61.     Visible = False
  62.   end
  63.   object memLogs: TMemo
  64.     Left = 232
  65.     Top = 128
  66.     Width = 201
  67.     Height = 81
  68.     Lines.Strings = (
  69.       'Memo1')
  70.     TabOrder = 0
  71.     Visible = False
  72.   end
  73.   object spePeriod: TSpinEdit
  74.     Left = 288
  75.     Top = 45
  76.     Width = 65
  77.     Height = 22
  78.     MaxValue = 1000
  79.     MinValue = 3
  80.     TabOrder = 1
  81.     Value = 3
  82.     Visible = False
  83.     OnChange = spePeriodChange
  84.   end
  85.   object btnCount: TButton
  86.     Left = 272
  87.     Top = 104
  88.     Width = 75
  89.     Height = 17
  90.     Caption = 'Count'
  91.     TabOrder = 2
  92.     Visible = False
  93.     OnClick = btnCountClick
  94.   end
  95.   object clbDevices: TCheckListBox
  96.     Left = 24
  97.     Top = 56
  98.     Width = 185
  99.     Height = 297
  100.     OnClickCheck = clbDevicesClickCheck
  101.     ItemHeight = 16
  102.     Style = lbOwnerDrawFixed
  103.     TabOrder = 3
  104.     OnDrawItem = clbDevicesDrawItem
  105.   end
  106.   object btnAddDevice: TButton
  107.     Left = 40
  108.     Top = 32
  109.     Width = 69
  110.     Height = 24
  111.     Caption = 'Add Device'
  112.     TabOrder = 4
  113.     OnClick = btnAddDeviceClick
  114.   end
  115.   object btnDelDevice: TButton
  116.     Left = 120
  117.     Top = 32
  118.     Width = 69
  119.     Height = 24
  120.     Caption = 'Del Device'
  121.     TabOrder = 5
  122.     OnClick = btnDelDeviceClick
  123.   end
  124.   object CheckBox1: TCheckBox
  125.     Left = 16
  126.     Top = 8
  127.     Width = 145
  128.     Height = 17
  129.     Caption = 'Sync time when  start'
  130.     TabOrder = 6
  131.     OnClick = CheckBox1Click
  132.   end
  133.   object Timer1: TTimer
  134.     Enabled = False
  135.     OnTimer = Timer1Timer
  136.     Left = 240
  137.     Top = 72
  138.   end
  139. end