Results 1 to 5 of 5

Thread: Yet another question :) **Resolved**

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Dec 2002
    Location
    Canton, GA
    Posts
    487

    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.

  2. #2
    Registered User
    Join Date
    Nov 2002
    Location
    Växjö, Sweden
    Posts
    314
    Is this what you mean?

    me.parentform.statusbarpanel1........

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Dec 2002
    Location
    Canton, GA
    Posts
    487

    nope

    Still wont let me access the StatusBarPanel1 from the child form..

    Anjari

  4. #4
    Registered User
    Join Date
    Nov 2002
    Location
    Växjö, Sweden
    Posts
    314
    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"

  5. #5

    Thread Starter
    Hyperactive Member
    Join Date
    Dec 2002
    Location
    Canton, GA
    Posts
    487

    got it..

    Thanks!

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width