Hi,
I have an MDI windows form setup. On load it sets the child form(frmMainData) and opens it.
I have a progress bar on my child form that I wish to show(set to visible = false in design)
I have menu strip on my parent form.
For simplicity I have just set the command against one of the menustrip options to do the following
It does not work, there is no error the progressbar simply does not display.
That is my problem in a nutshell.
To add to this a little I actually have a sub in my child form that runs some code that I wish to execute from the menustrip and the code works fine, inside the code is some code to show the progress bar and it doesnt activate the progress bar, hence why I simplified the example above.
Thanks
Antony
I have an MDI windows form setup. On load it sets the child form(frmMainData) and opens it.
I have a progress bar on my child form that I wish to show(set to visible = false in design)
I have menu strip on my parent form.
For simplicity I have just set the command against one of the menustrip options to do the following
VB.NET:
frmMainData.ProgressBar1.Show()
It does not work, there is no error the progressbar simply does not display.
That is my problem in a nutshell.
To add to this a little I actually have a sub in my child form that runs some code that I wish to execute from the menustrip and the code works fine, inside the code is some code to show the progress bar and it doesnt activate the progress bar, hence why I simplified the example above.
Thanks
Antony