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

Delphi控件源码

开发平台:

Delphi

  1. object FormFreeQuery: TFormFreeQuery
  2.   Left = 226
  3.   Top = 158
  4.   Width = 696
  5.   Height = 480
  6.   Caption = 'Free Query'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   OnCreate = FormCreate
  15.   PixelsPerInch = 96
  16.   TextHeight = 13
  17.   object Splitter1: TSplitter
  18.     Left = 0
  19.     Top = 122
  20.     Width = 688
  21.     Height = 3
  22.     Cursor = crVSplit
  23.     Align = alTop
  24.   end
  25.   object MemoSql: TMemo
  26.     Left = 0
  27.     Top = 33
  28.     Width = 688
  29.     Height = 89
  30.     Align = alTop
  31.     Lines.Strings = (
  32.       'select * from classes')
  33.     TabOrder = 0
  34.   end
  35.   object DBGrid1: TDBGrid
  36.     Left = 0
  37.     Top = 125
  38.     Width = 688
  39.     Height = 328
  40.     Align = alClient
  41.     DataSource = dsQueryFree
  42.     TabOrder = 1
  43.     TitleFont.Charset = DEFAULT_CHARSET
  44.     TitleFont.Color = clWindowText
  45.     TitleFont.Height = -11
  46.     TitleFont.Name = 'MS Sans Serif'
  47.     TitleFont.Style = []
  48.   end
  49.   object Panel1: TPanel
  50.     Left = 0
  51.     Top = 0
  52.     Width = 688
  53.     Height = 33
  54.     Align = alTop
  55.     TabOrder = 2
  56.     object ButtonRun: TButton
  57.       Left = 174
  58.       Top = 5
  59.       Width = 75
  60.       Height = 25
  61.       Caption = '&Run'
  62.       TabOrder = 0
  63.       OnClick = ButtonRunClick
  64.     end
  65.     object DBNavigator1: TDBNavigator
  66.       Left = 255
  67.       Top = 4
  68.       Width = 240
  69.       Height = 25
  70.       DataSource = dsQueryFree
  71.       TabOrder = 1
  72.     end
  73.     object ComboTables: TComboBox
  74.       Left = 8
  75.       Top = 8
  76.       Width = 153
  77.       Height = 21
  78.       Style = csDropDownList
  79.       ItemHeight = 13
  80.       TabOrder = 2
  81.       OnChange = ComboTablesChange
  82.     end
  83.   end
  84.   object dsQueryFree: TDataSource
  85.     DataSet = QueryFree
  86.     Left = 32
  87.     Top = 216
  88.   end
  89.   object QueryFree: TIBQuery
  90.     Database = DmMain.IBDatabase1
  91.     Transaction = IBTransaction1
  92.     BufferChunks = 1000
  93.     CachedUpdates = False
  94.     SQL.Strings = (
  95.       'select * from v_fatture_non_pagate')
  96.     Left = 32
  97.     Top = 168
  98.   end
  99.   object IBTransaction1: TIBTransaction
  100.     Active = False
  101.     DefaultDatabase = DmMain.IBDatabase1
  102.     Params.Strings = (
  103.       'concurrency'
  104.       'nowait')
  105.     Left = 96
  106.     Top = 168
  107.   end
  108. end