How do I detect if item in lisbox is selected

S

Sam

Hi,

How do I detect item in listbox is selected? Is there a problem with
news server cause I cannot access it from outlook express

SF
 
T

Tom van Stiphout

On Sun, 9 May 2010 19:48:41 -0700 (PDT), Sam <[email protected]>
wrote:

Check out the list of events available to the listbox and see which
one is most appropriate to you. Perhaps the AfterUpdate event.

-Tom.
Microsoft Access MVP
 
B

BruceM via AccessMonster.com

If the list box is bound to a required field (Field1), you could use the
form's Before Update event:

If IsNull(Me.Field1) Then
MsgBox "Field1 is required"
End If

No problem I know of with the news server. Are you using the correct server
name?
 
L

Linq Adams via AccessMonster.com

Is the Multi-Select Property of the Listbox set to ***None*** or to Simple or
Extended? It makes a difference because Listboxes only have a Value when set
to None.
 

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