Search results

  1. Shananarocks

    Yes. You can filter a multivalue field in VBA using the IN() operator function

    I was just doing my own database and found that I can actually filter multivalue field using the IN() operator. Basically I was filtering a multivalue field named "Workyears" So the filter is: rs.Filter = "[Workyears.value] IN" & "(" & wy & ")" (since I gather that .value will string the result...
  2. Shananarocks

    Solved Createcontrol cannot create Label or Textbox at Header Section !!!

    Good Afternoon, I am using a subroutine to create a new form and also a label at the "Header" section. The routine below works only if I use the default to create the label control in the Details section. However, it will shows an error if I try to add the label control to the "Header" section...
Top Bottom