There is no way to do that with the ProgressBar from Windows.Forms
namespace, unless you make your own progress bar. I alway use ProgressBar
this way: set its Visible to false in design mode. Only set it to true at
runtime when I want to show progress of a process. Once the process is done,
set ProgressBar.Visible to false.