File: frafpreportcsvdata.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 (109 lines) | stat: -rw-r--r-- 2,254 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
object TCSVReportDataFrame: TTCSVReportDataFrame
  Left = 0
  Height = 283
  Top = 0
  Width = 391
  ClientHeight = 283
  ClientWidth = 391
  TabOrder = 0
  DesignLeft = 535
  DesignTop = 378
  object FEData: TFileNameEdit
    Left = 16
    Height = 27
    Top = 32
    Width = 359
    DialogTitle = 'Select a file with comma-separated data'
    DialogOptions = [ofFileMustExist, ofEnableSizing, ofViewDetail]
    Filter = 'CSV files|*.csv|Text files|*.txt|All files|*.*'
    FilterIndex = 0
    HideDirectories = False
    ButtonWidth = 23
    NumGlyphs = 1
    Anchors = [akTop, akLeft, akRight]
    MaxLength = 0
    TabOrder = 0
  end
  object LEFileName: TLabel
    Left = 16
    Height = 17
    Top = 8
    Width = 54
    Caption = 'Filename:'
    ParentColor = False
  end
  object RBFirstLineField: TRadioButton
    Left = 16
    Height = 22
    Top = 72
    Width = 162
    Caption = 'First line has field names'
    Checked = True
    TabOrder = 1
    TabStop = True
  end
  object RBUseTheseFieldNames: TRadioButton
    Left = 16
    Height = 22
    Top = 104
    Width = 188
    Caption = 'Use the following field names'
    TabOrder = 2
  end
  object MFieldNames: TMemo
    Left = 16
    Height = 113
    Top = 136
    Width = 359
    Anchors = [akTop, akLeft, akRight, akBottom]
    OnEnter = MFieldNamesEnter
    TabOrder = 3
  end
  object LExplain: TLabel
    Left = 16
    Height = 17
    Top = 256
    Width = 226
    Anchors = [akLeft, akBottom]
    Caption = '(one field per line, no special characters)'
    ParentColor = False
  end
  object EQuoteChar: TEdit
    Left = 351
    Height = 27
    Top = 76
    Width = 24
    Anchors = [akTop, akRight]
    MaxLength = 1
    TabOrder = 4
    Text = '"'
  end
  object Label1: TLabel
    Left = 278
    Height = 17
    Top = 76
    Width = 62
    Anchors = [akTop, akRight]
    Caption = 'Quote char'
    ParentColor = False
  end
  object EDelimiter: TEdit
    Left = 351
    Height = 27
    Top = 102
    Width = 24
    Anchors = [akTop, akRight]
    MaxLength = 1
    TabOrder = 5
    Text = ','
  end
  object LDelimiter: TLabel
    Left = 284
    Height = 17
    Top = 107
    Width = 56
    Anchors = [akTop, akRight]
    Caption = 'Separator'
    ParentColor = False
  end
end