REGARDING COMBOBOX
I am taking column from combobox on form load. but there are some empty values in column how to avoid it to come in combobox
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Madhu KPosted Dec 13, 2010, 12:55 AM
If you are getting the list items from db then you can get the not null values using
select column from tablename where column is NOT NULL
select column from tablename where column !=''
If this is not what you want improve your question.