04-09-2007, 11:34 PM
Fox Wrote:I think this is slightly more advanced than beginner lol.
I think I'd agree, if this is the first time you've worked on an MS project you've set yourself a pretty mean goal.
JohnY Wrote:Variable not defined:
For a = 0 To 7
The a is highlighted.
and:
ReDim BlankMap.Tile(0 To MAX_MAPX, 0 To MAX_MAPY)
Array already dimensioned?
Firstly I would
Code:
Dim a as Long
Also, I think Perfekt was being a little cryptic in his help about checking for where the SMap was first dimmed or Redimmed, but not without good reason.
The 'Array already defined' bit refers to the .Tile(etc) part of the statement, this is one of the parts of the SMaps TypeRec defined in modTypes and is probably Dimmed as a Public value in another module.
If you understood even anything in the sentence above, you may be part way to fixing the problems in your seamless mapping, if not, delve into a few books on programming. :|