File: frmselectdataset.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,208 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
56
57
58
59
60
61
62
63
object SelectSrcDatasetForm: TSelectSrcDatasetForm
  Left = 364
  Height = 282
  Top = 233
  Width = 355
  HorzScrollBar.Page = 356
  VertScrollBar.Page = 283
  BorderStyle = bsDialog
  Caption = 'Select dataset to copy from'
  ClientHeight = 282
  ClientWidth = 355
  OnCreate = FormCreate
  LCLVersion = '0.9.29'
  object CBMetaDataOnly: TCheckBox
    Left = 8
    Height = 21
    Top = 15
    Width = 147
    AllowGrayed = True
    Caption = 'Copy only metadata'
    TabOrder = 0
  end
  object LBDatasets: TListBox
    Left = 8
    Height = 204
    Top = 72
    Width = 249
    ItemHeight = 0
    OnClick = LBDatasetsClick
    TabOrder = 1
  end
  object LLBDatasets: TLabel
    Left = 8
    Height = 18
    Top = 45
    Width = 138
    Caption = '&Dataset to copy from:'
    Layout = tlCenter
    ParentColor = False
  end
  object BOK: TButton
    Left = 264
    Height = 25
    Top = 15
    Width = 85
    Caption = '&OK'
    Default = True
    Enabled = False
    ModalResult = 1
    OnClick = BOKClick
    TabOrder = 3
  end
  object BCancel: TButton
    Left = 264
    Height = 25
    Top = 48
    Width = 83
    Cancel = True
    Caption = '&Cancel'
    ModalResult = 2
    TabOrder = 2
  end
end