View Full Version : moving data from a list box 2 a edit box


Spinner
08-06-2001, 09:29 PM
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.

joeyreyma
08-06-2001, 10:58 PM
do:

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