Search results

  1. C

    32 bit Access vs 64 bit Access - HELLLLLP!!!!

    you can use this code snippet to return the access path - it reads the registry Function GetAccessExePath() As String Dim ws As Object Dim folder As String Set ws = CreateObject("WScript.Shell") On Error Resume Next folder =...
  2. C

    Solved Check box on continuous form - affects all rows

    Perhaps this is what you are looking for? https://www.access-programmers.co.uk/forums/threads/a-multi-select-form-using-unbound-check-boxes.323395/
  3. C

    How to interface to Ebay ecommerce system?

    You’ll just have to try harder to join the developer program from a seller perspective. Do you have a seller account? I used Amazon and shopify a few years ago and had to have my client grant me access to their account to download the transaction history to consolidate into production orders.
  4. C

    Pasting table to a post

    Copying and pasting a table or query to a post looks as expected until you save it - then its all code and unreadable. e.g. I copy/paste: but go to preview or save and it looks like this: what an I missing? Query1 PricesOrderedFromFK PricesQuantity RegisteredOn PricesRegisteredBy...
  5. C

    This SQL problem is the MAX() amount of frustration I can handle right now.

    Can you not use last (with a sort)? SELECT PricesOrderedFromFK, PricesQuantity, Max(PricesRegisteredOn) AS RegisteredOn, PricesRegisteredBy, Last(PricesUnitPrice) AS LastOfPricesUnitPrice FROM tblProductPrices WHERE PricesProductFK=34086 GROUP BY...
  6. C

    Auto Insurance

    In the uk we have sites like goCompare, comparethemarket where you can compare house/car insurance, utilities, telecoms, broadband etc We also have insurance brokers who search around for the best deals come renewal time. do you have something similar in the US?
  7. C

    How to interface to Ebay ecommerce system?

    Depends on whether or not the site provides api’s to allow you to do what you actually want. Each will be different, some are provided free, others you pay for a license Review this link for eBay https://publicapi.dev/e-bay-api Search sitename api for others Search ‘rest api in vba’ for how...
  8. C

    The Application.Reset Event

    As can an accdB
  9. C

    Solved How to deal with locking system in MS access safely in point of sales environment

    You don’t show how you are creating the json or the sql to your queries so not sure what to say. Are you saying you will be parsing a query to create the json? And it is the line numbers that need to be consecutive? If so why not use a counter in the the code to create the line numbers at the...
  10. C

    What's your best/worst joke?

    Seen on a card If cats could text….. > > > They wouldn’t
  11. C

    What's your best/worst joke?

    how the fairy came to be on top of the Christmas tree.
  12. C

    SUBFORM CONTROLS

  13. C

    Unable to reduce form's detail size

    try setting the form autoresize to yes
  14. C

    SUBFORM CONTROLS

    what about if there is just 1?
  15. C

    Solved Display Image Conditionally

    confirmed - potentially it could be null for a new record, but when saved it will save as 0. If the field default value is set to 0 then it can never be null (unless your are in the table and swipe left) but it will still save as 0. The only time a checkbox on a form can be null is if it is...
  16. C

    Solved Display Image Conditionally

    I misread the OP’s post, thought they were trying to populate an image control based on this line in the original post Lvl1Img = Lvl1Ck
  17. C

    Solved Display Image Conditionally

    You should be using . Rather than ! And perhaps use the picture property rather than controlsource Me.Lvl1Img.picture = Me.Lvl1Ck.picture
  18. C

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

    We understand that - that is how those API's work. So the question is does your query, when you filter it with prm produce more than one record? If it doesn't then you don't need that loop. And ' somehow it does not work' does not help us to help you. What does it mean? you get an error? in...
  19. C

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

    Why do you need a combo box? Why not just loop through a recordset the same as the combo rowsource? Or just loop through your querydef - probably need to to remove the prm
Back
Top Bottom