Search results

  1. X

    Creating AppBars in MS Access Applications using some APIs

    This example shows how to turns a popup Microsoft Access form into a special always-visible sidebar or top/bottom bar on your screen — similar to the Windows taskbar, but completely customizable and made for your database application. Main things it can do: Sticks to one edge of the screenYou...
  2. X

    Increasing the MsgBox window size (largest font, window & buttons)

    This example shows how to modify the behaviour of the MsgBox function by increasing the font size, buttons and window. It's far from being perfect, but it can be useful as a starting point for those who want customize larger MsgBox messages. Some examples:
  3. X

    Converting a standard Access MsgBox to a Dynamic MsgBox with timeout.

    Surely this approach can be used into your function, but AFAIK only for the old MsgBox style, not for the new ones that can be used in MS Access 365.
  4. X

    Converting a standard Access MsgBox to a Dynamic MsgBox with timeout.

    After reading this article by Colin Riddington also known as @isladogs : https://isladogs.co.uk/msg-box-timeout/index.html I've been experimenting with this topic and discovered that we can change the title, message, or button caption of a standard MsgBox after it has been displayed using some...
  5. X

    printing labels to selected rows/columns

    Look at this article by Colin: https://www.isladogs.co.uk/print-labels/index.html
  6. X

    Selecting files & folders in a textbox form by dragging them from Windows Explorer.

    Selecting files/folders using Windows API. I don't think this topic is new, but I couldn't find an easy way to drag one or more files from Windows Explorer and drop them into a textbox, so after doing some AI research, I ended up with this database. Warning! In 32 bit MS Access this code is...
  7. X

    Calendar template

    Choose one: https://www.access-programmers.co.uk/forums/threads/date-pickers-calendar-controls-and-calendar-resources.315041/
  8. X

    Save the clipboard history for reuse

    This example shows how to save any text from the clipboard to a table so that it can be pasted later anywhere.
  9. X

    Solved Cleaning up a Mess

    Yes. Years ago, I did what you want to do in a project and I've always regretted it. I remind when I wanted to add a new API module it, was a pain!
  10. X

    Solved Cleaning up a Mess

    My point is that's a good idea to delete #if VBA7 conditional if not needed but it's a bad idea to move all the APIs to a single module because : - Sometimes the same API can use different parameter types on its declaration on different utilities. - Having a module for each utility or utilities...
  11. X

    Adding badges over the Access taskbar icon

    I'll try to explain but it's not easy for me. By default, when you open several databases, they are stacked on the same taskbar button. Example of two MS Access instances on the same tasbar button (Bad!): You have to manage to open every MS Access front end on a different Taskbar button, for...
  12. X

    Adding badges over the Access taskbar icon

    Hi @KitaYama , According to my tests if there are several front ends opened on the same computer, each one must have its own taskbar button, if they are stacked on the same taskbar button it doesn't work properly. I hope this helps. I've only tested it on two monitors with no issues:
  13. X

    Adding badges over the Access taskbar icon.

    This code allows you to place a small status icon (e.g., a red circle, a green check, or a number icon) over your Access taskbar button. It also allows to create and display dynamic images (using GDI+) over the taskbar button. Some examples: If you are opening multiple front ends on the same...
  14. X

    Can you set up two lines of text in the title bar of a pop-up form?

    Yes, I know it doesn't work on standard forms because they are not top level Windows as popup forms are. Thanks for your feedback. :)
  15. X

    Can you set up two lines of text in the title bar of a pop-up form?

    Are you sure it is a popup form? Arnelgp's form has rounded corners, but yours doesn't.
  16. X

    Can you set up two lines of text in the title bar of a pop-up form?

    This week I came across that I can set up a two-line title in pop-up forms, but not in standard forms, using some code like this: Me.Caption = "First line " & vbCrLf & " Second line" According to my tests, it only works in Windows 11 and on popup forms, but some people have reported...
  17. X

    Solved Forgotten my password

    Database password or VBA project password?
  18. X

    Cannot run web page login code using the Edge browser control

    I don't use the Edge WebBrowser control, but I tested it when I watched this interesting video by Richard Rost:
  19. X

    Cannot run web page login code using the Edge browser control

    Yo have to use JavaScript to "talk" to new Edge Browser. Try something like this as starting point: Option Compare Database Option Explicit ' Using generic Control to avoid "Type Not Defined" errors Private BrowserControl As Access.Control Public Sub Kedi_LogUserIn(frm As Access.Form) If...
Back
Top Bottom