File: frmmain.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 (78 lines) | stat: -rw-r--r-- 1,729 bytes parent folder | download | duplicates (12)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
object MainForm: TMainForm
  Left = 430
  Height = 535
  Top = 226
  Width = 790
  HorzScrollBar.Page = 789
  VertScrollBar.Page = 534
  Caption = 'Paradox test program'
  ClientHeight = 535
  ClientWidth = 790
  object Label1: TLabel
    Left = 8
    Height = 13
    Top = 18
    Width = 72
    Caption = 'Paradox File'
    ParentColor = False
  end
  object FEPX: TFileNameEdit
    Left = 88
    Height = 23
    Top = 10
    Width = 582
    DialogTitle = 'Select paradox file to open'
    Filter = 'Paradox files|*.db|All files|*.*'
    ButtonWidth = 23
    NumGlyphs = 1
    Anchors = [akTop, akLeft, akRight]
    ParentColor = False
    TabOrder = 0
  end
  object Button1: TButton
    Left = 702
    Height = 25
    Top = 8
    Width = 75
    Anchors = [akTop, akRight]
    Caption = '&Open'
    OnClick = Button1Click
    TabOrder = 1
  end
  object DBNavigator1: TDBNavigator
    Left = 8
    Height = 25
    Top = 40
    Width = 241
    BevelOuter = bvNone
    ClientHeight = 25
    ClientWidth = 241
    DataSource = DSPDX
  end
  object DBGrid1: TDBGrid
    Left = 8
    Height = 461
    Top = 72
    Width = 769
    Anchors = [akTop, akLeft, akRight, akBottom]
    DataSource = DSPDX
    FixedColor = clBtnFace
    FixedHotColor = cl3DLight
    Options = [dgEditing, dgTitles, dgIndicator, dgColumnResize, dgColumnMove, dgColLines, dgRowLines, dgTabs, dgAlwaysShowSelection, dgConfirmDelete, dgCancelOnExit]
    OptionsExtra = [dgeAutoColumns, dgeCheckboxColumn]
    ParentColor = False
    TabOrder = 2
    TabStop = True
  end
  object DSPDX: TDatasource
    DataSet = PDX
    left = 264
    top = 40
  end
  object PDX: TParadox
    PXLibrary = 'libpx.so.0'
    FieldDefs = <>
    left = 304
    top = 40
  end
end