Search results

  1. E

    Seeking a Moderator for the Moderators

    It's just a suggestion. But someone or something has to judge the judges. It's a must, just look at your staff: Holy... lies on top of rudeness on top of insults. Speaking of which, I suspect it was you, @The_Doc_Man, who moderated my mention about the site still having posts . Why was that...
  2. E

    Seeking a Moderator for the Moderators

    You are referring to the individual who initiated a thread titled "T. is still the world's best bet." How hypocritical. And this is not the only example I recall. It is rather convenient for @Uncle Gizmo to make such a statement, considering he himself started and contributed to numerous...
  3. E

    How can I create an Access extension for editing code following a particular key combination?

    I said it's forum etiquette, not that there is a special set of guidelines. Aside from expressing gratitude, it is important to give collaborative constructive feedback so that the helper knows their suggestion helped and how. Simply saying thanks could also mean "I didn't actually check, but...
  4. E

    Seeking a Moderator for the Moderators

    Here's another suggestion: - Add a special Like/Dislike function for moderator decisions and democracy will take over. The other day I had my comment moderated, it was a comment about the person this thread was started for, who knows why my comment was moderated, but you can bet I'd click...
  5. E

    How can I create an Access extension for editing code following a particular key combination?

    @amorosik Some forum etiquette suggestions: If someone provided you with code, let that person know how it went in detail. If someone went the extra mile and provided you with a working example of what you're asking for, give feedback, a simple thank you is not feedback, by the way. You should...
  6. E

    What pc hardware/software to speed up Microsoft Access?

    The best OS you can get is, again, I'm repeating myself because you don't seem to be reading all your replies, Windows 11, despite its flaws. MS Access is a Windows-only program and the only up-to-date and maintained Windows OS is Windows 11 right now. You want to use an actively maintained OS...
  7. E

    Form with subform in transaction

    Ken, your alternative in post #15 is not the point, my suggestion is to avoid parent insertion in the same moment you're adding children, regardless of where the user selects a parent. - The OP has not replied in days, and it's a new user, might never come back - The requirement is clear, but...
  8. E

    Form with subform in transaction

    Hmm... OP says this And you say this: It's not about forcing records, Ken, but the opposite, it's about cancelling records with no problem. From a user-experience point of view, after testing your suggestions, that type of solution is incredibly annoying. When a user tries to cancel an...
  9. E

    What pc hardware/software to speed up Microsoft Access?

    Hardware: use the best that exists OS: Windows 11, you don't want to use an outdated OS Configuration: Only the Access install and Windows 11 Add SQL Server and the ODBC Driver to the configuration. Access will use as many system resources as the processor can allocate to it. When your CPU has...
  10. E

    Form with subform in transaction

    Save yourself from a lot of headaches and: 1. Create a continuous form that displays all the parents. This form is where you will add parent records. Do not add child records in this form. 2. Create a separate continuous form for adding child records. You can only access this form by selecting...
  11. E

    How Sql Server can interact with Microsoft Access (or other application) ?

    PMFJI, the websocket solution does not care at all about any of these supposed problems, it only cares about who is connected to the websocket, and whoever is connected, it will receive the message. You can then choose what to do with the message by using the event in code in any way you want...
  12. E

    How Sql Server can interact with Microsoft Access (or other application) ?

    Think of it like a group chat. PC1 says hello, PC2 and PC3 see it because they are connected to the same chat window. A chat service is a Websocket too. The 3 workstations must have a web browser control connected to the same websocket. And on message, all workstations react at the same time...
  13. E

    Close worbook vba not working.

    Not sure Application.Quit will run after you've chosen to close the workbook, so simply quit the application, I think you've already chosen to ignore changes by using the Saved=True property. Sub QuitExcelNow() If Application.Workbooks.Count > 1 Then ThisWorkbook.Saved = True...
  14. E

    How Sql Server can interact with Microsoft Access (or other application) ?

    Indeed, it's not the same if the record was affected from access, a terminal command, or external client. Identifying the source of the modification is the first step, and it's there where you have to add the code to do additional stuff, if such environment allows it.
  15. E

    Edge browser open external window

    Logging into a website from an external browser won't log you in from the edge browser window, they're both different browsers. Opening the default external browser could be done with this: FollowHyperlink "https://www.wikipedia.org" Opening a particular browser, like Edge, to a website could...
  16. E

    How Sql Server can interact with Microsoft Access (or other application) ?

    Just remember that web browser controls can send notifications through websockets. If the client used to update the record is Access, you can set it up so that this instance of Access sends a message to other clients once the record is updated. Any other Access clients connected to the same...
  17. E

    Currency from US$ to GBP

    Traversing all objects is easy, but what you want to do with that is tricky. For example, you can use Application.CurrentProject, then... If it's forms, use AllForms: Sub TraverseForms() Dim f As Object For Each f In Application.CurrentProject.AllForms 'do something with the...
  18. E

    How to always set focus on the control on parent form after entering data in the subform

    I made a few extra tests and I see that directly executing the query shows the same behavior and I think it's because of the requery method in the context of the after update event. I've never worked with barcode scanners, but I think you'd be much better using the change event + the .text...
  19. E

    How to always set focus on the control on parent form after entering data in the subform

    I suggest you simply set focus to another control from the main form before you set focus to txtProductCode. Me.sfrmPosLineDetails_Subform.Requery Me.SomeOtherControl.SetFocus ' change the name Me.txtProductCode = Null Me.txtProductCode.SetFocus This might be one of those cases...
  20. E

    Pat Hartman has left the building

    Although I've been around for a much shorter time than most of you in more than one way, my interactions with Pat Hartman were always somewhat complicated, even in threads where she was seeking advice. A number of new users expressed similar frustrations, and some even stopped posting, possibly...
Back
Top Bottom