Interact between MDI window and parent Window!

  • Thread starter Thread starter Alex
  • Start date Start date
A

Alex

Hello!
Does anyone have source code about interacting between MDI window and Parent
Window. I am building a simple Chat-application, That has a public room and
all users can chat privately, so I must have some MDI window that services
private chat.
Thanks
 
Alex said:
Does anyone have source code about interacting between MDI window and
Parent
Window. I am building a simple Chat-application, That has a public room
and
all users can chat privately, so I must have some MDI window that services
private chat.

Inside your MDI child's code:

\\\
DirectCast(Me.MdiParent, MainForm).StatusBar1.Text = "Private Chat"
///
 
Back
Top