Sups,
I got this declarations:
VB Code:
  1. Public Type CityType
  2.     Name as String
  3.     PName as String
  4.     HPay as Integer
  5.     Hotel as Integer
  6. End Type
  7. Dim Cities[1 to 15] as CityType
I need to save all of this data, all 15 cities.
My question is, where should i save it, on a database (I dont wanna use SQL, h8 it! ), or on registry.
That's alot of data, and if on registry, i wanna know how to remove it when uninstalling the app, so wacha think?