1object ExportProgressForm: TExportProgressForm
2  Left = 323
3  Height = 36
4  Top = 365
5  Width = 471
6  BorderIcons = [biSystemMenu, biMaximize]
7  BorderStyle = bsToolWindow
8  Caption = 'Export progress'
9  ClientHeight = 36
10  ClientWidth = 471
11  OnCreate = FormCreate
12  Position = poScreenCenter
13  LCLVersion = '0.9.27'
14  object LProgress: TLabel
15    Left = 0
16    Height = 13
17    Top = 7
18    Width = 152
19    Alignment = taRightJustify
20    AutoSize = False
21    Caption = 'Exporting %d records'
22    Layout = tlCenter
23    ParentColor = False
24  end
25  object BCancel: TButton
26    Left = 392
27    Height = 25
28    Top = 3
29    Width = 75
30    Anchors = [akTop, akRight]
31    BorderSpacing.InnerBorder = 4
32    Caption = '&Cancel'
33    TabOrder = 0
34  end
35  object PBExport: TProgressBar
36    Left = 160
37    Height = 23
38    Top = 3
39    Width = 224
40    Anchors = [akTop, akLeft, akRight]
41    Max = 1000
42    Smooth = True
43    Step = 1
44    TabOrder = 1
45  end
46end
47