| 77 |
|
datlinks: TDatLinks; |
| 78 |
|
OniImage: TOniImage; |
| 79 |
|
levelid: LongWord; |
| 80 |
+ |
timeformat: TFormatSettings; |
| 81 |
|
const |
| 82 |
|
steps: Byte = 3; |
| 83 |
|
|
| 100 |
|
// FILE EXISTS CHECK FÜR DAT/RAW/SEP!!! |
| 101 |
|
// |
| 102 |
|
|
| 103 |
+ |
timeformat.LongTimeFormat := 'hh:nn:ss'; |
| 104 |
+ |
timeformat.TimeSeparator := ':'; |
| 105 |
+ |
|
| 106 |
|
if not CreateDataConnection(Source, ODB_ADB) then |
| 107 |
|
begin |
| 108 |
|
ShowMessage('Could not connect to .oldb-file'); |
| 298 |
|
progress.Position := progress.Max; |
| 299 |
|
lbl_progress.Caption := 'Files done: ' + IntToStr(progress.Max) + '/' + |
| 300 |
|
IntToStr(progress.Max); |
| 301 |
< |
lbl_estimation.Caption := 'FINISHED (duration: ' + TimeToStr(Time - absolutebegintime) + ')'; |
| 301 |
> |
lbl_estimation.Caption := 'FINISHED (duration: ' + TimeToStr(Time - absolutebegintime, timeformat) + ')'; |
| 302 |
|
|
| 303 |
|
DoStep('FIN'); |
| 304 |
|
btn_abortok.Caption := '&OK'; |
| 342 |
|
rawlist: TRawList; |
| 343 |
|
extlist: TExtensionsMap; |
| 344 |
|
fileinfo: TFileInfo; |
| 345 |
+ |
timeformat: TFormatSettings; |
| 346 |
|
const |
| 347 |
|
steps: Byte = 4; |
| 348 |
|
|
| 546 |
|
progress.Position := progress.Max; |
| 547 |
|
lbl_progress.Caption := 'Files done: ' + IntToStr(progress.Max) + '/' + |
| 548 |
|
IntToStr(progress.Max); |
| 549 |
< |
lbl_estimation.Caption := 'FINISHED (duration: ' + TimeToStr(Time - absolutebegintime) + ')'; |
| 549 |
> |
|
| 550 |
> |
timeformat.LongTimeFormat := 'hh:nn:ss'; |
| 551 |
> |
timeformat.TimeSeparator := ':'; |
| 552 |
> |
lbl_estimation.Caption := 'FINISHED (duration: ' + TimeToStr(Time - absolutebegintime, timeformat) + ')'; |
| 553 |
|
|
| 554 |
|
DoStep('FIN'); |
| 555 |
|
btn_abortok.Caption := '&OK'; |