Recent content by cliftonx

  1. C

    Tab Order not working for some fields

    Thanks everyone for putting me on the right track. I found the ColumnOrder property that I was looking for to place the following fields in the proper order on the Datasheet: Set Me.Recordset = rst Forms!frmiimain.Form.Requery Me.Phase.ColumnOrder = 32 Me.Skid.ColumnOrder = 33
  2. C

    Tab Order not working for some fields

    In design view for forms, I click the detail button, then I click the tab order button, highlight the desire fields and move them to the desired position on the form. Save it and run the application and take the option to display the form and I can see the fields in its new position. Today, I’m...
  3. C

    You tried to assign the Null value to a variable that is not a Variant data type

    After further review of the DSN names used at our shop. We are currently maintaining 3 environments (Production, Development and Test). When I Altered the table in our Development environment in SQL Server. Everything worked fine. However, I used the TEST environment for the DSN name. After...
  4. C

    You tried to assign the Null value to a variable that is not a Variant data type

    I've relinked the table and used a query to update the field value. But still getting the same error message.
  5. C

    You tried to assign the Null value to a variable that is not a Variant data type

    I'm trying to update a Description field on a input form by replacing it with a null/spaces. But when I move on onto the next field I get an error message; "You tried to assign the Null value to a variable that is not a Variant data type." I'm using a SQL Server backend. When I look at the table...
  6. C

    Form opens with no records.

    Thank You! Your suggestion worked.
  7. C

    Form opens with no records.

    After setting the Record Source to the underling source table and using the CreateQueryDef definition to define and execute the query. The form opens up with no records from the query. The following is the code that I am using. What am I doing wrong? Dim dbs As DAO.Database Dim qdf As...
  8. C

    How do I change the record source of a subform

    Thank you. That solved the problem. I was using the dot notation outside the With block.
  9. C

    How do I change the record source of a subform

    I tried the above code and now I get the following error: Here is the new code:
  10. C

    How do I change the record source of a subform

    I'm trying to change the record source of a subform. I'm getting for following error: The following is the code I use to generate the error:
  11. C

    Run-time error '2580'

    Hello, I'm simply trying to change the record source on a form. I'm using SQL Server as the backend. I'm assigning the record source to a stored procedure named: " "spDevsWithPartsSpec" plus passing along the parameter; "Forms!frmiimain.cboJobNumber". I'm getting the following run-time error...
  12. C

    Like operator not working

    Yes, I'm using ADO and tried using the % as a wildcard but I get the "Error search criteria" error message. However it does work with the * wildcard, but only when I use it at the end of the of the search string i.e. Like "A*" but not Like "*A".
  13. C

    Like operator not working

    Added the following Like filtering pattern: ssql = ssql + " and Chemicals.[Chemical Name] like '" & txtChemicalName.value & "*' " The code works as expected. However when I try to make the following modification to append an asterisk to the beginning of the like operator: ssql = ssgl + " and...
  14. C

    Missing date picker control after upgrade

    Yes, that's right, its a sub form actually. I've posted a before and after shots. Please see attachments. Thanks!!
  15. C

    Missing date picker control after upgrade

    I just upgraded an .accdb database from Microsoft Access 2010 to Microsoft Access 2016. After the upgrade, I opened the Access 2016 version and noticed that when I opened one of my forms, the date picker control is missing. I really need that date picker control back on the form and working...
Back
Top Bottom