I have a child form that calls this
SB.Text("Sending Email")
The class for the above is
Class SB
Public Shared Sub Text(ByVal txt As String)
Dim frm As New FrmMain()
frm.SBMain.Text = txt
End Sub
End Class
SBMain is the statusbar.
Why won't the statusbar update on the main form?
Any help would be great.
Thanks
SB.Text("Sending Email")
The class for the above is
Class SB
Public Shared Sub Text(ByVal txt As String)
Dim frm As New FrmMain()
frm.SBMain.Text = txt
End Sub
End Class
SBMain is the statusbar.
Why won't the statusbar update on the main form?
Any help would be great.
Thanks