Hi!
I'm looking for help for a curios problem.
To generate a couple of maps - each with different locations - I have the following loop in Access VBA:
While
Delete Dataset
Fill a table with locations
DataSets.ImportData (the table)
save the map
Wend
The problem is, that the Mappoint dataset always misses one recordset. It works fine, if i put a Stop in the code and continue manually:
While
Delete Dataset
Fill a table with locations
STOP
DataSets.ImportData (the table)
save the map
Wend
So, I guess, that the code is to fast and the work on filling the table is not really finished, when the table is imported.
Does anybody know, if there is a command like refresh or update the table, which I can insert before importing the table into Mappoint.
Any help is appreciated.