TransProcessingU1.dfm
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:2k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. object Form1: TForm1
  2.   Left = 192
  3.   Top = 125
  4.   Width = 651
  5.   Height = 319
  6.   Caption = 'Transaction Processing'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -13
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   PixelsPerInch = 120
  15.   TextHeight = 16
  16.   object Panel1: TPanel
  17.     Left = 0
  18.     Top = 0
  19.     Width = 643
  20.     Height = 41
  21.     Align = alTop
  22.     BevelOuter = bvNone
  23.     TabOrder = 0
  24.     object Button1: TButton
  25.       Left = 8
  26.       Top = 8
  27.       Width = 89
  28.       Height = 25
  29.       Caption = 'BeginTrans'
  30.       TabOrder = 0
  31.       OnClick = Button1Click
  32.     end
  33.     object Button2: TButton
  34.       Left = 136
  35.       Top = 8
  36.       Width = 89
  37.       Height = 25
  38.       Caption = 'CommitTrans'
  39.       TabOrder = 1
  40.       OnClick = Button2Click
  41.     end
  42.     object Button3: TButton
  43.       Left = 256
  44.       Top = 8
  45.       Width = 97
  46.       Height = 25
  47.       Caption = 'RollbackTrans'
  48.       TabOrder = 2
  49.       OnClick = Button3Click
  50.     end
  51.   end
  52.   object DBGrid1: TDBGrid
  53.     Left = 0
  54.     Top = 41
  55.     Width = 643
  56.     Height = 245
  57.     Align = alClient
  58.     DataSource = DataSource1
  59.     TabOrder = 1
  60.     TitleFont.Charset = DEFAULT_CHARSET
  61.     TitleFont.Color = clWindowText
  62.     TitleFont.Height = -13
  63.     TitleFont.Name = 'MS Sans Serif'
  64.     TitleFont.Style = []
  65.   end
  66.   object ADOConnection1: TADOConnection
  67.     Connected = True
  68.     ConnectionString = 
  69.       'Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:program filesmi' +
  70.       'crosoft officeofficesamplesnorthwind.mdb;Persist Security Inf' +
  71.       'o=False'
  72.     LoginPrompt = False
  73.     Mode = cmShareDenyNone
  74.     Provider = 'Microsoft.Jet.OLEDB.4.0'
  75.     Left = 160
  76.     Top = 120
  77.   end
  78.   object ADOTable1: TADOTable
  79.     Active = True
  80.     Connection = ADOConnection1
  81.     CursorType = ctStatic
  82.     TableName = 'Customers'
  83.     Left = 288
  84.     Top = 120
  85.   end
  86.   object DataSource1: TDataSource
  87.     DataSet = ADOTable1
  88.     Left = 392
  89.     Top = 120
  90.   end
  91. end