|
-
Dec 20th, 2002, 02:11 AM
#1
Thread Starter
Hyperactive Member
Yet another question :) **Resolved**
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
Last edited by Anjari; Dec 20th, 2002 at 03:51 AM.
-
Dec 20th, 2002, 02:24 AM
#2
Registered User
Is this what you mean?
me.parentform.statusbarpanel1........
-
Dec 20th, 2002, 02:44 AM
#3
Thread Starter
Hyperactive Member
nope
Still wont let me access the StatusBarPanel1 from the child form..
Anjari
-
Dec 20th, 2002, 03:18 AM
#4
Registered User
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"
-
Dec 20th, 2002, 03:51 AM
#5
Thread Starter
Hyperactive Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|