delete items from list box

nisha

Registered User.
Local time
Today, 10:55
Joined
Aug 18, 2009
Messages
22
Hi,

I have two list box controls in a form . I want to delete the items from listbox1 after moving those to listbox 2. any help on this??
 
Me!listboxname.RowSource = ""
If you only want to remove some entries you will need to read out and edit the rowsource.

Otherwise use a query as the rowsource and either change that or change the records in the underlying tables.

Here is some comprehensive stuff on Rowsource
http://msdn.microsoft.com/en-us/library/55693axk(VS.80).aspx
 

Users who are viewing this thread

Back
Top Bottom