File: frmexample.lfm

package info (click to toggle)
lazarus 4.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 275,760 kB
  • sloc: pascal: 2,341,904; xml: 509,420; makefile: 348,726; cpp: 93,608; sh: 3,387; java: 609; perl: 297; sql: 222; ansic: 137
file content (55 lines) | stat: -rw-r--r-- 1,266 bytes parent folder | download | duplicates (11)
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
object ExampleForm: TExampleForm
  Left = 387
  Height = 136
  Top = 311
  Width = 432
  HorzScrollBar.Page = 403
  VertScrollBar.Page = 84
  ActiveControl = EFileName
  Caption = 'Example file'
  ClientHeight = 136
  ClientWidth = 432
  OnCloseQuery = ExampleFormCloseQuery
  LCLVersion = '0.9.29'
  object LEFileName: TLabel
    AnchorSideLeft.Control = Owner
    AnchorSideTop.Control = Owner
    Left = 6
    Height = 18
    Top = 6
    Width = 74
    BorderSpacing.Around = 6
    Caption = '&Filename'
    Color = clBtnFace
    FocusControl = EFileName
    Layout = tlCenter
    Transparent = False
  end
  object EFileName: TFileNameEdit
    AnchorSideLeft.Control = LEFileName
    AnchorSideTop.Control = LEFileName
    AnchorSideTop.Side = asrBottom
    Left = 6
    Height = 29
    Top = 30
    Width = 394
    DialogTitle = 'Select an example file'
    DialogOptions = []
    Filter = 'Pascal files|*.pp;*.pas|All files|*.*'
    FilterIndex = 0
    HideDirectories = False
    ButtonWidth = 23
    NumGlyphs = 1
    Anchors = [akTop, akLeft, akRight]
    MaxLength = 0
    TabOrder = 0
  end
  object ButtonPanel1: TButtonPanel
    Left = 6
    Height = 40
    Top = 90
    Width = 420
    TabOrder = 1
    ShowButtons = [pbOK, pbCancel, pbHelp]
  end
end