Recent content by calioranged

  1. C

    Daily

    Thanks. For anyone who visits this post in the future and is wondering how to do the same thing, this is the code you want inside the On Click event: Dim rs As Object Set rs = Me.RecordsetClone rs.FindFirst "[Enter Primary Key Here]=" & [Enter Name of List Box Here] If rs.NoMatch Then MsgBox...
  2. C

    Daily

    My form features a list box which displays Movies in the database as the user types. When the user clicks on a given record in the list box, I would like the form to go to this particular record. It seems that the GoToRecord command could be used to this in the On Click event, but I can't...
Top Bottom