Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

I need Combo boxes that remember the last value

Status
Not open for further replies.

ibgary

MIS
May 24, 2001
6
0
0
US
I have a form in Access 95 which contains text boxes and combo boxes. After saving, and adding a new record, I would like to carry some of the values over for the next record. Using;
Const cquote = """"
Me.Text10.DefaultValue = cquote & Me!Text10.Value & cquote

works well for text boxes but not combo boxes.

Whats the best way to get combo boxes to remember values?
 
Hi Ibgary,

You could create a table and assign a field to your combo box. Use the refresh cmd on: after update to update your table. This will do the trick.

Peps
++
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top