Search results

  1. DHookom

    I prefer to keep all questions and answers in the forums where crowd sourcing provides superior...

    I prefer to keep all questions and answers in the forums where crowd sourcing provides superior support.
  2. DHookom

    Access Based Media Manager

    You already have a document type field. I’m not sure if you could simply categorize the document types.
  3. DHookom

    Future of Access

    I wasn't aware of this. I had met him at an MVP Summit.
  4. DHookom

    Solved Select Query on 10k or Seek on Millions Faster?

    IIRC, seek doesn’t work with a linked table unless you use the remote DB rather than currentdb. You could also test and report back 😉
  5. DHookom

    Ray Casting 3D Maze in MS Access

    Did you attempt to compile your code? There is "Option Compare Database" twice in Module1. I also get an error "Method or Data Member not found" on this line. Set lbl = frm.Controls.Add("Label", ctrlName, True)
  6. DHookom

    Ray Casting 3D Maze in MS Access

    Compile error with Compare database and mouse clicks/key presses seemed to do nothing.
  7. DHookom

    Access Continuous Form Report

    Do you have any code in the Open event that moves to a new record? I just created a continuous form using the wizard and it opens to the first record requiring me to scroll down to get to the last or a new record.
  8. DHookom

    Access Based Media Manager

    Inventory in a table would need to be refreshed regularly. However I wanted to create a snapshot of all my files (mostly images) to look for duplicates across multiple hard drives. I asked AI to write the code for me. I just added the ability to store the file type based on this thread. Sub...
  9. DHookom

    Access Based Media Manager

    What do you mean by “index”? Do you simply want an inventory of file names with specific extensions?
  10. DHookom

    Need to print a crosstab report without complete data

    I asked for a query with "User/client, Standard Action, Challenge/Day Type, Date, and the numbers displayed" and you provided a query in post #88 with User, Action, Loop, WeekNumber, Index (?), StartTimeAchievmentDays (?), StarTimeEngagementDays (?), ActivityAchievementDays (?)...
  11. DHookom

    Row Height of subform reverts back

    Do you have any “save” code in your form/subform? I don’t recall ever experiencing a row height saving after closing a form.
  12. DHookom

    Combox uses 'wrong' value list

    For the same reason @Ken Sheridan limits value lists to immutable values, I rarely use Yes/No fields. I have run into too my projects where values aren’t that black and white so a “kinda/maybe” needs to be added as a choice.
  13. DHookom

    Solved Add Record VBA Not working

    I expect the subquery with the TOP 1 could be replaced by DMax(). If there are a large number of records, this would be very inefficient.
  14. DHookom

    Solved Add Record VBA Not working

    I would try remove this section of the query ( SELECT TOP 1 A.SalaryAnnual FROM tblSalary AS A WHERE A.IDSalary < tblSalary.IDSalary ORDER BY A.IDSalary DESC ) AS PreviousValue, [SalaryAnnual] -...
  15. DHookom

    To Merge or Not To Merge... Backends

    If you want to maintain referential integrity between your tables, they need to be in the same ACCDB file. You must also consider the combined size of all the tables since Access has a size limit.
  16. DHookom

    Solved Age calculatoion Function

    Doug Steele has a more complete age calculation function.
  17. DHookom

    Help with moving Access database

    The path is a folder, not a file.
  18. DHookom

    “Add A New Record” function is not working

    I suggest you review this thread about saving records in a bound form.
  19. DHookom

    Help with moving Access database

    I have mapped a folder on my drive as a hard drive using instructions like this. Then add any required subfolders and place your back-end there to relink. This creates a similar environment.
  20. DHookom

    Help with moving Access database

    Each user should have Access untimely installed and their own copy of the front-end file. The f-e must be in a trusted location.
Back
Top Bottom