[Resolved]Save Listbox Into Single String... FAST
I'm trying to save listbox contents into a single string, each line seperated by a | character. From this string i intend to write to a file.
When loading the file i'll seperate each line by using the Split function and | as the delimeter.
The problem here is that I'll have to use a Do Loop, or somthing along those lines, which is OK, but i'm trying to get something a little faster.
Is there like some short code that one of you uber programmer guys know that makes this a little more easier and faster?
Re: Save Listbox Into Single String... FAST
Re: [Resolved]Save Listbox Into Single String... FAST
Damm... time for World Domination Plan B
Re: [Resolved]Save Listbox Into Single String... FAST
Dont do repeated string concatenations... resize a string array according to listbox count -1 then transfer the data... delimit the string array using Join(), which will also produce your string and use one Print # to dump the entire string to file.