Search results

  1. DHookom

    Solved Forgotten my password

    I use a password manager app on my phone. I suppose if someone murdered me and then opened my phone and app with my dead face, my passwords would be compromised.
  2. DHookom

    Recordset Anomaly

    “Name” is a horrible choice for the name of anything in Access since every table, field, control, object, … has a Name property. Use a name that isn’t a reserved word such as FirstName, LastName, or FullName.
  3. DHookom

    Syntax error "="

    I think the error is: Me.selAlpha & "" = "" What exactly are you attempting to do. There should only be the variable or a control name to the left of the =.
  4. DHookom

    More Advanced Query Assistance

    This is a very simple query once the specifics are made known. Are you looking for a date range? What are the potential value is the Fee Type field? Normally there would be a small table of Fee Types with a combo box to select the appropriate type. A simplified query with one amount of days...
  5. DHookom

    More Advanced Query Assistance

    Does each Group Member pay a fee or is the fee per group? If the start date is February 1st and the end date is February 2nd, is that one day or two? How does Fee Type affect the desired result?
  6. DHookom

    Is there a tool that analyses a table then reconfigures the data field size to be optimum?

    The last I checked, only the first 255 characters of the long text field were included in the index.
  7. DHookom

    retrieving last eventID and second to last eventID

    You can't get "last" without using a date/time field. It would help if you provided some more complete data with the significant fields and some sample records.
  8. DHookom

    Subform going corrupt when adding a field

    Are you changing the subform in design mode as a child of the main form or are you opening the subform on its own to make the update? I prefer to open the subform on its own.
  9. DHookom

    Getting All "Loopy"

    I like Daniel’s information regarding reverse looping. I’ve seen many questions where users have seen undesirable results with forward looping.
  10. DHookom

    Trying to find a 0.00 in list of numbers currency

    I don’t see any code that actually creates a recordset. I think you could use simple DSum() or DCount(). Warnings could be simple Conditional Formatting.
  11. DHookom

    Solved Totalling grouped sub reports

    Add the data to the record source of your main report. Let's say your main report is the employee table and the subreports are based on Employee Hours and Employee Payroll. Create to totals queries of Employee Hours and Employee Payroll that group by employee. Add these two queries to your main...
  12. DHookom

    Behavior of Access VBA with Azure SQL

    I doubt I have an answer but do have questions. Are these action queries? Do they need to allow edits? Can they be pass-through queries? Why are you opening queries? Is this part of your user interface? I would attempt to move as much work as possible to the server.
  13. DHookom

    Open Report in Print Preview

    Try change your code to acViewPrint to see if there is a difference.
  14. DHookom

    Open Report in Print Preview

    Do you get the same view if you use similar code with another report? Do you get the same view in a new Access file?
  15. DHookom

    Solved Count Records in Group Footer

    If you already have the number you are looking for in another query, why not add that query to your report's record source? Join on the appropriate fields so you don't end up with more records than the original record source.
  16. DHookom

    Open Report in Print Preview

    Open the immediate window (press Ctrl+G) and enter: ? acviewpreview This should return the value 2. acViewReport is 5
  17. DHookom

    Solved Count Records in Group Footer

    I would create a totals query that counts the drawings you want counted by the engineer field. Then, add this query to your report’s recordsource, joining on the engineer fields. This will expose the count field in your report’s fields.
  18. DHookom

    Solved Access behaving badly.

    Does this happen in all databases, on all computers?
  19. DHookom

    Some of your might like this... just sharing

    I expect this might have been spam.
  20. DHookom

    Failing to save details for a report

    I asked three questions and you answered one.
Back
Top Bottom