Hello
I have a mdiParent form and two other child forms (child1, child2) are opened inside this form and child2 is opened from within child1 and I want to have a opacity child2.
This is mu Code :
I have a mdiParent form and two other child forms (child1, child2) are opened inside this form and child2 is opened from within child1 and I want to have a opacity child2.
This is mu Code :
VB.NET:
Private Sub btnMoreConsignmen_Click(sender As Object, e As EventArgs) Handles btnMoreConsignmen.Click
Me.Opacity = 0.75
frmAddElement.Show()
End Sub