PC SOFT

FOROS PROFESIONALES
WINDEVWEBDEV y WINDEV Mobile

Inicio → WINDEV 2024 → Need to be able to cycle through all open windows in the application desktop
Need to be able to cycle through all open windows in the application desktop
Iniciado por guest, 04,ago. 2015 12:36 - 2 respuestas
Publicado el 04,agosto 2015 - 12:36
Hi folks,

I need to be able to cycle through all the open windows in my windev desktop app
and return each window name.

I presume its a loop of some sort?

Thanks
Mark
Publicado el 04,agosto 2015 - 12:44
Mark

Enum is your friend


From the Help :- EnumElement
// Enumerate the windows of a project WindowName is string = EnumElement(enumWindow) // Browse all the windows WHILE WindowName <> "" // Go to the next window WindowName = EnumElement() END
Publicado el 04,agosto 2015 - 13:24
Derek,

Thank you very much, I will try that now!

Thanks
Mark