Search results

  1. G

    Problem with MAX function

    I got it to work. I just needed to put 3 sets of quotes around the form control. Thanks again!
  2. G

    Problem with MAX function

    Thanks bjackson. Yes txtcln_plate_id is the form field. Still have a slight problem. Now I am receiving a syntax error "missing an operator in the query expression". The message box is showing 'Clnplateid = 1234567890' ..........which is Clnplateid = " & txtCln_plate_id & " in the...
  3. G

    Problem with MAX function

    I am trying to return a Max value from a table to a form. I keep getting the error message "Too few parameters. Expected 1" Dim db As DAO.Database Dim rst As DAO.Recordset Set db = DBEngine.OpenDatabase("C:\BarCode.mdb") Set rst = db.OpenRecordset("SELECT Max(Clnid)AS MaxOfClnid...
  4. G

    Populate a form field from a non related query

    Thanks it helped me sort things out.
  5. G

    Populate a form field from a non related query

    I am currently working on a project that requires a primary key to be composed of 3 letters starting at AAA, the next AAB when the last letter hits Z then the next set would be ABA and so on. The way I am currently trying to make this work is to store each letter in a separate column in a table...
  6. G

    Help with checking all Checkboxes using recordset

    Thanks Rich and Jack Thanks for the help guys.
  7. G

    Help with checking all Checkboxes using recordset

    Thanks Jack Thank you. I should of seen that. But now it doesn't do anything. None of the boxes change. I'm sorry to ask but could you help me figure out what is wrong. I work for a plant breeding department in a seed company. The project we are doing has started generating over 200 plants...
  8. G

    Help with checking all Checkboxes using recordset

    I have a form with a subform presenting datasheet view. The purpose of the form is to view records that will be printed based on the date. I have a text box on the main form that displays the current date and determines which records are visible in subform. If all the records look ok then a...
Back
Top Bottom