You can give the entire reference in form B, e.g. in the double click event in Form A, just put something like
FormB.whateveryouwant = ListBox1.List(someindex)
For this to work, the variable whateveryouwant must be publicly accessible.
You could also use a global variable. You can set
someglobal = ListBox1.List(someindex)
Then you can access someglobal from wherever you need it in Form B.
Hope that helps answer your question.