Search results

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

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

    This is truly incredible (at least for me). Program1.accde becomes program2.accde after some changes to the 'articles' form. Both program1 and program2 work correctly on the development PC, with Win10 with Access 2013 32bit Let's move to user PC2, a Win10 pro pc, where only the Access runtime...
  7. amorosik

    How to read IP Address of 'actually used' lan nic?

    Normallly, using this code, ALL pc ip addresses are returned But wanting to know exactly the address of the wired or wireless network card that pc is using, how to do? I ask this beacuae if the pc has two lan ports on the motherboard, a wifi card, and a virtual lan like those installed by...
  8. amorosik

    How to display a 'running total' on a report preview AND on pdf/print?

    I have a report that needs to display rows composed of a DARE field and a AVERE field, and a third field that I will call SALDO that contains the difference between DARE and AVERE added to the SALDO field of the previous row A basic example is attached There are global variables for the report...
  9. amorosik

    Single project composed of different sections - how supply different versions?

    Let's suppose we have the classic management software to make sales documents, accounting, warehouse, e-commerce, etc... Different 'sections' each with a specific macro task, each section composed of different forms, reports, modules And let's suppose we want to provide gigi with the version...
  10. amorosik

    Differences in date management between Win10 and Win11

    I have a procedure created with Access 2013 ver 32bit that runs on Windows 10 pro It uses data present on Firebird 3.0 and the tables are connected via odbc using the odbc driver version 2.0.3.154 Everything works correctly I pass the same project on a Windows 11, Access same version, Firebird...
  11. amorosik

    How to use a search form by launching it from different forms?

    I have a procedure for administration and therefore the usual screens for articles, prices, invoices, etc. Some search forms can be launched from different forms, for example the form frmArticoliCerca can be launched both from frmFatture and from frmArticoli and from frmClienti I do not know in...
  12. amorosik

    What prevents Access from using the full power of the PC?

    Sometimes it happens that an Access procedure is busy for a long time For example, when I export a project of hundreds of forms and reports, using the Vcs procedures, the sequence of operations lasts over ten minutes I'm talking about code that is executed and databases locally, and therefore...
  13. amorosik

    How to read the Funct/Sub name from Vba code?

    In order to implement effective error handling, it would be useful if from code you could read the name of the sub/function inside which the code is running A sort of Me.name for forms Then the question is: how to read, via vba, the name of the function/sub inside which the code is running?
  14. amorosik

    Monaco Sql editor - exactly why we should use it ?

    One of the most important features in the new version of Access is the Sql editor Monaco I tried to use it, but I can't fully appreciate the improvements made For those who have already had the opportunity to use it, I would like to ask: exactly, why use the new Sql editor?
  15. amorosik

    How to make a large project?

    Sometimes these are projects with a few dozen forms, tables, and some code modules But sometimes we are faced with projects that have hundreds of forms, hundreds of reports, dozens of modules even with a lot of code, and in this case we often get close to the limits of the Access environment...
  16. amorosik

    Using the Access program installed on Terminal Server

    I have a computer that we will call PC1 that installs Windows 2022 server as the operating system The terminal server service has been activated on this PC There are 10 different users on PC1, user1, user2, user3, ... In the directory C:\PUBLIC\ERP2\BIN there is the ERP2.ACCDE file created with...
  17. amorosik

    Who keeps Access opened 2 ?

    Suppose we have a server database and many workstations each with its own copy of the Access procedures In this situation it is not possible to use the laccdb file because each workstation will have its own How to detect (from any workstation) which workstations have the Access program running...
  18. amorosik

    Combobox behaving strangely

    I need your help with a problem that sometimes comes up A form with some comboboxes and other objects Inside the RowSource property of the combos are linked to the underlying db Some combos behave strangely in the sense that if I type in a value that is definitely present among the lines...
  19. amorosik

    Twin Basic - what do you think?

    Have any of you already 'got your hands' on the available versions or have you done any experiments? Searching for information and using the little word 'database' you can't find much What do you think?
  20. amorosik

    How to limit usability of Access objects per user?

    How to implement a generic functionality limitation system for some users of the Access procedure? Let me explain, let's suppose that the access to the Access procedure is granted to users user1, user2, user3 Suppose you want to allow the user user1 to do everything, the user2 to do everything...
Back
Top Bottom