Is it possible to close all the open forms in a Windows Mobile 6.5 project using VB.NET?
I found some approaches for a desktop solution, something like:
For Each f As Form In My.Application.OpenForms
f.Close()
Next
...which seems not possible in WM6.5?
Any idea or approach to do this is much appreciated.