basically I have a matrix, when a user enters in a fact, they catergorize it by legal theories. so when someone edit's this fact the listbox should select the items already associated with this item. If user makes changes by unselecting then update button would remove from the matrix all entries associated with FactId and re enter in the entries.
i posted this database on http://www.joinsthefamily.com/images/mdb.zip
the form that comes up shows works great it's the form UpdateFacts that has the problem
Code:
For i = 0 To Me.ListLegalTheories.ListCount - 1
If Me.ListLegalTheories.ItemData(i) = Rst!LegalTheoryID Then
Me.ListLegalTheories.Selected(i) = True
End If
Next i