Search results

  1. amorosik

    Serial COM Ports in Access VBA

    There is a HOWTO file Before starting, note that these functions are intended for use on Windows PC only. Required Microsoft Office applications (Excel, Word) should be installed on the PC. Functions will not work with Online Office versions such as Office 365, Outlook etc. Macros must be...
  2. amorosik

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

    I think the best solution is to reproduce the functionality of MsWinsck with an external library I think it's one of the ways to make communication asynchronous with respect to events So, even though it's the most difficult path, and I don't know where to start, I'm going to try to implement...
  3. amorosik

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

    No timer If you set it too fast, it wastes a lot of time unnecessarily If you set it too loosely, messages risk arriving very late I'd like to have an event-based system, and therefore probably, as The_Doc_man says, an external thread (what mean exactly??? ) that performs the synchronous work...
  4. amorosik

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

    But how does a communications library like MsWinsck receive messages on the open communications channel? If you use MsWinsck.ocx, you can use the DataArrival event and, when it's invoked, read the received message I'd like to achieve this same functionality I'm not sure how to do it yet, but...
  5. amorosik

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

    Thanks for the suggestion But I've already seen that code, and it's blocking On linelResult = Recv(Sockets, buffer, bufferlen, flag) everything stops until data arrives And this isn't what I'd like to use I need a system that, once the socket is opened, receives incoming data via an event An...
  6. amorosik

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

    A big problem with MsWinsck.ocx Does anyone know if there is a version for use with 64-bit Access?
  7. amorosik

    ChatGPT

    Even without 'the number' it returns the correct answer
  8. amorosik

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

    Is there an automatic system for converting Access code from 32-bit to 32/64-bit? I'm asking this because, after manually adapting some parts, I see that it essentially involves duplicating the definitions of functions called from external libraries and adapting the code by replacing the Long...
  9. amorosik

    Ghantt charts

    The code is exactly what user pekajo requested This is your opinion; it seems like very interesting code to me And considering that it allows adding new tasks and dragging and dropping individual tasks, including changing interactively their duration, in my opinion it's better than many other...
  10. amorosik

    Ghantt charts

    No, I haven't used it But I know for sure it's there because I've seen it It's not clear why you're asking these questions; you can easily check it out yourself. EDIT: So out of curiosity, I tried, there is Demo_GanttChart.zip file that contains the WorkingModel_board-final-2023-07-04.accdb...
  11. amorosik

    Ghantt charts

    Aleksander provides free example apps, source code, excellent source code And it doesn't seem to be explicitly asking for money Of course, if you send him something, he's probably happy Not because of the money, but because it means his work has been appreciated 😁
  12. amorosik

    Ghantt charts

    https://isladogs.co.uk/aeu-17/
  13. amorosik

    How to update current application and maintain the current version?

    1. yes, I hadn't thought about having the latest version do the work directly 2. Dim WshShell As Object Dim oLink As Object Dim percorsoDesktop As String Set WshShell = CreateObject("WScript.Shell") percorsoDesktop = WshShell.SpecialFolders("Desktop") Set oLink =...
  14. amorosik

    How to update current application and maintain the current version?

    I have a procedure that I'll call procedure10.accde, which is normally launched from a desktop icon whose properties contain the path and name of Procedure10.accde Procedure10.accde (and possibly subsequent versions) are connected to data on a database server via an ODBC driver A function within...
  15. amorosik

    AcChess

    This project is truly spectacular. A perfect example to bring to the attention of those who persist in viewing the Microsoft Access development system as a simple form and report builder. Congratulations, great work.
  16. amorosik

    A Paradigm Shift in Efficiency - Claude Sonnet 4 + Gemini CLI

    And how do you send them all together to the Claude system? And can Claude 'understand' the program flow?
  17. amorosik

    A Paradigm Shift in Efficiency - Claude Sonnet 4 + Gemini CLI

    What you mean exactly "..which has a copy of my whole project as text files.." ??? You have exported all the objects contained in an Access project using tools like vcs-access ? And can you have them analyze a project composed of hundreds of files?
  18. amorosik

    Variable defined as Public on a standard module, is not recognized

    Copied the contents of modVariabiliGlobali to a text file Deleted the modVariabiliGlobali module Compacted the project Created a new module, named modVariabiliGlobali2 Pasted the contents of the text file into the new module Now debug/compile correctly Access probably somehow 'marked' the module...
  19. amorosik

    The printer does not cut on each record

    Hi Mario, we use a Custom Kube with thermal paper, and for full cut/partial cut paper, on properties of printer driver, we have CUT MODE
  20. amorosik

    Variable defined as Public on a standard module, is not recognized

    "...a list of globals like that..." Exactly, what list of global variables wouldn't be a very serious design flaw?
Back
Top Bottom