Recent content by amorosik

  1. 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.
  2. 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?
  3. 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?
  4. 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...
  5. 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
  6. 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?
  7. amorosik

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

    Good question Yes, on other modules, for example modFtpServer module, the intellisense show all vars expected Wait a moment, if i write modVariabiliGlobali.gbDebug the variable is correctly recognized, if i write gbDebug si not recognized As if gbDebug was a public member of a class module...
  8. amorosik

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

    Checked But gbDebug (like other public vars) is defined only on modVariabiliGlobali
  9. amorosik

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

    I exported manually by going over the module and right-clicking, then selecting Export to Text File The result is shown below At first glance, it doesn't seem like anything special. Attribute VB_Name = "modVariabiliGlobali" Option Compare Database Option Explicit 'Public sFiles() As String...
  10. amorosik

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

    "First time" indicates the first time I try compile after the project has been imported from text files "..Do you import into a newly created blank Access file .." Yes
  11. amorosik

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

    Thanks for the suggestion But I just tried importing all the objects from a text files, and the first time I try to compile it, it gives me the problem of undefined variables I absolutely have to continue using the project as before, before exporting/importing, otherwise it won't work properly...
  12. amorosik

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

    Yes, on a standard module On modVariabiliGlobali threre are only variables, no procedures, no functions
  13. amorosik

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

    This is what I did. All global variables are defined within the standard modVariabiliGLobali module and are in the form "Public gbDebug As Boolean" But if I try to use gbDebug in other forms/modules/report/class, the code doesn't seem to recognize them. (All modules have the Option Explicit line)
  14. amorosik

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

    I have a project created with Access 2013, 32-bit I normally use this procedure to export the entire project to a text file and archive it (VCS_ImportExport.bas / ExportAllSource) After the last export, I also followed the reverse procedure, and then tried recreating the project from the newly...
  15. amorosik

    There's a system for Access similar to Gemini Code Assist for Visual Studio.

    Yes, for me too, the main use is on SQL queries. From a formal point of view, the queries are created correctly, and this makes the creation of complex queries much quicker.
Back
Top Bottom