-
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]
-
DAY is a keyword, try to change the name of your array to MyDay or something else
DocZaf
{;->
-
Thanks, but that's not the problem, although the day should have caused someting else to go wrong, right?
[Edited by fred_dead on 08-10-2000 at 07:43 PM]