You could pass it to a public variable if the form references are not working.
On the double click event of the list box, put this:
Public sValue As String
sValue = Me.List0
I wouldn't use "Me.List0.Value"
Then on the On Open event of the next form, do this:
Me.txtItem = sValue
I think what may also be the problem is that when you use .Value on the second text box, that it sets the value, but doesn't display the value. Leave .Value off and see what happens too.
Did that help?
mmcdonal
|