WUGNET, the Windows User Group Network
Your Complete Resource Center for "The Best" in Shareware, Computing Tips and Support, Windows Industry News... and much more!
Home Forums Shareware Windows Tips Hot Offers FREE Newsletters Arcade Contact Us About Partners
Search WUGNET: RSS Feeds RSS Feeds Advertise with WUGNET    |    Shareware eBooks
HomeHome FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in

NUMBER DOES NOT EXIST

 
   Home -> Office other -> General Discussions RSS
Next:  Coding an External Query into a Query  
Author Message
pauld

External


Since: Jul 28, 2007
Posts: 23



(Msg. 1) Posted: Tue Jul 01, 2008 7:18 pm
Post subject: NUMBER DOES NOT EXIST
Archived from groups: microsoft>public>access (more info?)

I am using a combo box to search a table for a particular number (table field
name is EmployeeNumber)

If the number I type into the combo box doesn't exist, how do I get Acess to
give me a message that says something like "That Number does not exist"?

Is is a setting of the EmployeeNumber field in the table? Or is there a
Macro that is needed to look for that value and report that it's not there?
Back to top
Login to vote
pietlinden

External


Since: Aug 29, 2006
Posts: 309



(Msg. 2) Posted: Tue Jul 01, 2008 8:17 pm
Post subject: Re: NUMBER DOES NOT EXIST [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

On Jul 1, 9:18 pm, pauld <pa... RemoveThis @discussions.microsoft.com> wrote:
> I am using a combo box to search a table for a particular number (table field
> name is EmployeeNumber)
>
> If the number I type into the combo box doesn't exist, how do I get Acess to
> give me a message that says something like "That Number does not exist"?
>
> Is is a setting of the EmployeeNumber field in the table? Or is there a
> Macro that is needed to look for that value and report that it's not there?

use DCount. If DCount(...)=0 then MsgBox...
Back to top
Login to vote
Steve Sanford

External


Since: Aug 30, 2007
Posts: 42



(Msg. 3) Posted: Tue Jul 01, 2008 11:06 pm
Post subject: RE: NUMBER DOES NOT EXIST [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Readup on the "NotInList" event. This is where you would put the code for a
message box alert.

HTH
--
Steve S
--------------------------------
"Veni, Vidi, Velcro"
(I came; I saw; I stuck around.)


"pauld" wrote:

> I am using a combo box to search a table for a particular number (table field
> name is EmployeeNumber)
>
> If the number I type into the combo box doesn't exist, how do I get Acess to
> give me a message that says something like "That Number does not exist"?
>
> Is is a setting of the EmployeeNumber field in the table? Or is there a
> Macro that is needed to look for that value and report that it's not there?
Back to top
Login to vote
pauld

External


Since: Jul 28, 2007
Posts: 23



(Msg. 4) Posted: Wed Jul 02, 2008 8:21 am
Post subject: Re: NUMBER DOES NOT EXIST [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I must not understand the advice you provided.

I changed the Macro I use to populate the form based on the EmployeeNumber I
select in the combo box to make it Conditional.

I entered what you advised and Access says it can't parse the expression.

I should also say that I have an EmployeeNumber of 00000 so that when I open
the Form the fields are blank because it's showing data for that
EmployeeNumber. I do this to be sure the user has a "blank" Form to begin
with.

I also looked for DCount in Access Help and got a message saying help
doesn't exist in English.

"pietlinden@hotmail.com" wrote:

> On Jul 1, 9:18 pm, pauld <pa....TakeThisOut@discussions.microsoft.com> wrote:
> > I am using a combo box to search a table for a particular number (table field
> > name is EmployeeNumber)
> >
> > If the number I type into the combo box doesn't exist, how do I get Acess to
> > give me a message that says something like "That Number does not exist"?
> >
> > Is is a setting of the EmployeeNumber field in the table? Or is there a
> > Macro that is needed to look for that value and report that it's not there?
>
> use DCount. If DCount(...)=0 then MsgBox...
>
Back to top
Login to vote
pauld

External


Since: Jul 28, 2007
Posts: 23



(Msg. 5) Posted: Wed Jul 02, 2008 8:23 am
Post subject: RE: NUMBER DOES NOT EXIST [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

The "NotInList" event is not available under MS Access Help.

The message says it doesn't exist in my language (English).

Is there another location I can find the info on this event?

"Steve Sanford" wrote:

> Readup on the "NotInList" event. This is where you would put the code for a
> message box alert.
>
> HTH
> --
> Steve S
> --------------------------------
> "Veni, Vidi, Velcro"
> (I came; I saw; I stuck around.)
>
>
> "pauld" wrote:
>
> > I am using a combo box to search a table for a particular number (table field
> > name is EmployeeNumber)
> >
> > If the number I type into the combo box doesn't exist, how do I get Acess to
> > give me a message that says something like "That Number does not exist"?
> >
> > Is is a setting of the EmployeeNumber field in the table? Or is there a
> > Macro that is needed to look for that value and report that it's not there?
Back to top
Login to vote
Steve Sanford

External


Since: Aug 30, 2007
Posts: 42



(Msg. 6) Posted: Thu Jul 03, 2008 5:13 pm
Post subject: RE: NUMBER DOES NOT EXIST [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Google "notinlist msaccess" . Hundreds of sites....

HTH
--
Steve S
--------------------------------
"Veni, Vidi, Velcro"
(I came; I saw; I stuck around.)


"pauld" wrote:

> The "NotInList" event is not available under MS Access Help.
>
> The message says it doesn't exist in my language (English).
>
> Is there another location I can find the info on this event?
>
> "Steve Sanford" wrote:
>
> > Readup on the "NotInList" event. This is where you would put the code for a
> > message box alert.
> >
> > HTH
> > --
> > Steve S
> > --------------------------------
> > "Veni, Vidi, Velcro"
> > (I came; I saw; I stuck around.)
> >
> >
> > "pauld" wrote:
> >
> > > I am using a combo box to search a table for a particular number (table field
> > > name is EmployeeNumber)
> > >
> > > If the number I type into the combo box doesn't exist, how do I get Acess to
> > > give me a message that says something like "That Number does not exist"?
> > >
> > > Is is a setting of the EmployeeNumber field in the table? Or is there a
> > > Macro that is needed to look for that value and report that it's not there?
Back to top
Login to vote
Larry Linson

External


Since: Jun 24, 2004
Posts: 2651



(Msg. 7) Posted: Thu Jul 03, 2008 7:30 pm
Post subject: Re: NUMBER DOES NOT EXIST [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

The Help for NotInList does exist in English language Help, in every version
of Access. In Design View, click on that Control, right-click and Select
Properties, then in the Data tab, place your cursor on the "Limit to List"
line and press F1. There is also a "Not in List" event, on which you can do
the same. There's likely more Help on the Not In List event in the code
window.

If your installation of Access does not have this information available in
Help, you may have a failed install that didn't (properly) install Help, or
you may be trying to use Access 2003, for which Online Help is primary,
without being connected to the Internet.

Larry Linson
Microsoft Office Access MVP


"pauld" <pauld DeleteThis @discussions.microsoft.com> wrote in message
news:E1DE4B2A-9803-492C-BF2B-2A6F494399E8@microsoft.com...
> The "NotInList" event is not available under MS Access Help.
>
> The message says it doesn't exist in my language (English).
>
> Is there another location I can find the info on this event?
>
> "Steve Sanford" wrote:
>
>> Readup on the "NotInList" event. This is where you would put the code for
>> a
>> message box alert.
>>
>> HTH
>> --
>> Steve S
>> --------------------------------
>> "Veni, Vidi, Velcro"
>> (I came; I saw; I stuck around.)
>>
>>
>> "pauld" wrote:
>>
>> > I am using a combo box to search a table for a particular number (table
>> > field
>> > name is EmployeeNumber)
>> >
>> > If the number I type into the combo box doesn't exist, how do I get
>> > Acess to
>> > give me a message that says something like "That Number does not
>> > exist"?
>> >
>> > Is is a setting of the EmployeeNumber field in the table? Or is there a
>> > Macro that is needed to look for that value and report that it's not
>> > there?
Back to top
Login to vote
Display posts from previous:   
       Home -> Office other -> General Discussions All times are: Eastern Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
Categories:
 Windows XP
 Windows Vista
 Windows Other
 Office
  Office Other
 Security
 WinRAR
  • Home |
  • Shareware |
  • Windows Tips |
  • Hot Offers |
  • FREE Newsletters |
  • Arcade |
  • Forums |
  • eBooks |
  • About WUGNET |
  • Partners |
  • Contact

  • WUGNET Privacy Policy |
  • Link to WUGNET