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
-
Debian 12.11 released
by
Alex5723
4 hours, 16 minutes ago -
Microsoft: Troubleshoot problems updating Windows
by
Alex5723
7 hours, 57 minutes ago -
Woman Files for Divorce After ChatGPT “Reads” Husband’s Coffee Cup
by
Alex5723
5 hours, 27 minutes ago -
Moving fwd, Win 11 Pro,, which is best? Lenovo refurb
by
Deo
4 hours, 26 minutes ago -
DBOS Advanced Network Analysis
by
Kathy Stevens
1 day ago -
Microsoft Edge Launching Automatically?
by
healeyinpa
15 hours, 17 minutes ago -
Google Chrome to block admin-level browser launches for better security
by
Alex5723
1 day, 3 hours ago -
iPhone SE2 Stolen Device Protection
by
Rick Corbett
19 hours, 48 minutes ago -
Some advice for managing my wireless internet gateway
by
LHiggins
3 hours, 21 minutes ago -
NO POWER IN KEYBOARD OR MOUSE
by
HE48AEEXX77WEN4Edbtm
21 hours, 45 minutes ago -
A CVE-MITRE-CISA-CNA Extravaganza
by
Nibbled To Death By Ducks
1 day, 13 hours ago -
Sometimes I wonder about these bots
by
Susan Bradley
1 day, 9 hours ago -
Does windows update component store “self heal”?
by
Mike Cross
23 hours, 22 minutes ago -
Windows 11 Insider Preview build 27858 released to Canary
by
joep517
2 days, 2 hours ago -
Pwn2Own Berlin 2025: Day One Results
by
Alex5723
10 hours, 56 minutes ago -
Windows 10 might repeatedly display the BitLocker recovery screen at startup
by
Susan Bradley
14 hours, 37 minutes ago -
Windows 11 Insider Preview Build 22631.5409 (23H2) released to Release Preview
by
joep517
2 days, 5 hours ago -
Windows 10 Build 19045.5912 (22H2) to Release Preview Channel
by
joep517
2 days, 5 hours ago -
Kevin Beaumont on Microsoft Recall
by
Susan Bradley
1 day, 18 hours ago -
The Surface Laptop Studio 2 is no longer being manufactured
by
Alex5723
2 days, 13 hours ago -
0Patch, where to begin
by
cassel23
2 days, 7 hours ago -
CFPB Quietly Kills Rule to Shield Americans From Data Brokers
by
Alex5723
3 days, 3 hours ago -
89 million Steam account details just got leaked,
by
Alex5723
2 days, 15 hours ago -
KB5058405: Linux – Windows dual boot SBAT bug, resolved with May 2025 update
by
Alex5723
3 days, 12 hours ago -
A Validation (were one needed) of Prudent Patching
by
Nibbled To Death By Ducks
3 days, 2 hours ago -
Master Patch Listing for May 13, 2025
by
Susan Bradley
5 hours, 11 minutes ago -
Installer program can’t read my registry
by
Peobody
1 hour, 22 minutes ago -
How to keep Outlook (new) in off position for Windows 11
by
EspressoWillie
3 days ago -
Intel : CVE-2024-45332, CVE-2024-43420, CVE-2025-20623
by
Alex5723
3 days, 8 hours ago -
False error message from eMClient
by
WSSebastian42
3 days, 23 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.