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!

FindRecord is Replacing my Second Column

Status
Not open for further replies.

JulieS

MIS
Nov 23, 2000
48
0
0
CA
I have a combo box that lists the ID in Column(0) and the Title in Column(1). When I use the docmd.FindRecord, it is replacing my Title with the previous ID (before the update). This is very curious because I've used the same code in other databases and its worked fine.

The code is as follows (where Title is the combo box and TitleID is the record I want it to find):

Dim VarID as Integer
varID = Forms![frm FAM Tour Main]![Title].Column(0)
DoCmd.GoToControl "TitleID"
DoCmd.FindRecord varID, A_START, , , , , True
 
Fixed. I had changed the Title text box to a combo box. When I built it from a new combo box, it worked.
Whaddya know.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top