File: unit1.lfm

package info (click to toggle)
lazarus 2.0.10%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 219,188 kB
  • sloc: pascal: 1,867,962; xml: 265,716; cpp: 56,595; sh: 3,005; java: 609; makefile: 568; perl: 297; sql: 222; ansic: 137
file content (65 lines) | stat: -rw-r--r-- 1,219 bytes parent folder | download | duplicates (6)
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
object Form1: TForm1
  Left = 290
  Height = 236
  Top = 156
  Width = 606
  Caption = 'Mouse and key input example'
  ClientHeight = 236
  ClientWidth = 606
  OnDblClick = FormDblClick
  LCLVersion = '1.7'
  Visible = False
  object StringGrid1: TStringGrid
    Left = 19
    Height = 128
    Top = 88
    Width = 347
    FixedCols = 0
    FixedRows = 0
    RowCount = 8
    TabOrder = 0
  end
  object Edit1: TEdit
    Left = 102
    Height = 27
    Top = 42
    Width = 125
    TabOrder = 1
  end
  object Button1: TButton
    Left = 378
    Height = 37
    Top = 12
    Width = 219
    Caption = 'Select cells'
    OnClick = Button1Click
    TabOrder = 2
  end
  object Button2: TButton
    Left = 378
    Height = 36
    Top = 60
    Width = 219
    Caption = 'Move to upper left corner and dblclick'
    OnClick = Button2Click
    TabOrder = 3
  end
  object Button3: TButton
    Left = 378
    Height = 37
    Top = 108
    Width = 219
    Caption = 'Press ''hello'' in Edit'
    OnClick = Button3Click
    TabOrder = 4
  end
  object Button4: TButton
    Left = 378
    Height = 37
    Top = 160
    Width = 219
    Caption = 'Scroll down/up in StringGrid'
    OnClick = Button4Click
    TabOrder = 5
  end
end