PDA

Click to See Complete Forum and Search --> : lstBox into LstBox and Database Question


cvaden
Jan 17th, 2000, 03:51 AM
I want to take sowe information from one lst box1 and throw it into another lstbox2 while at the same time adding it to a database.

Secondly, If it is possible I would also like to add/move only the selected items from the lstbox1.

Thanks!

<c>

netSurfer
Jan 17th, 2000, 03:54 AM
strText = lstBox1.text

lstBox2.additem strtext 'I think that's the syntax

then add strText to the database. I don't know how you're connecting to it so haven't included it.