D
Dave
I have a form that is bound to a recordset. There is an unboumd textbox on
the form and when the user enters an ID in this textbox, the record
associated with that ID should display as the current record, populating all
of the bound controls.
Can anyone give me an idea how to implement this?
I tried coding the AfterUpdate event of the textbox. And then I to clone
the underlying recordset and move to the designated record as
rs.Find "[custid]=" & str(Nz(Me![txtcustid], 0))
but I get a type mismatch error.
Can anyone who has done this before give me an idea how to implement it?
And how do I handle the input of a "bad" (nonexistant) ID? (I need to use
a textbox rather than cbo in order to speed data entry.)
Dave
the form and when the user enters an ID in this textbox, the record
associated with that ID should display as the current record, populating all
of the bound controls.
Can anyone give me an idea how to implement this?
I tried coding the AfterUpdate event of the textbox. And then I to clone
the underlying recordset and move to the designated record as
rs.Find "[custid]=" & str(Nz(Me![txtcustid], 0))
but I get a type mismatch error.
Can anyone who has done this before give me an idea how to implement it?
And how do I handle the input of a "bad" (nonexistant) ID? (I need to use
a textbox rather than cbo in order to speed data entry.)
Dave