Message 1 of 6
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello
I would like to change all the DOCUMENTS of the TileMode to 0.
But, the following code the ActiveDocument changes only.
How can I modify the code?
Dim acdc As DocumentCollection = Application.DocumentManager
Dim acdoc As Document = acdc.MdiActiveDocument
Dim acTile As Integer = Application.GetSystemVariable("TileMode")
For Each acdoc In acdc
If acTile = 1 Then
Application.SetSystemVariable("TILEMODE", 0)
End If
Next
End Sub
Solved! Go to Solution.