Access Project

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have an access project product edit htm page and I would like to be able to
look up a product to edit without having to click through the entire list to
find the one product I need to edit. How do I create a look up to go
directly to the product from the combo box on this page? Thanks
 
The code will look something like this ...

' Find the record that matches the control.

Dim objRs As Object

Set objRs = Me.Recordset.Clone
objRs.FindFirst "[SiteID] = " & Nz(Me![cboFindSiteInvestigator], 0)
If Not objRs.EOF Then Me.Bookmark = objRs.Bookmark

Set objRs = nothing
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top