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!

Search results for query: *

  1. DB_Bowes

    Selection from Listbox to GoTo Record in Bound form Gives Error 2105

    This worked: Private Sub lst_LocalLoanNumberList_Click() Dim pk_index As Integer pk_index = Me.lst_LocalLoanNumberList.Column(0) With Form_frm_LocalLoanInfo.Recordset .FindFirst "LocalLoanNumberID =" & pk_index Form_frm_LocalLoanInfo.SetFocus...
  2. DB_Bowes

    Selection from Listbox to GoTo Record in Bound form Gives Error 2105

    I have a bound form to a SQL Server table. On that same form I have a listbox that gets distinct loan numbers from that table. The listbox has 2 columns, the PK and the loan number. I used the following code to display the record on the bound form they selected in the listbox so that they can...

Part and Inventory Search

Back
Top