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
-
Privacy and the Real ID
by
Susan Bradley
2 hours, 42 minutes ago -
MS-DEFCON 2: Deferring that upgrade
by
Susan Bradley
2 hours, 57 minutes ago -
Cant log on to oldergeeks.Com
by
WSJonharnew
4 hours, 47 minutes ago -
Upgrading from Win 10
by
WSjcgc50
4 hours, 11 minutes ago -
USB webcam / microphone missing after KB5050009 update
by
WSlloydkuhnle
16 hours, 8 minutes ago -
TeleMessage, a modified Signal clone used by US government has been hacked
by
Alex5723
17 hours, 24 minutes ago -
The story of Windows Longhorn
by
Cybertooth
5 hours, 9 minutes ago -
Red x next to folder on OneDrive iPadOS
by
dmt_3904
19 hours, 23 minutes ago -
Are manuals extinct?
by
Susan Bradley
8 hours, 52 minutes ago -
Canonical ditching Sudo for Rust Sudo -rs starting with Ubuntu
by
Alex5723
1 day, 4 hours ago -
Network Issue
by
Casey H
15 hours, 36 minutes ago -
Fedora Linux is now an official WSL distro
by
Alex5723
1 day, 16 hours ago -
May 2025 Office non-Security updates
by
PKCano
1 day, 16 hours ago -
Windows 10 filehistory including onedrive folder
by
Steve Bondy
1 day, 18 hours ago -
pages print on restart (Win 11 23H2)
by
cyraxote
19 hours, 45 minutes ago -
Windows 11 Insider Preview build 26200.5581 released to DEV
by
joep517
1 day, 21 hours ago -
Windows 11 Insider Preview build 26120.3950 (24H2) released to BETA
by
joep517
1 day, 21 hours ago -
Proton to drop prices after ruling against “Apple tax”
by
Cybertooth
2 days, 4 hours ago -
24H2 Installer – don’t see Option for non destructive install
by
JP
20 hours, 50 minutes ago -
Asking Again here (New User and Fast change only backups)
by
thymej
2 days, 15 hours ago -
How much I spent on the Mac mini
by
Will Fastie
1 day, 15 hours ago -
How to get rid of Copilot in Microsoft 365
by
Lance Whitney
18 hours, 51 minutes ago -
Spring cleanup — 2025
by
Deanna McElveen
2 days, 21 hours ago -
Setting up Windows 11
by
Susan Bradley
1 day, 16 hours ago -
VLC Introduces Cutting-Edge AI Subtitling and Translation Capabilities
by
Alex5723
2 days, 17 hours ago -
Powershell version?
by
CWBillow
2 days, 18 hours ago -
SendTom Toys
by
CWBillow
1 day, 4 hours ago -
Add shortcut to taskbar?
by
CWBillow
2 days, 21 hours ago -
Sycophancy in GPT-4o: What happened
by
Alex5723
3 days, 14 hours ago -
How can I install Skype on Windows 7?
by
Help
3 days, 13 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.