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 gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Combo Box

Status
Not open for further replies.

conwil

Programmer
Sep 5, 2001
3
US
I am trying to populate a combo box in a subform with the previous rows selection. Can anyone help.
Thanks,
conwil
 
Can you give any more detail about this? I'm not sure what you want to do.

Bob
 
I have a subform that will be used to input data. Some of the date will be duplicated on the next line and i want to have that data show on the next line automaticly(ex: year(1998) and state(IN). Hope this helps.
 
Perhaps something like this...

In the On Enter event of combo box write

ComboBox = Dlast("FieldName","TableName")

This will insert the data from the last record, when combobox in a new record receives focus. (If this is what you need).

Mangro
 
Mangro,
Thanks that worked. Just what I needed.
ConWil
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top