Callback function question

M

mscertified

Is there a way to notify Access to ignore a row, i.e. not load it into the
listbox?
 
M

Marshall Barton

mscertified said:
Is there a way to notify Access to ignore a row, i.e. not load it into the
listbox?


Nothing simple, but it's not too difficult to do yourself.

Depending on what kind of RowSource you're using. For a
table/query, just use a Select statement that filters out
the undesired row. As per your post's subject, for Call
Back type, add some code to your procedure that skip the
undesired data.

If you're using a Value List, replace it with a table and
use a Select statement instead.

If you'd be more specific, I could try to be more helpful.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top