Is there a way to automatically add new items to an established drop down list box?
Clark
![]() |
Patch reliability is unclear. Unless you have an immediate, pressing need to install a specific patch, don't do it. |
SIGN IN | Not a member? | REGISTER | PLUS MEMBERSHIP |
-
Add to list box (Access 2002 SP-2)
Home » Forums » AskWoody support » Productivity software by function » MS Access and database help » Add to list box (Access 2002 SP-2)
- This topic has 12 replies, 3 voices, and was last updated 22 years ago.
AuthorTopicWSaltdotcom
AskWoody LoungerApril 25, 2003 at 8:21 pm #386586Viewing 0 reply threadsAuthorReplies-
WSHansV
AskWoody LoungerApril 25, 2003 at 9:01 pm #671383If the combo box has its Row Source Type set to Table/Query: no, you can’t. But you can change the Row Source in code to another table, query or SQL statement.
If the combo box has its Row Source Type set to List: yes, you can, use the AddItem method. (Note for Loungers using Access 97 or 2000: this was introduced in Access 2002)
-
WScharlotte
AskWoody Lounger -
WSHansV
AskWoody Lounger -
WSaltdotcom
AskWoody Lounger -
WSHansV
AskWoody LoungerApril 26, 2003 at 9:25 pm #671502If you do a search for NotInList in this forum, you will find lots of posts dealing with it. For instance, post 146637 contains two code examples.
-
WSaltdotcom
AskWoody LoungerMay 1, 2003 at 3:43 am #672588Modifying some of the code examples I was referred to I have come up with the following:
Private Sub Publisher_NotInList(NewData As String, Response As Integer)
If MsgBox(“The type ” & NewData & ” does not occur not in the list.” & vbCrLf & _
“Do you want to add it?”, vbYesNo + vbQuestion) = vbYes Then
Dim strSQL As String
strSQL = “INSERT INTO tblIn-Print Inventory2 (Publisher) VALUES (” & _
Chr$(34) & NewData & Chr$(34) & “)”
CurrentDb.Execute strSQL, dbFailOnError
Response = acDataErrAdded
Else
Publisher.Undo
Response = acDataErrContinue
End If
End SubWhat I am trying to do is this: in the form “In-Print Inventory2”, based on the the table “In-Print Inventory2”, there is a field called “Publisher” which is a combo box based on the field “Short Name” in the table “Publishers”. I want to be able to add a new publisher to the combo box on the fly. I’ve placed the code above as an event procedure in the Not In List event property of the field “Publisher” of the form “In-Print Inventory2”. When I add a new publisher in the form I’m told the name is not on the list, would I like to add it. When I click yes I get “runtime error ‘3134’ syntax error in INSERT INTO statement” and I’m referred to this line in the code:
CurrentDb.Execute strSQL, dbFailOnErrorClark
-
WScharlotte
AskWoody LoungerMay 1, 2003 at 3:55 am #672590One problem is that Access SQL does NOT like odd characters in table names, so you need to put the table name tblIn-Print Inventory2 in square brackets like this: [tblIn-Print Inventory2]. That way SQL knows that you’re not trying to do some kind of math with fields it’s never heard of. Try that and see if your error goes away.
-
WSaltdotcom
AskWoody Lounger -
WSHansV
AskWoody LoungerMay 1, 2003 at 12:51 pm #672636In post 248963 farther up in this thread, you state[indent]
… based on the the table “In-Print Inventory2” …
[/indent]but in the SQL you use tblIn-Print Inventory2. Are you absolutely sure about the name? Any typo will cause an error message.
-
WSaltdotcom
AskWoody LoungerMay 1, 2003 at 1:59 pm #672658The table is named “In-Print Inventory2”. I was assuming that “tbl” had to be included in the SQL. Leaving it out brings a third error. So here’s the code:
Private Sub Publisher_NotInList(NewData As String, Response As Integer)
If MsgBox(“The type ” & NewData & ” does not occur not in the list.” & vbCrLf & _
“Do you want to add it?”, vbYesNo + vbQuestion) = vbYes Then
Dim strSQL As String
strSQL = “INSERT INTO [In-Print Inventory2] (Publisher) VALUES (” & _
Chr$(34) & NewData & Chr$(34) & “)”
CurrentDb.Execute strSQL, dbFailOnError
Response = acDataErrAdded
Else
Publisher.Undo
Response = acDataErrContinue
End If
End SubHere’s the new error message:”Run-time error ‘3464’: Data type mismatch in criteria expression.” And the de###### references the same line of code (CurrentDb.Execute strSQL, dbFailOnError)
-
WSHansV
AskWoody LoungerMay 1, 2003 at 2:12 pm #672661On looking back at an earlier reply by you in this thread, I see that[indent]
there is a field called “Publisher” which is a combo box based on the field “Short Name” in the table “Publishers”.
[/indent]This implies that you should be updating the Publishers table, not the In-Print Inventory2 table.
If Publishers has a numeric primary key, chances are that your combo box has 2 columns, of which the first is hidden because its column width it set to 0. The value of Publisher will be numeric in that case.
If the Publishers table has an AutoNumber field as primary key, the following should work:
Private Sub Publisher_NotInList(NewData As String, Response As Integer)
If MsgBox(“The type ” & NewData & ” does not occur not in the list.” & vbCrLf & _
“Do you want to add it?”, vbYesNo + vbQuestion) = vbYes Then
Dim strSQL As String
strSQL = “INSERT INTO Publishers ([Short Name]) VALUES (” & _
Chr$(34) & NewData & Chr$(34) & “)”
CurrentDb.Execute strSQL, dbFailOnError
Response = acDataErrAdded
Else
Publisher.Undo
Response = acDataErrContinue
End If
End SubOtherwise, please specify:
– The names and data type of the fields of the Publishers table.
– The row source, the number of columns and the column widths of the Publisher combo box. -
WSaltdotcom
AskWoody Lounger
-
-
-
-
Viewing 0 reply threads -

