-
I'm trying to write code to tile all open windows in an MDI program. I also want to be able to make it cascade them. However, I'm not sure how to find out which windows are open, and then use that to set the properties on all of the windows.
------------------
Ryan
[email protected]
ICQ# 47799046
-
You can easily do it by using Arrange method.
frmMDI.Arrange vbTileVertical
To arrange it horizontally:
frmMDI.Arrange vbTileHorizontal
or Cascade:
frmMDI.Arrange vbCascade
Regards,
------------------
Serge
Software Developer
[email protected]
[email protected]
ICQ#: 51055819
-
Thanks, worked great!
------------------
Ryan
[email protected]
ICQ# 47799046