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

通讯编程

开发平台:

Visual Basic

  1. object Form1: TForm1
  2.   Left = 350
  3.   Top = 169
  4.   BorderStyle = bsDialog
  5.   Caption = 'Transaction Logs Reader'
  6.   ClientHeight = 405
  7.   ClientWidth = 499
  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 = 16
  22.     Top = 8
  23.     Width = 465
  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.     WordWrap = True
  31.   end
  32.   object Label2: TLabel
  33.     Left = 16
  34.     Top = 48
  35.     Width = 75
  36.     Height = 13
  37.     Caption = 'Read Period(S):'
  38.   end
  39.   object Label3: TLabel
  40.     Left = 184
  41.     Top = 80
  42.     Width = 26
  43.     Height = 13
  44.     Caption = 'Logs:'
  45.   end
  46.   object lblTimer: TLabel
  47.     Left = 416
  48.     Top = 48
  49.     Width = 62
  50.     Height = 21
  51.     Caption = '12:23:59'
  52.     Font.Charset = ANSI_CHARSET
  53.     Font.Color = clWindowText
  54.     Font.Height = -19
  55.     Font.Name = 'Times New Roman'
  56.     Font.Style = []
  57.     ParentFont = False
  58.   end
  59.   object memLogs: TMemo
  60.     Left = 176
  61.     Top = 96
  62.     Width = 305
  63.     Height = 297
  64.     Lines.Strings = (
  65.       'Memo1')
  66.     TabOrder = 0
  67.   end
  68.   object spePeriod: TSpinEdit
  69.     Left = 96
  70.     Top = 45
  71.     Width = 65
  72.     Height = 22
  73.     MaxValue = 1000
  74.     MinValue = 3
  75.     TabOrder = 1
  76.     Value = 3
  77.     OnChange = spePeriodChange
  78.   end
  79.   object btnCount: TButton
  80.     Left = 224
  81.     Top = 80
  82.     Width = 75
  83.     Height = 17
  84.     Caption = 'Count'
  85.     TabOrder = 2
  86.     OnClick = btnCountClick
  87.   end
  88.   object clbDevices: TCheckListBox
  89.     Left = 16
  90.     Top = 96
  91.     Width = 150
  92.     Height = 297
  93.     OnClickCheck = clbDevicesClickCheck
  94.     ItemHeight = 16
  95.     Style = lbOwnerDrawFixed
  96.     TabOrder = 3
  97.     OnDrawItem = clbDevicesDrawItem
  98.   end
  99.   object btnAddDevice: TButton
  100.     Left = 16
  101.     Top = 79
  102.     Width = 69
  103.     Height = 17
  104.     Caption = 'Add Device'
  105.     TabOrder = 4
  106.     OnClick = btnAddDeviceClick
  107.   end
  108.   object btnDelDevice: TButton
  109.     Left = 96
  110.     Top = 79
  111.     Width = 69
  112.     Height = 17
  113.     Caption = 'Del Device'
  114.     TabOrder = 5
  115.     OnClick = btnDelDeviceClick
  116.   end
  117.   object Timer1: TTimer
  118.     OnTimer = Timer1Timer
  119.     Left = 384
  120.     Top = 40
  121.   end
  122. end