Code:
Private Type eventdata
    Title As String
    Comment As String
    Order As Integer
    Text As String
End Type
Private myday(10) As eventdata
I have my myday array(which is populated by data from my DB) and I have my lstevent(A listbox with items that correlate with myday(?).Title)

Now the problem, when I try and change the position(priority) of an item in lstevent, and try and update myday(?).Order all the data gets messed up. And to myday(?) end up with the same data, but I can't figure out why.

I was hoping someone had an example of how do something similar.

Thanks for any help

[Edited by fred_dead on 08-10-2000 at 11:59 PM]