My application uses both WPF windows and normal form windows, except I want to be able to detect whether or not my form is open or not then close them through my WPF window.
P.S.
Form1.ActiveForm.Close()
Doesn't seem to work, nor does:
Dim a as Form1
a.Close()
Thanks in advance.