Search results

  1. X

    Updating from Access 2013 to 365?

    I don't think there are a real speed difference on most of databases. CurrentlyI install x64 on my clients but there is no real improvement on my applications.
  2. X

    Error 3828 when creating a CSV from a query

    @andymartin3186, have you tested exporting the query to Excel directly? Does it work properly?
  3. X

    Recordset field not readable after update

    When you call .Update on a DAO Recordset, the current record’s buffer is written to the database and may be repositioned or refreshed — depending on the recordset type and underlying query. This means that the record you were editing might no longer be current, or DAO needs to requery to see...
  4. X

    Help with looping through records

    Another one: RS("EmailID")
  5. X

    Solved Cannot Assign ActiveControl/ Screen.ActiveControl

    Hi @dalski, this tutorial is by Doug Steele. No credits for me, but thanks.😉
  6. X

    Working with form records

    @Mark has explained what the problem is. A simple way to avoid going to a new record is changing this line on your create Invoice button: Richard Rost would be happy to see this database. ;)
  7. X

    DoCmd.SendObject and CDO

    Perhaps these functions are useful for someone. I use them for saving and loading *.MSG Files. I don't remember where I found them: 'For Windows 2000 or later. Requires a reference to: ' Microsoft CDO For Windows Library ' Microsoft ActiveX Data Objects 2.5 Library Function...
  8. X

    DoCmd.SendObject and CDO

    Quick answer: Yes! Some information: https://nolongerset.com/outlook-alt/
  9. X

    DoCmd.SendObject and CDO

    I don't use DoCmd.SenbObject but CDO works properly in Access365.
  10. X

    Adapting automatically Access code from 32-bit to 32/64-bit

    This post is 13 years old, so it might be oudated! I've tested (not worked) with 64 bit MSFORMS in MS ACCESS with no issues.
  11. X

    New to Microsoft Access world, should I invest the time learning it from scratch or go for the C#, SQL Server, and ASP path? Please advice

    After two years of the OP, I would like to know what happened with the project!:unsure:
  12. X

    Steaming STT using AI model

    And continue with this other one: https://www.devhut.net/adding-speech-recognition-to-your-application/
  13. X

    Form sizing / scrolling for smaller screens

    I remembar that once I solved the same issue by changing the user monitor to a much larger one that also had the same recommended resolution (1920x1080).
  14. X

    Access VBA References

    After some tests, it seems that the name that appears in the VBA References "dropdown" is the name of the VBA Project, not the database file name:
  15. X

    Autocomplete Combo Enter/Tab behaviour

    When you have changed the textbox control to a combobox, the combobox tab order of the control has changed and now is the last control in the section. You have two options to avoind going to a new record: - Reorder the controls on the tab order option on the form section (surely detail section)...
  16. X

    ChatGPT

    Yes, like 0.20 is ten times greater than 0.2 🤭
  17. X

    Programmatically construct a constant's name and return its value

    Perhps this approach helps you @riktek: https://nolongerset.com/better-global-constants/
  18. X

    Adapting automatically Access code from 32-bit to 32/64-bit

    I found it when I converted the Lebans PictureBox to 64 bit. ;)
  19. X

    Adapting automatically Access code from 32-bit to 32/64-bit

    If I'm not mistaken, I've seen it when you copy memory addresses using Windows APIs. As you know, memory addresses length are different depending on the bitness. This is the code I've used sometimes ' *********************************** ' #If Win64 Then Private Const PTR_SIZE As Long...
  20. X

    Adapting automatically Access code from 32-bit to 32/64-bit

    Sometimes, converting a database is not as easy as it seems. For example: - You have to change len() to lenB() in some UDT. - When there are copy memory APIs involved, the number of bytes copied must be changed...or not. - Some APIs can be used with different parameters type. - 32 bit OCX...
Back
Top Bottom