Right, so I've worked out/worked around pretty much everything I have encountered so far... But I just can't get this to work, I'm trying to make a new File Object in which I can load files, write to them, read from them or whatever... But doing it the way it works with Objects/Images/Sprites/etc. doesn't seem to work... e.g.
Public Dim File As DarkGDK.IO.File
File = New DarkGDK.IO.File
Doesn't work, where as...
Public Tile As DarkGDK.Basic2D.AnimatedSprite
Tile = New DarkGDK.Basic2D.AnimatedSprite("Data\Tiles\Tileset.png", Imgx / 32, Imgy / 32)
does work, am I just doing something wrong here or what? Oh, and the error it gives is:
Error 7 'DarkGDK.IO.File.Protected Friend Sub New()' is not accessible in this context because it is 'Protected Friend'. C:\Users\Silvester\Documents\Visual Studio 2008\Projects\Map Editor\Map Editor\modDatabase.vb 61 16 Map Editor

EDP Map Editor[2D]