Search results

  1. MsAccessNL

    How does Access create a continuous form?

    i got the 404 error to..
  2. MsAccessNL

    How does Access create a continuous form?

    I wanted to know how Access creates a continuous form. I understand the confusion with the answer from chatgpt, how to make a continuous form with vba, but that’s not the answer i was looking for…
  3. MsAccessNL

    How does Access create a continuous form?

    Can’t we track the guy who invented this option? Assuming he is still alive, he/she should be out there somewhere. May be we canask this guy: https://www.linkedin.com/in/clint-covington
  4. MsAccessNL

    How does Access create a continuous form?

    I am curious to, but chatgpt is cant’t be accessed for many days know (from Holland), I think they get to many requests. We are already depending on this new feature on the internet.…On the otherside, i am surprised that google (after all these years) stil comes up with all these useless hits...
  5. MsAccessNL

    Solved NotInList Problem

    I would try to put the line “Response = acDataErrAdded” after the exeCute line. I don’t know if this is the solution, but i woutd try it out.
  6. MsAccessNL

    How does Access create a continuous form?

    I am really curious how Access assemblies a continuous form. I tried googling it , and found out that it’s quite a special feature.
  7. MsAccessNL

    The GPT can comment your code.

    I am currently working on a serialized bom inventory system. What kind of products is your inventory system based on?
  8. MsAccessNL

    JSON/Web Scrapping woes...

    The page https://cage.dla.mil/Search/Details?id=70 Gives quite some information, are you looking for specific info from this site?A quicker option is to let Access fill the inputfield with your request, download the whole page with msxml into your database and show it in your webbrowser...
  9. MsAccessNL

    JSON/Web Scrapping woes...

    You have to make a distinction between a rest api request. The provider has to have information about the api and mostly you need the have an api key. On the other hand you have the option to use webscraping. For webscraping you have to inspect the webpage and learn about the xml dom document to...
  10. MsAccessNL

    Solved different aggregates from the same column

    I think you have to look at building a form, there are form wizards to start with. Building a form where you select a contact and a subform will show all his payments and payment details (subscriptions) is easier then building a complex pivot query.
  11. MsAccessNL

    Move or Remove focus from open form

    Breathe, meditate and breathe again. I love you to. The reason i want to do these two commands is not the issue, it would take to much time to explain. (And the user must be lighting fast to change the object between these two commands..) But Please, let’s keep the reply’s restricted to possible...
  12. MsAccessNL

    Move or Remove focus from open form

    Strange, what is your code to set the focus to the control on the main form? Reason: i think i found an easy way to create an Accordeon table/subform view (like on websites) I have to overcome a view small problems like this one.
  13. MsAccessNL

    Move or Remove focus from open form

    I still get an error when i set the focus to a control on the main form first.
  14. MsAccessNL

    Move or Remove focus from open form

    When I run these two commands: "DoCmd.RunCommand acCmdLayoutView, DoCmd.RunCommand acCmdFormView" from a cmdButton on the mainform it will work but from a subform it doesn't. When I move the focus to another openform, the docmd works. My question is to remove the focus from the main form...
  15. MsAccessNL

    Solved Form - Subform Conflict

    There are quite some hits, also youtube, when you google Access Library database. Access has also a working Bookstore/library template, but probaly with macro's in it. https://answers.microsoft.com/en-us/msoffice/forum/all/creating-a-library-system-on-access/9af26480-8c09-46ea-9497-487df8f4a307...
  16. MsAccessNL

    What was/is your "largest" access project

    Thats’s quite an impressive cv you build over the years. I have a client who is looking for a serialized bom inventory system. It’s a small manufacturing company wich produces only 6 (highly technical) products. Do you have any tips on setting up a serialized bom structure with components and parts?
  17. MsAccessNL

    Disable Window Close Button

    i have made an application where with the runtime version (menu hidden) the close button was pressed when closing a report in preview. I made a hidden form, with a msgbox on unload event. Private Sub Form_Unload(Cancel As Integer) If MsgBox("Do you want to close the database?" & vbCrLf &...
  18. MsAccessNL

    Disable Window Close Button

    You forgot to read the copyright text?
  19. MsAccessNL

    Download a PDF file directly from the webpage to computer.

    Can you share the url, i have some code that might work.
Back
Top Bottom