Search results

  1. Minty

    Solved It takes too long to download data from server

    Something well worth noting from a performance perspective is to use named parameters in your pass through routines when running repetitive operations. SQL server will reuse the query plan instead of creating a new one every time. This is a really simplistic example to demonstrate, but instead...
  2. Minty

    Solved How to update bulk selling prices at one go

    I'm intrigued by what you think this line will achieve: SET [Sales]=Not NZ([Sales],0) I doubt it's what you think? Have you examined the values. Have you tried a simple select query to "see" the possible results? SELECT Sales, Not NZ([Sales],0) as MyNewValue FROM tblProducts
  3. Minty

    Access and LOTS of users

    I think 23 years has won... By some considerable margin. 😁
  4. Minty

    7 Gigabits Per Second WAN Bottlenecks

    If the combo's are lookups and normally static values then load them into a local cache table on the FE database when you open it. Things like employee lists, state codes, Countries, Currencies etc. that are frequently used and rarely change can and should be loaded into a local lookup table for...
  5. Minty

    How can I create an Access extension for editing code following a particular key combination?

    I think I am adding a pretty rare ignore here.
  6. Minty

    Other user can't open SQL Table in Access

    Just a correction: Version 18 of the ODBC driver works fine with Access, we use it with quite a number of clients. Not sure why you would be having issues with it. Edit: apologies I missed both Ron and Tom's earlier reply. Doh!
  7. Minty

    Solved Book & Research Recommendations Azure BE > Access FE

    @dalski If you can get used to writing the queries in SQL Server, the syntax is virtually identical bar a few things (Text delimiters, Date Formats and string concatenation are a couple that spring immediately to mind) Get used to using YYYY-MM-DD. You will then avoid some of the gotcha's...
  8. Minty

    Solved Book & Research Recommendations Azure BE > Access FE

    I'm not aware of any books covering the potentials and pitfalls of using Azure and Access as FE I'm afraid. I have however developed a number of apps with exactly that set up, and most of what I know is based on experience and finding out the hard way... You should move any FE functions into...
  9. Minty

    Solved How get lid of domain function and replace them with opening recordset in MS Access VBA

    Colin has done soe extensive testing on query speeds - this one is specifically on DCount() but it demonstrates that it isn't intrinsically slow. https://isladogs.co.uk/speed-comparison-tests-7/index.html You may be getting confused by the advice to never use a domain function within a query...
  10. Minty

    Solved Code running report despite default set to not

    Probably not, but it sort of forces the hand of the database. I've used the same method when Access decides it want to capitalise keywords incorrectly. I'm not entirely sure why it works but I assume it "resets" some internal record/value somewhere.
  11. Minty

    Solved Code running report despite default set to not

    What if you declare it separately as the correct value e.g. Public Const vbDefaultButton2 = 256 Then compile, compact and repair, and check it's value again? Then remove the declaration and see if the correct value sticks?
  12. Minty

    Interfacing Access With Arduino Device

    Bit of a stutter going on here?
  13. Minty

    Bug with LTSC version 2408 ?

    I don't know, however it definitely looks like a bug, as installing the 2021 version has cured the issue.
  14. Minty

    Bug with LTSC version 2408 ?

    @CJ_London That's a interesting idea, and one I hadn't considered, although there have been numerous reboots.
  15. Minty

    Bug with LTSC version 2408 ?

    Is anyone else having issues with LTSC version below? Microsoft® Access® LTSC MSO (Version 2408 Build 16.0.17932.20602) 64-bit I have a client with a mixture of licences and the one above is crashing after initial opening, the will only open in safe mode. The same database file opens fine on...
  16. Minty

    Optimizing a query with multiple LIKE '%abc%'

    They have only very recently been introduced : https://www.sqlservercentral.com/articles/regular-expressions-in-sql-server-2025
  17. Minty

    Optimizing a query with multiple LIKE '%abc%'

    I am happy to be proved wrong but I believe all versions of Azure SQL can have a full text index? I can't see anything here https://learn.microsoft.com/en-us/sql/relational-databases/search/full-text-search?view=sql-server-ver17 that suggest otherwise?
  18. Minty

    Solved Key Events - Ctrl-Delete UnDetected

    I agree with Colin, I always use the KeyDown event when trapping keystrokes. It never occurred to me to try and use KeyUp.
  19. Minty

    Solved Disable Multiple Record Selection On Subform

    Change it to a form that looks like a data sheet, then disable the record selector and add a delete cmd button to the end of the record? That avoids the multi select problem and gives a single click to delete the current record.
Back
Top Bottom