home *** CD-ROM | disk | FTP | other *** search
- Attribute VB_Name = "modGlobals"
- 'Integer that holds the total of regions on the
- 'image map
- Public NofRegions As Integer
-
- Public Region(100, 6)
- 'An array that holds all the information of all
- 'the regions on the image map:
- '
- 'Region(x,y)
- '
- 'x
- '-> an integer ,the index of the region
- 'It's 0 <= x <= NofRegions and there can be
- 'up to 100 regions on one image map.
- '
- 'Region(x,1) , Region(x,2) , Region(x,3) , Region(x,4)
- '-> The coordinates of the two pixels that define
- 'the rectangular region
- '
- 'Region(x,5)
- '-> A string that holds the URL that the region will
- '-> lead to
- '
- 'Region(x,6)
- '-> A string that holds the name of the frame in
- 'which the new HTML file will load in
-
-