move selection from list1 to list2

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm curious as to how i would move a selection from one list box to another
on the same form.

My first list box displays a complete list of 'units'. I would like to set
up a dblclick code to move the selection to a 2nd list box below. Also, i
would like the list in the 2nd box to accumulate, so that every new 'unit' i
dblclick, it adds it on to the list below. I just dont know the code...

Any suggestions??
 
Never Mind everybody, I figured it out....If anybody else has a similar
problem, the solution is (forgive me for bad programming or small errors) to
open a dbl_click event code, declare a variable as a string, set the string =
the name of your first list box, then nameofsecondlist.Additem
Item:=stringname, then your off to the races...
 
Back
Top