Search results

  1. RonPaii

    DLAST FOR DATE SERIAL

    I don't see were Plog was rude unless a post is missing, but stated that the code was hard to follow and provided a possible solution.
  2. RonPaii

    Access and Azure SQL - Interactive Entra Authentication

    If they are not hybrid joined your local AD and 365 are operating independently. To login into the AD the computer must be joined to that domain. The compute does not need to be joined to 365, though they can be.
  3. RonPaii

    Solved Do Calculations Inside Decimal Data-Type Suffer Memory Truncation?

    According to Microsoft SQL documentation the intermediate results will have the same type as the components. https://learn.microsoft.com/en-us/sql/t-sql/data-types/precision-scale-and-length-transact-sql?view=sql-server-ver17
  4. RonPaii

    Large .accdb gets corrupted

    Save edits before connecting to the telephone system.
  5. RonPaii

    Large .accdb gets corrupted

    500 controls on a single form points to a usability issue not corruption unless it also opens and hold locks on 100s of tables.
  6. RonPaii

    Solved Do Calculations Inside Decimal Data-Type Suffer Memory Truncation?

    Intermediate rounding can case loss of precision. I would think the intermediate calculations like (A*B) would be determined by the types of A and B but even if they are Decimal(38,26) unless one or both had 26 digits to the right of the decimal or one or both are less than 1, rounding to 26...
  7. RonPaii

    Large .accdb gets corrupted

    I don't see using older computers causing a problem, unless they have problem network cards or are crashing while your application is open. I am just now replacing some computers this old but they have been connecting to a BE with 30 other users without issue. You may want to verify that none of...
  8. RonPaii

    Solved New detail records being added despite disabled button in master form

    For your customers with employees, properly securing the computers will help but if you suspect fraud, Access BE and possibly FE is the wrong tool. Let the owner know what's happening and what can be done to detect and possible prevent it. For single user customer, explaining the issue should...
  9. RonPaii

    Table Design and Efficiency Help

    Thank you for the reply. I'm not trying to be contrary. The only issue I have with your design rules is that from a quick reading of your query, it's not immediately obvious which ID is the primary key and which is the foreign key. Where if ID is always the primary key then your query becomes...
  10. RonPaii

    Solved HELP WITH VBA ON SUBFORM

    The query in strSQL only returns 1 column, the screen shot shows 3. Where are those other columns coming from? Also why are you setting the source this way, strSQL is not dynamic, you should be able to setup the sub-form source in the sub-form, using the links to filter it. After update could be...
  11. RonPaii

    Solved New detail records being added despite disabled button in master form

    You can trap network disconnects and shut down the application. Set the system time from the server time when the application reconnects. If properly configured the domain controller will reset the time within seconds of it being changed. If your users are intent to break you company...
  12. RonPaii

    Solved New detail records being added despite disabled button in master form

    Quick AI search got me to the following x64 code. 1) Net Time: Worked but was slow 2) WMI: Did not work because insufficient rights to make the WMI connection. 3) API: works and is fast. Provide your Domain controller server name. and replace the logger with your own. Option Compare Database...
  13. RonPaii

    Table Design and Efficiency Help

    I don't understand you issue. It's actually the default added by Access if you don't define a primary key. And Yes I know Access has some questionable defaults.
  14. RonPaii

    Solved New detail records being added despite disabled button in master form

    Note: I contract out for server support but do understand the process. On the domain control open "Group Policy Management", on your workstation OU configure "NTP Time from DC". Note: None of my users have local administrator rights on the workstation. This eliminates most of the damage a...
  15. RonPaii

    Table Design and Efficiency Help

    I did handle some of you issues in the "Northwind" sample I posted. In this case there are only 2 property tables based on type of property. Queries filtering on type allow me to line the data to join. I disagree on not using ID as the primary key. It's simple and directly identifies the...
  16. RonPaii

    Table Design and Efficiency Help

    I did use that type of structure for a sample database referencing Northwind. In this case I had 2 property detail tables, one for text properties and one for long. The long properties contained keys linking person and company ID and person/company addresses. In some ways the UI is simpler...
  17. RonPaii

    Solved New detail records being added despite disabled button in master form

    If your computers are joined to an Active Directory domain, they can be configured to get date / time from the server and disable the ability to change the date and time.
  18. RonPaii

    Table Design and Efficiency Help

    I have been playing with using properties MM table instead of storing 1M links in the employee table. This allows me to add properties without needing to touch the employee table. tblStatList could be moved into this system along with employee name and number. PropertyTableID would be the ID...
  19. RonPaii

    Access and Azure SQL - Interactive Entra Authentication

    Are all the computers joined to the 365 domain and configured as corporate devices allowing 365 to manage those computers? This may be the difference between the computers that are working and those that are not. Check Intune devices.
  20. RonPaii

    Closing Form Instances

    I did have a issue with 2 forms that held a reference to each other. My solution was to add a public "Close" sub to each form, allowing closing the form though the reference before setting it to nothing.
Back
Top Bottom