Search results

  1. C

    Bug with LTSC version 2408 ?

    not sure it is related but I have been having issues with access not closing properly - it leaves an access instance in task manager>background processes, doesn't cause access to crash, just won't start. So I would check task manager to see if that is happening to you. If it is, delete or end...
  2. C

    Solved Query advice please

    or you put them in the other way round :)
  3. C

    Solved Query advice please

    that is assuming they are always next to each other Did you look at my suggestions?
  4. C

    Solved Query advice please

    a function can return a recordset - might be one record, might be more. Not clear to me what data is what - is the last column the monitorFK? You could also perhaps use a crosstab query with column set to monitorFK and the two values combined as a value (Systolic & "/" & Diastolic) and then...
  5. C

    Solved VBA Database.Execute("CreateTable...") - Table created in CurrentDB, not the specified DB

    you seem to be missing some code - ws is not declared, what is the code represented by ... and personally I would use dao.database rather than just database
  6. C

    UK Online Safety Laws - I, and therefore the site, are at risk

    There is also If a stupid idea works, it’s not stupid
  7. C

    TV License sorted..

    Not prepared to get into a debate, come and live here to find out how much has gone wrong in the last 15 months or so. It's not just about those particular laws.
  8. C

    TV License sorted..

    No - ever since labour got into power
  9. C

    TV License sorted..

    BBC is getting a lot of stick for: 1. Biased reporting - DT is threatening to sue for $1b for unfavourably editing a video on 2021 speech, and a report on Gaza broadcast without making it clear it was created by HAMAS to mention two recent activities 2. LGBTQ agenda overly supported- recent...
  10. C

    Solved How to Update a recordset without a loop?

    You can't use TOP with an update query but if you know the recordPK of the first record entered you could use something like this (not tested) with recordsetclone .movefirst currentdb.execute "UPDATE myTable SET identifier="something" WHERE UserFK=" & !userFK & " and recordPK>=" &...
  11. C

    Solved How to Update a recordset without a loop?

    Wouldn’t that be the userid, perhaps with reference to the condition?
  12. C

    How to query db with memory array data?

    Perhaps use a function called by the query to retrieve the in memory data
  13. C

    Pat Hartman has left the building

    Somewhat out of date - message count is about 800 down
  14. C

    Solved Problem with the format property of a combo box.

    Another option (but more work) is to create a bespoke combo using a textbox and a continuous form that looks like the dropdown. Has other benefits such as being able to use colour and/or richtext in the dropdown
  15. C

    Random "unhide this form" prompt

    Possibly - what happens with a form that has no code?
  16. C

    Random "unhide this form" prompt

    I presume your firm is open but hidden. Have you got code in your other forms triggered when they close to set focus or reference that form?
  17. C

    Solved conditional formatting duplicates

    took a quick look at the changes required - if the OP meant what you think they meant, i..e. then see attached - had to modify the query filter slightly to cater for nulls
  18. C

    Solved conditional formatting duplicates

    Agreed, but this is what the OP asked for and provided an image to illustrate and the solution is based on that Not all previous fields If there were three consecutive fields with the same value, the 2nd and 3rd would be highlighted. But easy enough to fix in the function - extend the static...
Back
Top Bottom