Search results

  1. X

    Variable assignment not working.

    I don't think it's the problem, but you can try to add the $ to the function assignment or delete it from the function declaration and add "as string"
  2. X

    Solved Using ACCESS, WORD and OUTLOOK to send bulk E-Mails

    According to this interesting article by Philipp Stiefel (sonic8) the name of the Office 365 SMTP server is:smtp.office365.com https://codekabinett.com/rdumps.php?Lang=2&targetDoc=send-email-access-vba-cdo
  3. X

    Convert acrobat 9.0 PDF to Image .PNG Using VBA Code

    The function original code is from this page: https://learn.microsoft.com/en-us/answers/questions/4768377/convert-pdf-to-image-using-vba-macro
  4. X

    Convert acrobat 9.0 PDF to Image .PNG Using VBA Code

    This function uses PPT automation in MS ACCESS to convert A PDF to a PNG file. No Acrobat needed. (Tested) : 'Set a reference to the Microsoft PowerPoint xx.0 Object Library: 'In the VBA editor (press Alt + F11), 'Go to Tools > References..., 'Find and check Microsoft PowerPoint xx.0 Object...
  5. X

    Convert acrobat 9.0 PDF to Image .PNG Using VBA Code

    Yes, I found it on my Google search first page. I also read it's possible to achieve it using PPT automation (Not tested): Sub SavePDFAsPng(sPathToPDF As String, sPathToPNG As String) Dim oPres As Presentation Dim oSh As Shape ' Height/Width are hardcoded here ' You could get trickier and...
  6. X

    Calculated Field Error

    I totaly agree with you. Sometimes, when I have needed a calculated field that should be indexed, or that it can't be set with the current operators, I use data macros to simulate it. It has been very useful in some projects.
  7. X

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

    If you are searching only one record and the table is indexed on that field, the method seek in a table recordset is faster. The table must be in an MS Access Database, Seek doesn't work on SQL Server.
  8. X

    Calculated Field Error

    No, if you create a calculated field directly in a table (using the "Calculated" data type), Access does not allow you to index it.
  9. X

    End of the Month

    Attached a database with an example using @moke123 suggestion:
  10. X

    Force Exit on Timer

    But if I'm not mistaken with that approach you first have to open the backend databasase where "the linked table if the Yes/No field" is, and it might be corrupted or blocked, etc.
  11. X

    Force Exit on Timer

    It's also a good idea to prevent users from opening the backend database when there are some maintenance tasks to do. In my case when they open the Application, if there is a file called "EnterDenied.txt" in the same directory where is the backend stored they are unable to open the backend...
  12. X

    Error 5 installing V-Tools

    Yes, nowadays V-Tools must be reinstalled when Ms Office is updated!☹️
  13. X

    Error 5 installing V-Tools

    To install V-Tools you must execute MS ACCESS as administrator. How do you open V-Tools in administrative mode but read-only?
  14. X

    Update of stock quantity

    Broken link. Missing an "l" at the end of the URL http://allenbrowne.com/AppInventory.html
  15. X

    Remote desktop vs. browser based web apps.

    If no internet browsers or desktop Outlook used! They are resource eaters.😉
  16. X

    Remote desktop vs. browser based web apps.

    If TS stands for Terminal Server, why only 15 users? The number of users depen on the number of licenses you buy.
  17. X

    Hidden & little known features in VBA and the VBE

    To fix errors on procedures that have "Error handler", I find the "Extra Resume" technique very useful instead of commenting out the Error handler. https://nolongerset.com/the-extra-resume/
  18. X

    Access report "Overflow" error on export to HTML (PDF works fine)

    Hi ramendog, After some tests, I noticed that the problem arises when the subreport has more records that fits on a page (I suspect). For example: Kentucky: KY0- Number of 2024: 125 I've changed the main report recordsource to list only the the states where the subreport has 110 or less...
  19. X

    Accessing an unbiund table

    Try using DMax and adding 1 to the value https://learn.microsoft.com/en-us/office/vba/api/access.application.dmax
Back
Top Bottom