Recent content by dmace1

  1. D

    Compile Error Syntax Error in Search Form VBA Code

    It wouldn't let me post my zip file or my accdb file because a security image was missing. I'm posting this here. Maybe this will help. This is my code for searching on the whole search form. Option Compare Database Option Explicit Private Sub Command72_Click() Dim strWhere As String Dim...
  2. D

    Compile Error Syntax Error in Search Form VBA Code

    I have that in there.
  3. D

    Compile Error Syntax Error in Search Form VBA Code

    Sorry, I tried to upload it but I get an error message that says security token is missing. I don't know how to fix this.
  4. D

    Compile Error Syntax Error in Search Form VBA Code

    It ran but it did not give me the correct results. It gave me all records, not just the correct records for the Committee Contact selected.
  5. D

    Compile Error Syntax Error in Search Form VBA Code

    Committee Contact is a name. (First Name Last Name)
  6. D

    Compile Error Syntax Error in Search Form VBA Code

    It got rid of the error but it still did not give me the correct results. It gave me everything, not just the results for the selected Committee Contact.
  7. D

    Compile Error Syntax Error in Search Form VBA Code

    Thanks, but unfortunately, that still did not work.
  8. D

    Compile Error Syntax Error in Search Form VBA Code

    I have a fairly large search form. The search button is working except for one field which is a combo box. I'm just not sure how to code it. It was suggested by someone on this forum that I also code it the same way that I did for my text boxes. That did not work. I also tried the following...
  9. D

    Search Form Module only partially working

    Hi, First, I'm fairly new to Access and even newer to VBA but trying. I created a search form and the coding. My search form has 11 searchable fields. All of them are working except one - CommitteeContact which is based on a combo box. When I try to search on CommitteeContact, I get the error...
  10. D

    Search For Record Macro Not Working

    Sure, this is what I put in the where condition. "CaseTitle Like ' "*" & [Forms]![InputCaseData]![SearchForBox] & "*" " When I clicked the run macro button, it did nothing.
  11. D

    Search For Record Macro Not Working

    Thanks but that did not work either.
  12. D

    Search For Record Macro Not Working

    Hi, I have a form in which I've put a search button to bring up a specific record. I want the user to only have to enter one word from a string of words (not necessarily the first word in the string). This is what I have in the macro: Object Type: Form Object Name: InputCaseData Record...
  13. D

    Run-time Error 3075

    Thank you so much for your assistance! This worked!:)
  14. D

    Run-time Error 3075

    First, let me say I'm pretty inexperience in Access and very inexperienced in VBA but I'm trying to build an Access database and have built a search form. I have some VBA code to go along with that. Both the text boxes and the combo boxes work when I am searching in one field only. However, when...
Top Bottom