Delphi Stuff

Components

Units

Code

Links

  BTStatusDialog

Implements a standard status dialog that can be used in your programs. Includes status captions, progress bar, and timers.

Source Included
No Help File



Properties

Caption The dialog window's caption in the title bar.

ProgressMin
ProgressMax
ProgressPos


Access to the properties of the progress bar.

ShowProgressBar Whether or not the progress bar will be shown on the form.

ShowTimeElapsed Whether or not the time elapsed will be shown on the form.

ShowTimeStart Whether or not the time started will be shown on the form.

StatusText
StatusTextExtra
Access to the 2 status labels on the form.



Methods

Show Shows the status dialog.

Close Closes the dialog window.



Example

  dlgStatus.ShowProgressBar := False;
  dlgStatus.ShowTimeElapsed := True;
  dlgStatus.StatusText      := 'Loading file...';
  dlgStatus.Show;

  // Loop begin
    ..
    dlgStatus.StatusTextExtra := 'Reading program information section.'
    ..
    dlgStatus.StatusTextExtra := 'Reading file information section.'
    ..
    dlgStatus.StatusTextExtra := 'Reading attributes section.'
    ..
  // End loop

  dlgStatus.Close;
  


Download BTStatusDialog 1.0 (09-26-2005)
     
     
 
© 2005 Breit Technologies