Is there a way to automatically add new items to an established drop down list box?
Clark
![]() |
There are isolated problems with current patches, but they are well-known and documented on this site. |
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, 1 month 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 Update orchestration platform to update all software
by
Alex5723
3 hours, 4 minutes ago -
May preview updates
by
Susan Bradley
4 hours, 42 minutes ago -
Microsoft releases KB5061977 Windows 11 24H2, Server 2025 emergency out of band
by
Alex5723
4 hours, 49 minutes ago -
Just got this pop-up page while browsing
by
Alex5723
2 hours, 45 minutes ago -
KB5058379 / KB 5061768 Failures
by
crown
1 hour, 55 minutes ago -
Windows 10 23H2 Good to Update to ?
by
jkitc
17 hours, 51 minutes ago -
At last – installation of 24H2
by
Botswana12
18 hours, 36 minutes ago -
MS-DEFCON 4: As good as it gets
by
Susan Bradley
48 minutes ago -
RyTuneX optimize Windows 10/11 tool
by
Alex5723
1 day, 6 hours ago -
Can I just update from Win11 22H2 to 23H2?
by
Dave Easley
1 day ago -
Limited account permission error related to Windows Update
by
gtd12345
1 day, 20 hours ago -
Another test post
by
gtd12345
1 day, 20 hours ago -
Connect to someone else computer
by
wadeer
1 day, 14 hours ago -
Limit on User names?
by
CWBillow
1 day, 18 hours ago -
Choose the right apps for traveling
by
Peter Deegan
1 day, 7 hours ago -
BitLocker rears its head
by
Susan Bradley
15 hours, 48 minutes ago -
Who are you? (2025 edition)
by
Will Fastie
14 hours, 45 minutes ago -
AskWoody at the computer museum, round two
by
Will Fastie
1 day, 10 hours ago -
A smarter, simpler Firefox address bar
by
Alex5723
2 days, 6 hours ago -
Woody
by
Scott
2 days, 16 hours ago -
24H2 has suppressed my favoured spider
by
Davidhs
15 hours, 25 minutes ago -
GeForce RTX 5060 in certain motherboards could experience blank screens
by
Alex5723
3 days, 6 hours ago -
MS Office 365 Home on MAC
by
MickIver
3 days ago -
Google’s Veo3 video generator. Before you ask: yes, everything is AI here
by
Alex5723
3 days, 20 hours ago -
Flash Drive Eject Error for Still In Use
by
J9438
15 hours, 9 minutes ago -
Windows 11 Insider Preview build 27863 released to Canary
by
joep517
4 days, 15 hours ago -
Windows 11 Insider Preview build 26120.4161 (24H2) released to BETA
by
joep517
4 days, 15 hours ago -
AI model turns to blackmail when engineers try to take it offline
by
Cybertooth
3 days, 18 hours ago -
Migrate off MS365 to Apple Products
by
dmt_3904
3 days, 19 hours ago -
Login screen icon
by
CWBillow
3 days, 10 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.