Close all open forms (WM 6.5/VB.NET)

4.5k Views Asked by At

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.

1

There are 1 best solutions below

1
On

Close all forms except the one where this code is

            For i = System.Windows.Forms.Application.OpenForms.Count - 1 To 1 Step -1
                Dim form As Form = System.Windows.Forms.Application.OpenForms(i)
                form.Close()
            Next i

'Sorry for my poor english