Search results

  1. Minty

    How to send filtered transactions in the MS Access Combo box with one Click

    Yes, and your loop sends one record at a time doesn't it? Please, please, please, step through your code and watch what it does!!!! Edit: You simply need to move where your loop statement goes to after this line Response = .ResponseText End With
  2. Minty

    How to send filtered transactions in the MS Access Combo box with one Click

    If you always send all the products you don't need the list box, just use your original query without the parameters to restrict its output and loop through it as @CJ_London suggested. The process should simply be Open your recordset of ALL product ID's Loop round it. Finish You already...
  3. Minty

    How to send filtered transactions in the MS Access Combo box with one Click

    Do you ever walk your code to see what is happening? Ask yourself where the follow lines output get used: strWhere = "[ProductID] = " & selectedProductID At no point are you doing anything with this.
  4. Minty

    Seeking a Moderator for the Moderators

    @BlueSpruce You have a strong opinion of how this site should operate and what it's apparent "problems" are for someone that has only been here for 5 months. Whilst I agree that some of the technical posts had become too political, there has always been a history of solid debate available...
  5. Minty

    Solved Avoid Duplicates Of Multiple Fields

    Be aware that you won't get an elegant capturable error message from Access about the index violation. You'll have to check in the form beforehand for duplication via VBA on a SQL Linked table.
  6. 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...
  7. 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
  8. Minty

    Access and LOTS of users

    I think 23 years has won... By some considerable margin. 😁
  9. 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...
  10. 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.
  11. 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!
  12. 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...
  13. 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...
  14. 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...
  15. 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.
  16. 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?
  17. Minty

    Interfacing Access With Arduino Device

    Bit of a stutter going on here?
  18. 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.
  19. 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.
  20. 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...
Back
Top Bottom