Sorry guys I'm too broke to buy a book ;)
Ok,
On my child form how do i update information on another form:
For example:
I have a status bar on a main form. When someone enters a textbox I want to update statusbarpanel1...???
any help?
Anjari
Printable View
Sorry guys I'm too broke to buy a book ;)
Ok,
On my child form how do i update information on another form:
For example:
I have a status bar on a main form. When someone enters a textbox I want to update statusbarpanel1...???
any help?
Anjari
Is this what you mean?
me.parentform.statusbarpanel1........
Still wont let me access the StatusBarPanel1 from the child form..
Anjari
You gotta let .NET know that it is the Mainform you want to get to. Something like this....
Code:Dim frm As Main
frm = Me.ParentForm
frm.sbMain.Text = "Test"
Thanks!