File: mainform.lfm

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (63 lines) | stat: -rw-r--r-- 1,252 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
object Form1: TForm1
  Left = 361
  Height = 387
  Top = 162
  Width = 515
  Caption = 'TSQLScriptSample'
  ClientHeight = 387
  ClientWidth = 515
  OnCreate = FormCreate
  OnDestroy = FormDestroy
  LCLVersion = '1.3'
  object ScriptMemo: TMemo
    Left = 8
    Height = 272
    Top = 48
    Width = 496
    ScrollBars = ssAutoBoth
    TabOrder = 3
  end
  object CmdCopyDDL: TButton
    Left = 168
    Height = 25
    Top = 16
    Width = 147
    Caption = 'Copy &table creation script'
    OnClick = CmdCopyDDLClick
    TabOrder = 1
  end
  object CmdCopyDML: TButton
    Left = 357
    Height = 25
    Top = 16
    Width = 147
    Caption = 'Copy &sample data script'
    OnClick = CmdCopyDMLClick
    TabOrder = 2
  end
  object CmdRunScript: TButton
    Left = 184
    Height = 25
    Top = 336
    Width = 75
    Caption = '&Run script'
    OnClick = CmdRunScriptClick
    TabOrder = 4
  end
  object CmdOpenSQL: TButton
    Left = 8
    Height = 25
    Hint = 'Loads a file containing SQL script/SQL commands'
    Top = 16
    Width = 147
    Caption = '&Open SQL file...'
    OnClick = CmdOpenSQLClick
    ParentShowHint = False
    ShowHint = True
    TabOrder = 0
  end
  object OpenDialog1: TOpenDialog
    left = 16
    top = 336
  end
end