Recent content by Doubleecpu

  1. D

    Help with adding checkboxes to search form

    'Generates SQL statement if chKOpen = True AND chkClosed =True then strSQL = "SELECT * FROM Tasks " & _ "WHERE (((Tasks.[Assigned To] = '" & cbo_Employee & _ ")));" Else strSQL = "SELECT * FROM Tasks " & _ "WHERE...
  2. D

    Open form with tab control to specific primary key?

    1. On the form (or report) with tab control you need to have a control that has the value of strFacilityID (i.e Text_FacilityID) 2. Then you need to Link master Fields = Text_FacilityID and Link Child Fields = TableName.FacilityID to the SubForm/Report on each tab. 3. On the Subform/Report you...
Top Bottom