Search results

  1. C

    Off Topic

    Col - you are one sad, miserable git (my opinion) and most people don’t think like you so it will be appreciated if you don’t imply they do
  2. C

    Solved Transforming database from 2010 model or higher to 2003.

    My experience is with northwind - if I download and open with 32bit access, all well and good. If I then try to I open the same file (having previously opened with 32bit) with 64 bit I get errors. Same if I open the other way round
  3. C

    Solved Transforming database from 2010 model or higher to 2003.

    Providing the OP doesn’t then try to open the file. If they do, I doubt their client can. OP would need to provide a new virgin copy
  4. C

    Solved Transforming database from 2010 model or higher to 2003.

    Don’t think the OP has said what the newer version is - if 64bit, it may not convert to 32bit mdb.
  5. C

    Access Based Media Manager

    Way to go👍 I created an app for cataloging photos- it populated the file properties with keywords and used a tree view type form to create and catalog the keywords and view the files in a web browser control But don’t think it meets your requirements as it is not generic enough
  6. C

    Why does one formula work, but another very similar one doesn't?

    Perhaps the OP can provide some example data and the outcome required from that data and clarify what ‘not working’ means - wrong result? Something else?
  7. C

    Conditional formatting: show only border

    if that is a possibility in the button got focus event, transfer the focus to a valid control or even txtCurrent
  8. C

    Conditional formatting: show only border

    use a button (or any control that has a transparent property (not visible)) called for this example btnBorder. Put it behind your controls and size as required. Ensure you have set a border colour and width - this example uses rounded corners In the detail section create a textbox called...
  9. C

    Access instance remains in memory once closed

    hmm - still doesn't for me on win 11
  10. C

    Our programmer set up this form many years ago and I would like to find out where the code is

    I wonder if the OP means the calculation of each value- which could be in the controlsource, the form recordsource or vba on some event
  11. C

    Re-design a wellworking data base

    OK, so you have been provided with some opinions as to the advantages/disadvantages of different ways to achieve your objective. Only you and your organisation can decide which is best for you - or contract with a professional for their advice, When making your decision, bear in mind the...
  12. C

    Access instance remains in memory once closed

    I’m going to look into this suggestion:
  13. C

    Getting data from differently formatted Excel sheets to a table Form/VBA/Import question

    It is easy enough to avoid duplication of entries- left join the import table/query to the destination table and only import those records where the destination table is null Typically join on date, transaction amount and detail and the balance Similarly a simple query to compare opening and...
  14. C

    VBA Code to Email using the Free Version of the Outlook App.

    What are you using to capture the data?
  15. C

    scanning documents

    @Dvorak - suggest you write your question in your native language, highlight it and select translate (to English) then copy/paste the translation to the thread Assuming Spanish: Le sugiero que escriba su pregunta en su idioma nativo, resáltela y seleccione traducir (al inglés) y luego...
  16. C

    Pb VBA

    Translated I would like to go in a form [person-sheet] to a record whose field [PN] of text type is known to me in a variable [father]: DoCmd GoToRecord acDataForm, "[person-fiche]", "PN = ' " Father & " '" But it is not accepted. PN is a text field and father a text What's the problem...
  17. C

    Getting data from differently formatted Excel sheets to a table Form/VBA/Import question

    If you have multiple known formats in terms of layout and column headings you could use excel automation from access to get them in the right order I have a similar issue with bank statements from different banks in csv and xls files. I have a template table that defines where to find each...
  18. C

    Access instance remains in memory once closed

    I'm on windows 24H2 and updates are apparently up to date
  19. C

    Access instance remains in memory once closed

    @arnelgp - that is what I am doing at the moment in the main app
Back
Top Bottom