eschulz
Newcomer
I have a form 'frmMain' with a statusbar on it with three panels and a class 'StockClass'. In frmMain I call a sub in StockClass ConvertText(). I want to update the text in the statusbar of frmMain in the ConvertText sub in StockClass.
Right now I have this code:
Thanks in advance.
Right now I have this code:
Visual Basic:
Private StockForm As New frmMain
Public Sub ConvertText()
'update status bar
StockForm.staStockProgress.Panels(2).Text = "Beginning update of stock database"
End sub
Thanks in advance.