Search results

  1. jdraw

    Best way to test for no records in query

    Richard Rost has a current youtube video on this subject. See this
  2. jdraw

    Mapping VBA Code to show tables affected by VBA

    I agree with Markk. This is the most positive interaction I have had with Chatgpt etc. I took a random click event and asked what it actually does; What does this click event code actually do? Private Sub cmdUpdateRowSource_Click() On Error GoTo Error_Handler If (Me.txtSQL & "") = ""...
  3. jdraw

    Using Access knowledge 25 years after learning it

    Welcome to AWF, Kevin!
  4. jdraw

    Mapping VBA Code to show tables affected by VBA

    Ben, Why did you opt for Excel? I agree with George that analyzers exist, but I don't think they describe what the code does. With Access vba you can identify the buttons on every form, and you could extract the click event code for each, However, I think it will require your looking at each...
  5. jdraw

    Mapping VBA Code to show tables affected by VBA

    Ben, If you post a code example along with the desired result, I'm sure others will understand the requirement and offer some vba solution(s). If it's button clicks, then you're dealing with Forms. Isolate Form controls (command buttons), then the button click event code.
  6. jdraw

    Hi from Australia and a long lost MS Access user

    Welcome to AWF, Peter.
  7. jdraw

    Hello y'all

    Welcome aboard AWF!
  8. jdraw

    Solved Urgently needed a third party QR code generator seller for MS Access Invoices

    Nector, Since this is a forum intent on sharing and community, how about sharing your solution that is working so that others may benefit?
  9. jdraw

    error while form opens

    Have you tried CoPilot or Chatgpt? Just suggesting that some "definition type" questions might be answered quickly via Google/Chatgpt. Question: (to CoPilot) In MS Access what is the corresponding RunCommand equivalent for DoCmd.DoMenuItem...
  10. jdraw

    Hello from the U.K.

    Welcome to AWF!
  11. jdraw

    Looking for Faster way to update Table - boolean field

    Milhouse4118, You may want to review this article and code by Crystal(strive4peace). The purpose of the utility is Loop through all your Access databases in or under a path and copy what's in the system object table (MSysObjects) for each to the documentation database; and get file...
  12. jdraw

    Modifications Table

    See this link for an example using data macros for audit logging.
  13. jdraw

    Strange behaviour with form

    MisterB, Did you save any changes you made to the form's design?
  14. jdraw

    What is a Framework and why would Access developers use one? with John Colby

    Hi George, I did not see the presentation but am interested in most things John does. I'll be watching for the edited YT. Jack
  15. jdraw

    Solved Auto Index

    My thought was this: -manually create the table you need -supply each field and type -identify the proper field as the PK -now the table exists -next run your query to append records to the new table. OR programmatically vba code along this set up to create your table and autonumber Primary...
  16. jdraw

    Solved Auto Index

    SpaceCowboy, Can you define the table with the fields and PK you need and then append records to that table separately?
  17. jdraw

    When a bound form is opened, I need to change, via vba, the autonumber/primary key field from "(New)" to an actual new autonumber

    As has been said, the autonumber field will be valued when the record is saved. It will be lost if the edit( record) is cancelled or deleted. It appears you have a concept of how Access is doing, or should be doing, something, and your current concept is not correct. Autonumbers are unique to...
  18. jdraw

    Hello, World

    Hi Rheged85. Welcome aboard AWF!
  19. jdraw

    How to format date

    You may get some insight from this youtube video by Richard Rost.
  20. jdraw

    New DB advice

    You might try one of the existing M$oft templates Bug Tracking, or Call Tracker or Customer Service. They would give you most of the basics and you can adjust/modify to suit your needs. I agree with George's comments. There are links in my signature Database Planning and Design to many...
Back
Top Bottom