I am having difficulty with the data array but it must be me.
Quote:
Dim Type(x, y, z, name)Spritedata
....
Dim Spritedata(4) ' make a new array
... ' set it up
Sprite.DataArray = Spritedata() ' assign it to a Sprite
|
The second Dim gives the error that SpriteData is already in the dictionary.
I tried Dim Type(x,y)SpriteData(4) which is OK but
Sprite.DataArray = Spritedata() gave the error...
Object of type 'System.String[,]' cannot be converted to type 'System.String[]'
Can you advise please
[Edit]The destinations work a treat!!