no problem...
PS: do not use "Messenger.MyEmail" to store info in the registry, use "Messenger.MyUserId" instead... security reasons!
PS2: anyways
quote:
Originally posted by SpunkyLoveMuff
I'm reading a comma seperated list from the registry and reading it into an array and then placing it into a List View box thingy This needs to be done ASAP as the window is opened when the script starts... (it then gets hidden until it's needed)
Why don't you create the window and fill in the listview when it is actually needed for the first time? In that way you don't slow other things down...
Unless you constantly need to add to the listview also... but then again, you also could simply store everything in an array and only create the listview (from that array) when it actually needs to be shown to the user. This will be way faster...not only in loading but in general executing too (as updating a listview takes a lot of processing).