home *** CD-ROM | disk | FTP | other *** search
/ Delphi 5 for Professionals / DELPHI5.iso / Runimage / Delphi50 / Demos / Db / Csdemos / frmmain.dfm / frmmain.txt
Encoding:
Text File  |  1999-08-11  |  1.7 KB  |  79 lines

  1. object FrmLauncher: TFrmLauncher
  2.   Left = 195
  3.   Top = 112
  4.   BorderIcons = [biSystemMenu, biMinimize]
  5.   BorderStyle = bsSingle
  6.   Caption = 'Client/Server Concepts'
  7.   ClientHeight = 248
  8.   ClientWidth = 240
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clBlack
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   Position = poScreenCenter
  15.   ShowHint = True
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object BtnTrigg: TButton
  19.     Left = 8
  20.     Top = 48
  21.     Width = 225
  22.     Height = 34
  23.     Hint = 'Shows a trigger in action'
  24.     Caption = 'Salary Change &Trigger Demo'
  25.     TabOrder = 1
  26.     OnClick = BtnTriggClick
  27.   end
  28.   object BtnViews: TButton
  29.     Left = 8
  30.     Top = 8
  31.     Width = 225
  32.     Height = 34
  33.     Hint = 'Demonstrates that views are treated like tables'
  34.     Caption = 'Show a &View in action'
  35.     TabOrder = 0
  36.     OnClick = BtnViewsClick
  37.   end
  38.   object BtnQrySP: TButton
  39.     Left = 8
  40.     Top = 88
  41.     Width = 225
  42.     Height = 34
  43.     Hint = 'Shows a query procedure in action'
  44.     Caption = '&Query Stored Procedure Demo'
  45.     TabOrder = 2
  46.     OnClick = BtnQrySPClick
  47.   end
  48.   object BtnExecSP: TButton
  49.     Left = 8
  50.     Top = 128
  51.     Width = 225
  52.     Height = 34
  53.     Hint = 'Shows an executable procedure in action'
  54.     Caption = '&Executable Stored Procedure Demo'
  55.     TabOrder = 3
  56.     OnClick = BtnExecSPClick
  57.   end
  58.   object BtnClose: TButton
  59.     Left = 8
  60.     Top = 208
  61.     Width = 225
  62.     Height = 34
  63.     Hint = 'Exits this sample'
  64.     Caption = '&Exit'
  65.     TabOrder = 5
  66.     OnClick = BtnCloseClick
  67.   end
  68.   object BtnTrans: TButton
  69.     Left = 8
  70.     Top = 168
  71.     Width = 225
  72.     Height = 34
  73.     Hint = 'Shows simple transaction handling'
  74.     Caption = 'T&ransaction Editing Demo'
  75.     TabOrder = 4
  76.     OnClick = BtnTransClick
  77.   end
  78. end
  79.