Hi,
I have an MDI form with a Status Strip in which I have a progress bar as one of the panels. The purpose of this status bar is to show the progress when bringing up a child form.
I am using the following code to bring up the MDI form:-
Dim myForm As New frmMainMDI
myForm.ShowDialog()
On the page load of the child I am using the following code to show the progress bar but this is not showing.
frmMainMDI.stPanel5.ProgressBar.Minimum = 0
frmMainMDI.stPanel5.ProgressBar.Maximum = 15
frmMainMDI.stPanel5.ProgressBar.Show()
frmMainMDI.stPanel5.ProgressBar.Visible = True
frmMainMDI.stPanel5.ProgressBar.Value = intNoOfTimes
frmMainMDI.stPanel5.ProgressBar.PerformStep()
frmMainMDI.stPanel5.ProgressBar.Refresh()
frmMainMDI.Refresh()
Could any one please help?
Thanks
I have an MDI form with a Status Strip in which I have a progress bar as one of the panels. The purpose of this status bar is to show the progress when bringing up a child form.
I am using the following code to bring up the MDI form:-
Dim myForm As New frmMainMDI
myForm.ShowDialog()
On the page load of the child I am using the following code to show the progress bar but this is not showing.
frmMainMDI.stPanel5.ProgressBar.Minimum = 0
frmMainMDI.stPanel5.ProgressBar.Maximum = 15
frmMainMDI.stPanel5.ProgressBar.Show()
frmMainMDI.stPanel5.ProgressBar.Visible = True
frmMainMDI.stPanel5.ProgressBar.Value = intNoOfTimes
frmMainMDI.stPanel5.ProgressBar.PerformStep()
frmMainMDI.stPanel5.ProgressBar.Refresh()
frmMainMDI.Refresh()
Could any one please help?
Thanks