hondaman2003
Programmer
This is really silly so I apologize in advance. I would like to update the text in a status strip. I do not get any errors but while the application is running, the text in the status strip doesn’t change. When I insert a messagebox command after the status strip command it will show the message I want to display like this
lblToolStrip.Text = "Loading, Please Wait..."
MessageBox.Show (lblToolStrip.Text)
That will show the correct text but if I do not have that message box command in there, it’s like the program doesn’t stop to change the text till it’s ready again like this
lblToolStrip.Text = "Ready"
I’m sure this is very easy but I just don’t know how to make it show the “Loading, please wait…”
lblToolStrip.Text = "Loading, Please Wait..."
MessageBox.Show (lblToolStrip.Text)
That will show the correct text but if I do not have that message box command in there, it’s like the program doesn’t stop to change the text till it’s ready again like this
lblToolStrip.Text = "Ready"
I’m sure this is very easy but I just don’t know how to make it show the “Loading, please wait…”