moving data from a list box 2 a edit box

  • Thread starter Thread starter Spinner
  • Start date Start date
S

Spinner

Guest
What I need is a list box with serial numbers in.(can do this) The user then needs to be able to click on a serial number in teh list box, click a move buton and the serial number they clicked on is then put in to an edit box. What I need is the code that will do this. Or an equally brilliant way of accomplishing the same thing.

Thanks for any help given.
 
do:

Private Sub MovButon_Click()
Me!EditBox = Me!ListBox
End Sub
 

Users who are viewing this thread

Back
Top Bottom