hello to all i am making an vb.net windows application..
i have two combo box one is of reserved seats and another of available seats
now in reserved seat combo box the values are coming from database(maximum seats are 50)
suppose seat no. 5 and 8 are reserved...now i want that the remainning seats rxcept 5 an8 should come in available combo box
how it will happen..please help
thanks in advance
Manikavelu VelayuthamPosted Sep 2, 2010, 2:59 AM
for example
select * from table where reserved = 0 --> which means only the unreserved values will be fetched and fill it in the combobox....through thsi you can easily achieve your goal
dont forget to mark this post as answered