I've got a quick question.. If I built a program with say an array of:
What would be the best way to save the data the array has been given so that next time when I open my project I can retrieve the data so the user can use it again. I mean my first thought would be to write it to .txt file and then open and re import it when the program started up again, maybe an xml file, or even a datase of some sort, but isn't there a diffrent way of doing it? I've heard of Project->Properties->Settings never really used them before but I wasn't sure if they allowed arrays to be saved, what i've seem it looks like just single strings of data. It's not like it's going to be millions of rows of data you know maybe 100 most *Not sure on the number yet*...Code:Dim X(6) As Integer X(0) = 0 X(1) = 1 X(2) = 2 X(3) = 3 X(4) = 4 X(5) = 5 X(6) = 6
Thanks,
Brian




Reply With Quote