Recent content by DHookom

  1. DHookom

    current record PDF issues

    With the code I suggested with the code in the link, it’s very easy to reset the SQL to the original. You can also build a fairly sophisticated where clause, apply it, and call it from any form. Using a control on a form limits you to having that form open and setting the correct value.
  2. DHookom

    Windows 11 Slowing Down Database

    I would look into antivirus software. Try disabling to see if performance improves.
  3. DHookom

    Calculated field in query

    I realize this was your version and expect the OP would understand (and possibly post text SQL versus an image). I wanted something to simply copy and paste.
  4. DHookom

    Calculated field in query

    Based on your location, should you use ";" in place of ","? DateAdd("m";[factor];[dailydate]) AS Expr1
  5. DHookom

    Solved Appended Data changes to Table ID

    Tell us exactly what you want to see in the subform and how you expect to add a new record? Did you consider changing the properties of the subform to Add mode?
  6. DHookom

    Solved Appended Data changes to Table ID

    Is there a reason you don't simply enter the new check at the New Record on the subform?
  7. DHookom

    current record PDF issues

    A method that has always worked for me is to change something in the record source of the report to limit the records returned. For instance if you have an employee table [tblEmployees] and want to limit the report to a specific EmpID, create a query [qselEmployees] with the SQL of SELECT * FROM...
  8. DHookom

    Help request for creating Reports with pictures

    Also, I have had issues in the past with larger image files not rendering. Do you know the size of the files and have you tried with smaller files? I would also add a line in your code to help troubleshoot: Debug.Print CurrentProject.Path & “\img\” & Me.txtPathImage
  9. DHookom

    Solved Appended Data changes to Table ID

    I found your images confusing. It seems that your field in question is a lookup field and behaving like lookup fields behave. You would almost always want to use and store the ID value, not the text. The text value is stored only in one table based on sound relational database theory.
  10. DHookom

    Problem reading correct values from table into variables

    I would place a breakpoint in the code so the values can be seen by hovering the pointer over your code. Also, use Me.[CheckBalance]
  11. DHookom

    Enter Parameter Value

    I think you forgot the S tblEmployees. I would question the join on a field where I can’t imagine being a primary key in either table.
  12. DHookom

    need very basic help due to aging and not working

    Can you open the mdb files?
  13. DHookom

    Adding days to Now() but with specific times

    I would use a data driven solution (maybe a couple lines of code) where the number per day and times are stored in related tables. A plan with twice a day at 8 AM and 8 PM become a record in tblMedPlans with two related records in tblMedPlanTimes with TimeOfDay of 8:00 and 20:00. There is also a...
  14. DHookom

    Solved Subform adding blank record

    As long as the subform allows additions 😉
  15. DHookom

    Solved Subform adding blank record

    Can we assume you aren’t referring to the line at the bottom that displays default values but isn’t a new record until you modify any field in the bottom line?
Back
Top Bottom