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
-
Windows 7 ISO /Windows 10 ISO
by
ECWS
5 hours, 53 minutes ago -
No HP software folders
by
fpefpe
6 hours, 38 minutes ago -
Which antivirus apps and VPNs are the most secure in 2025?
by
B. Livingston
1 hour, 42 minutes ago -
Stay connected anywhere
by
Peter Deegan
12 hours ago -
Copilot, under the table
by
Will Fastie
3 hours, 13 minutes ago -
The Windows experience
by
Will Fastie
18 hours, 15 minutes ago -
A tale of two operating systems
by
Susan Bradley
9 hours, 11 minutes ago -
Microsoft : Resolving Blue Screen errors in Windows
by
Alex5723
23 hours, 34 minutes ago -
Where’s the cache today?
by
Up2you2
1 day, 14 hours ago -
Ascension says recent data breach affects over 430,000 patients
by
Nibbled To Death By Ducks
1 day, 7 hours ago -
Nintendo Switch 2 has a remote killing switch
by
Alex5723
8 hours ago -
Blocking Search (on task bar) from going to web
by
HenryW
1 day, 15 hours ago -
Windows 10: Microsoft 365 Apps will be supported up to Oct. 10 2028
by
Alex5723
2 days, 8 hours ago -
Add or Remove “Ask Copilot” Context Menu in Windows 11 and 10
by
Alex5723
2 days, 8 hours ago -
regarding april update and may update
by
heybengbeng
2 days, 9 hours ago -
MS Passkey
by
pmruzicka
1 day, 11 hours ago -
Can’t make Opera my default browser
by
bmeacham
2 days, 17 hours ago -
*Some settings are managed by your organization
by
rlowe44
2 days, 4 hours ago -
Formatting of “Forward”ed e-mails
by
Scott Mills
2 days, 16 hours ago -
SmartSwitch PC Updates will only be supported through the MS Store Going Forward
by
PL1
3 days, 12 hours ago -
CISA warns of hackers targeting critical oil infrastructure
by
Nibbled To Death By Ducks
3 days, 21 hours ago -
AI slop
by
Susan Bradley
1 day, 14 hours ago -
Chrome : Using AI with Enhanced Protection mode
by
Alex5723
3 days, 22 hours ago -
Two blank icons
by
CR2
1 day, 6 hours ago -
Documents, Pictures, Desktop on OneDrive in Windows 11
by
ThePhoenix
1 day, 8 hours ago -
End of 10
by
Alex5723
4 days, 9 hours ago -
Single account cannot access printer’s automatic duplex functionality
by
Bruce
3 days, 7 hours ago -
test post
by
gtd12345
4 days, 15 hours ago -
Privacy and the Real ID
by
Susan Bradley
4 days, 6 hours ago -
MS-DEFCON 2: Deferring that upgrade
by
Susan Bradley
2 days, 8 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.