P
Phil Heffley
I am building a issues database for out IT dept. There are
several products that we use and I am trying to create one
single database to store and update these issues. My
primary keys are IssID and ProductID. I am trying to
create a text box that I can enter the ProductID and IssID
to find the issue that I am looking for. I have
concatenated the fields into Iss_Product&ID.
Private Sub ISS_PRODUCT_ID_AfterUpdate()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[ISS_PRODUCT&ID] = " & Me!
[ISS_PRODUCT&ID]
Me.Bookmark = Me.RecordsetClone.Bookmark
This keeps erroring out with Identifier Not Recognized.
Does anyone have any ideas or know of another way to do
this?
Thanks
several products that we use and I am trying to create one
single database to store and update these issues. My
primary keys are IssID and ProductID. I am trying to
create a text box that I can enter the ProductID and IssID
to find the issue that I am looking for. I have
concatenated the fields into Iss_Product&ID.
Private Sub ISS_PRODUCT_ID_AfterUpdate()
' Find the record that matches the control.
Me.RecordsetClone.FindFirst "[ISS_PRODUCT&ID] = " & Me!
[ISS_PRODUCT&ID]
Me.Bookmark = Me.RecordsetClone.Bookmark
This keeps erroring out with Identifier Not Recognized.
Does anyone have any ideas or know of another way to do
this?
Thanks