Files
HeidiSQL/source/insertfiles_progress.dfm
Ansgar Becker d6367a09fa Code cosmetic in "Insert files" dialog:
* Make sure the INSERT query is fired within a try/except block, and keep form open on any error
* Reasonably rename some component names
* Remove InsertFilesWindow(), instead cache the instance of InsertFiles in main form, like it is for most other dialogs
* Get rid of a with .. do block
* Ger rid of a weird form pointer, instead use the "Owner" property
2009-11-21 16:44:31 +00:00

89 lines
1.7 KiB
Plaintext

object frmInsertFilesProgress: TfrmInsertFilesProgress
Left = 609
Top = 147
BorderStyle = bsDialog
Caption = 'Inserting files...'
ClientHeight = 142
ClientWidth = 417
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poOwnerFormCenter
OnClose = FormClose
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 16
Top = 32
Width = 46
Height = 13
Caption = 'Filename:'
end
object Label2: TLabel
Left = 16
Top = 48
Width = 90
Height = 13
Caption = 'Current operation:'
end
object Label3: TLabel
Left = 16
Top = 16
Width = 15
Height = 13
Caption = 'Nr.'
end
object lblNumber: TLabel
Left = 131
Top = 16
Width = 47
Height = 13
Caption = 'lblNumber'
end
object lblFilename: TLabel
Left = 131
Top = 32
Width = 52
Height = 13
Caption = 'lblFilename'
end
object lblOperation: TLabel
Left = 131
Top = 48
Width = 58
Height = 13
Caption = 'lblOperation'
end
object pbReadingFiles: TProgressBar
Left = 16
Top = 72
Width = 385
Height = 17
Step = 1
TabOrder = 0
end
object btnCancel: TButton
Left = 168
Top = 104
Width = 75
Height = 25
Caption = 'Cancel'
ModalResult = 2
TabOrder = 1
OnClick = btnCancelClick
end
object timerStartReading: TTimer
Enabled = False
Interval = 1
OnTimer = ProcessFiles
Left = 24
Top = 104
end
end