Search results

  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.
  16. amorosik

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

    Yes, of course, I already use the various LLMs to propose code fragments and review and improve existing working code. What I wanted to understand was whether there was something integrated into the intent of the development environment.
  17. amorosik

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

    Using Visual Studio, you can appreciate the ability of external extensions like Gemini Code Assist to support developers in creating new code fragments useful for the current project. For all non-specialized tasks that require specific optimization, the assistant is an excellent tool and allows...
  18. amorosik

    An AI accidentally deleted an entire company database

    https://www.tomshw.it/hardware/piattaforma-ai-cancella-database-aziendale-per-errore-2025-07-21 ...Its automated system deleted an entire company database containing thousands of records, then attempted to cover up the incident with what many called "dishonest behavior." ... It's learning to...
  19. amorosik

    Filter property or sql Where? OrderBy property or sql Order by?

    Yes this is what happens if you have tables connected to a db server
  20. amorosik

    Queries stopped working, & the tool bars disappeared in MsAccess 2003

    Via vba: For count = 1 To CommandBars.count CommandBars(count).Enabled = True CommandBars(count).Visible = True Next count
Back
Top Bottom