0

If I want to chand the background color of all the child windows opened i would use this:

For Each chld As Form In Me.MdiChildren
   chld.BackColor = Color.LightGray
Next chld

But how can I modify the color of a textbox found on the child forms?

thanks

Remus Rigo
  • 1,454
  • 8
  • 34
  • 60

1 Answers1

0
For Each chld As frmChild In Me.MdiChildren
   chld.BackColor = Color.LightGray
Next chld

my mistake :(

Remus Rigo
  • 1,454
  • 8
  • 34
  • 60