Recent content by Absolute_Beginner

  1. A

    order of records in report deviates from order of records in form

    Thank you very much for your assistance! I was able to solve the problem using the information you provided.
  2. A

    order of records in report deviates from order of records in form

    Hello everybody. I’ve got the following issue with my report: The order of the records displayed in my report deviates form the order of the records displayed in my subform. There are a couple of things I’ve already tried, but as I am not a native speaker of English I would not be able to...
  3. A

    Display the number of results of a query

    I've just figured out that I had a wrong idea about which records were actually counted, I'm very sorry about that. The count does work perfectly fine, in both solutions. Thank you very, very much for your help! It is very much appreciated!
  4. A

    Display the number of results of a query

    Thank you very much! There's no error message, and the message box opens as desired to display the results. Unfortunately, the count is not always correct. If there's only one match, it works, but apart from that the number displayed seems to be smaller than the actual number of matches. I...
  5. A

    Display the number of results of a query

    Thank you for your help! I'm sorry, I've got absolutely no knowledge of VBA code. The existing code was written by someone else. Please bear with me. So, here's what I've done: Private Sub Befehl33_Click() 'Suche starten Dim rst As DAO.Recordset Dim ctl As Control Dim...
  6. A

    Display the number of results of a query

    Thank you for your quick reply! Unfortunately, there is some sort of error. I'm not sure if I could translate the error message correctly, so I'll upload a sample database. The code I posted belongs to the "go" button of the search form that opens up when you click on "task search" in the...
  7. A

    Display the number of results of a query

    Hello everybody, I have a search form, which works with the following code (wasn't written by me). If the search was successful, a new form pops up displaying the matching data. Private Sub Befehl33_Click() 'Suche starten Dim rst As DAO.Recordset Dim ctl As Control Dim...
  8. A

    how to highlight search keywords in results form?

    Hi everybody, I’ve been tasked with improving a database, which includes a search form. The code of the search form reads as follows: Private Sub Command_Go_Click() Dim strSearch As String Dim strSQL As String Dim strMatches As String Dim rst As DAO.Recordset Dim fld...
  9. A

    detailed question regarding special search form for access 2003

    Thank you very much, I will have a look at it and try if I can make it work.
  10. A

    detailed question regarding special search form for access 2003

    Hi everybody, First of all, a word of warning, my knowledge of MS Access is severely limited, please bear with me. I’m working for a company during my university summer break. I have been tasked with creating a database (thank god my boss doesn’t want anything fancy) for storing the minutes...
Back
Top Bottom