*Cough*. Yes, I need some help.

I am making a 2D tile based game, and there are a few things that have eluded me so far.

I decided to make the maps I should create a map maker program. Then I figured I'd have to save them (how odd), but I can't figure out how to do that, since I have one type, typTile, and have coded:
Code:
Private Type typTile
   Used as boolean
   Walkable as  boolean
   DC as long
end type

Dim tile(999, 999) as typTile
And I don't know how to write it to a file. (I'm not sure if I should be doing it like this). So I've decided to ask you. Even a link to a theory website or a tutorial or SOMETHING to help me. That would be nice.

Thanks.