List Boxes

seanog2001

Registered User.
Local time
Today, 23:13
Joined
Jun 26, 2006
Messages
67
Im tryin to move data from one list box to another ive seen some sample datebases and how they use command buttons to move the data back and forth from the list boxes (usually have <, >, <<, >> on the command buttons)

Does anyone know how i do this?
 
Are you moving items from one table to another? if so then
make 2 listboxes
make the rowsource of each list correspond to the table its supposed to represent.
Put your fancy < > buttons in
On a click of a list store the ID of that table entry
When you click the button you need to run an append query that copies the data from the first table to the target table. then requery the lists
 

Users who are viewing this thread

Back
Top Bottom