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 gkittelson 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. tcolson

    filter form on combo box

    Adding a "breakpoint" or hitting the F8 key IAW the FAQ while in VBA editor did not produce any observable results. With VBA open, and attempting to operate the control, the same behavior results, and no "break" occurs in the code (?)
  2. tcolson

    filter form on combo box

    Private Sub cboMapMethod_AfterUpdate() Dim stDocName As String Dim stLinkCriteria As String stDocName = "Rare Points" stLinkCriteria = "[MapMethod]= " & Chr(34) & Me![cboMapMethod] & Chr(34) DoCmd.OpenForm stDocName, , , stLinkCriteria End Sub
  3. tcolson

    filter form on combo box

    Hi, changing the even to AfterUpdate or Change results in the same behavior: selecting any one of the text values in the combo list results in "nothing happening", the "Rare Points" form doesn't open. Am I missing another line of code here? Once the text string is selected, the user releases the...
  4. tcolson

    filter form on combo box

    I'm trying to use an unbound combo box in a switchboard form that will allow a user to open the main data entry form based upon the values presented in the combo box. cboMapMethod reads from SELECT [tlu_Map_Method].[OBJECTID], [tlu_Map_Method].[Description] FROM tlu_Map_Method; where the...

Part and Inventory Search

Back
Top