20 pts.
 Can we change opacity of an MDI child window in VB.NET?
can we change opacity of an MDI child window in VB.Net?

Software/Hardware used:
ASKED: May 8, 2009  8:44 AM
UPDATED: December 15, 2010  11:13 PM

Answer Wiki:
Yes, that is pretty easy: <pre> Dim myForm As New Form2 myForm.Show() myForm.Opacity = 0.5 </pre>
Last Wiki Answer Submitted:  December 15, 2010  11:13 pm  by  carlosdl   63,535 pts.
All Answer Wiki Contributors:  carlosdl   63,535 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

This is not working in my project. Did you use P/Invoke or any other method. I had read on various forums saying that it is not possible to make MDI childs semi transparent.

 10 pts.