I'd check to see if an exception is thrown. If one is thrown, the
control is going to swallow it up. My guess is that you don't have a panel
set up correctly.
--
- Nicholas Paldino [.NET/C# MVP]
-
(E-Mail Removed)
"Water Cooler v2" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Dang, my status bar text doesn't update. It's got just one panel and it
> always shows the text I set at design time. ("Ready").
>
> All I am doing is:
>
>
> Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles btnOK.Click
>
> 'Do stuff
>
> sbr.Panels(0).Text = "The update has been saved."
>
> End Sub
>