Page 2 of 2

Re: Enable Disable Dropshadow With Checkbox

Posted: Sat Jul 07, 2012 3:43 pm
by MrAksel
What do you mean Mike? Add the code below to the form you want to change the shadow state. In Form2 you can then do "Form1.SetShadowEnabled(True)" (or false)
Code: Select all
Public Sub SetShadowEnabled(ByVal EnableShadow As Boolean)
   Shadow = EnableShadow
   RecreateHandle()
End Sub