A
Access101
This code lists all the Maps in a Project. How do you get a list of all maps
in the Global.mpt
This doesn't work: Global.MapList(Items)
Function MapExist()
Dim Items As Integer, ReportNames As String
For Items = 1 To ActiveProject.MapList.Count
If ActiveProject.MapList(Items) = "GetTechSolData" Then
MapExist = True
End If
Next Items
End Function
in the Global.mpt
This doesn't work: Global.MapList(Items)
Function MapExist()
Dim Items As Integer, ReportNames As String
For Items = 1 To ActiveProject.MapList.Count
If ActiveProject.MapList(Items) = "GetTechSolData" Then
MapExist = True
End If
Next Items
End Function