Search results

  1. 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...
  2. amorosik

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

    Checked But gbDebug (like other public vars) is defined only on modVariabiliGlobali
  3. 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...
  4. 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
  5. 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...
  6. 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
  7. 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)
  8. 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...
  9. 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.
  10. 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.
  11. 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...
  12. 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...
  13. 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
  14. 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
  15. amorosik

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

    Which is the best way to select rows in the current recordset? How do you filter the recordset to display on a form/report? Are there any specific reasons for using the first or second method? Personally, I almost always tend to use SQL string selections, which are then passed in their entirety...
  16. amorosik

    If ANY libraries are missing from the references, the date() function won't work.

    In my case, the offending library was the last one (the first four aren't visible in the list, but they're there; the cursor is at the bottom to show the missing library) And no function contained in it was ever called from code But even in this case, and therefore regardless of the loading...
  17. amorosik

    If ANY libraries are missing from the references, the date() function won't work.

    That's exactly how it is :ROFLMAO:
  18. amorosik

    If ANY libraries are missing from the references, the date() function won't work.

    I'm referring to a problem I recently encountered Discussing with some colleagues, it seems that the lack of any external references impacts the correct functionality of date-related functions Does anyone know the reason for this strange effect?
  19. amorosik

    Program1 works fine, program2 doesn't, due to a date problem, but code inside are the same

    In fact, even with the Erp2_Function1 library loaded, everything works correctly now. I forgot to register the DLL file. :mad:
  20. amorosik

    Future of Access

    I've used CR from version 5.0 onward on projects created with Visual Basic 6.0. Even recently, when it entered the SAP umbrella, I used version 2020 to print reports and allow the end user to edit them independently In my opinion, it's an excellent tool, superior to Access's native reports
Back
Top Bottom