Plus Membership
Donations from Plus members keep this site going. You can identify the people who support AskWoody by the Plus badge on their avatars.
AskWoody Plus members not only get access to all of the contents of this site -- including Susan Bradley's frequently updated Patch Watch listing -- they also receive weekly AskWoody Plus Newsletters (formerly Windows Secrets Newsletter) and AskWoody Plus Alerts, emails when there are important breaking developments.
Get Plus!
Welcome to our unique respite from the madness.
It's easy to post questions about Windows 11, Windows 10, Win8.1, Win7, Surface, Office, or browse through our Forums. Post anonymously or register for greater privileges. Keep it civil, please: Decorous Lounge rules strictly enforced. Questions? Contact Customer Support.
Search Newsletters
Search Forums
View the Forum
Search for Topics
Recent Topics
-
MS Office 365 Home on MAC
by
MickIver
2 hours, 10 minutes ago -
search by picture an not all that’s cracked up to be (Awaiting moderation)
by
Dru Fuksa
3 hours, 48 minutes ago -
Google’s Veo3 video generator. Before you ask: yes, everything is AI here
by
Alex5723
10 hours, 53 minutes ago -
Flash Drive Eject Error for Still In Use
by
J9438
12 hours, 26 minutes ago -
Windows 11 Insider Preview build 27863 released to Canary
by
joep517
1 day, 5 hours ago -
Windows 11 Insider Preview build 26120.4161 (24H2) released to BETA
by
joep517
1 day, 5 hours ago -
AI model turns to blackmail when engineers try to take it offline
by
Cybertooth
9 hours, 25 minutes ago -
Migrate off MS365 to Apple Products
by
dmt_3904
10 hours, 14 minutes ago -
Login screen icon
by
CWBillow
36 minutes ago -
AI coming to everything
by
Susan Bradley
8 hours, 13 minutes ago -
Mozilla : Pocket shuts down July 8, 2025, Fakespot shuts down on July 1, 2025
by
Alex5723
1 day, 21 hours ago -
No Screen TurnOff???
by
CWBillow
1 day, 21 hours ago -
Identify a dynamic range to then be used in another formula
by
BigDaddy07
1 day, 22 hours ago -
InfoStealer Malware Data Breach Exposed 184 Million Logins and Passwords
by
Alex5723
2 days, 9 hours ago -
How well does your browser block trackers?
by
n0ads
1 day, 20 hours ago -
You can’t handle me
by
Susan Bradley
20 hours, 12 minutes ago -
Chrome Can Now Change Your Weak Passwords for You
by
Alex5723
1 day, 12 hours ago -
Microsoft: Over 394,000 Windows PCs infected by Lumma malware, affects Chrome..
by
Alex5723
2 days, 21 hours ago -
Signal vs Microsoft’s Recall ; By Default, Signal Doesn’t Recall
by
Alex5723
2 days ago -
Internet Archive : This is where all of The Internet is stored
by
Alex5723
2 days, 21 hours ago -
iPhone 7 Plus and the iPhone 8 on Vantage list
by
Alex5723
2 days, 21 hours ago -
Lumma malware takedown
by
EyesOnWindows
2 days, 10 hours ago -
“kill switches” found in Chinese made power inverters
by
Alex5723
3 days, 6 hours ago -
Windows 11 – InControl vs pausing Windows updates
by
Kathy Stevens
3 days, 6 hours ago -
Meet Gemini in Chrome
by
Alex5723
3 days, 10 hours ago -
DuckDuckGo’s Duck.ai added GPT-4o mini
by
Alex5723
3 days, 10 hours ago -
Trump signs Take It Down Act
by
Alex5723
3 days, 18 hours ago -
Do you have a maintenance window?
by
Susan Bradley
1 day, 23 hours ago -
Freshly discovered bug in OpenPGP.js undermines whole point of encrypted comms
by
Nibbled To Death By Ducks
2 days, 20 hours ago -
Cox Communications and Charter Communications to merge
by
not so anon
3 days, 22 hours ago
Recent blog posts
Key Links
Want to Advertise in the free newsletter? How about a gift subscription in honor of a birthday? Send an email to sb@askwoody.com to ask how.
Mastodon profile for DefConPatch
Mastodon profile for AskWoody
Home • About • FAQ • Posts & Privacy • Forums • My Account
Register • Free Newsletter • Plus Membership • Gift Certificates • MS-DEFCON Alerts
Copyright ©2004-2025 by AskWoody Tech LLC. All Rights Reserved.