Search results

  1. moke123

    Possible stream voor access???

    What is this supposed to do?
  2. moke123

    MAGA

    Don't know what the maga carta is, but I'm sure it's nothing like the magna carta .
  3. moke123

    This will oust the corruption of transgender

    When I read the decision it appeared to me to be a very narrow finding which only applied to the definition in that particular Act of 2010. Do you guys have some sort of a "gender certificate" for trans people?
  4. moke123

    MAGA

    I agree. They look at the history, theories, principles, logic, etc. as guidance, not as binding law.
  5. moke123

    Listbox ItemsSelected returns NULL item on first call - but not if debugging - not a DoEvent problem

    Any code related to the list box besides the items selected? Bear in mind that a list boxes value can be set to anything in code, even values that are not in the list. If you're setting the value on load with .itemdata(0) I believe you get a dotted outline
  6. moke123

    Solved VBA AfterUpdate event

    So your basically using a fiscal year 4/1/2025 to 3/31/2026. Does each grant have a different start date?
  7. moke123

    Solved VBA AfterUpdate event

    Are you dealing with fiscal years? Function GetFiscalYear(Dt As Variant, Optional StartMonth As Integer = 7) As Variant If Not IsDate(Dt) Then Exit Function If Month(Dt) >= StartMonth Then GetFiscalYear = (Year(Dt) + 1) Else GetFiscalYear = Year(Dt) End If...
  8. moke123

    MAGA

    don't you have a preferred search engine? https://www.cnbc.com/2025/04/12/auto-tariffs-sales-costs.html
  9. moke123

    MAGA

    not in other countries
  10. moke123

    MAGA

    No, it just means Steve can't tell the difference between US law and UK law.
  11. moke123

    MAGA

    https://www.bbc.com/news/world-us-canada-64547394 That better?
  12. moke123

    MAGA

    short memory? https://www.forbes.com/sites/mattnovak/2023/02/06/trump-officials-admit-chinese-spy-balloons-flew-over-us-during-previous-administration-according-to-latest-report/
  13. moke123

    Links

    I think your missing the point to NOT use hyperlink datatype. If you must store the full path to a file then just store the path as text in a text field. You can then use vba to open the file as if it were a hyperlink. If you keep the files in folders in the same folder of the database you...
  14. moke123

    Links

    unfortunately you've used hyperlink datatype. see this link - https://codekabinett.com/rdumps.php?Lang=2&targetDoc=access-hyperlink-data-type It's much easier to use plain text to store a path and vba to follow it.
  15. moke123

    Links

    Here's an example i made for someone on another forum. It does not store the path to any files. when the database is opened it creates a folder named Clients in the same folder as the database. When you enter a new client and open the client form, it will create a folder for that client within...
  16. moke123

    Trump Administration Predictions

    And you're suprised? https://www.foxbusiness.com/media/ex-biden-treasury-official-rips-trump-admin-citing-data-tariffs-says-white-house-got-wrong
  17. moke123

    Trump Administration Predictions

    Had allies. It's questionable now.
  18. moke123

    Trump Administration Predictions

    @40 years. Pretty sure a lot of us will be dead by then.
  19. moke123

    Trump Administration Predictions

    It took over 2 years to get a deal with mexico and canada. How long do you think it will take with 70 countries?
  20. moke123

    Links

    A lot depends on how your file folders are set up and how your Pdf's are named. I tend to have one main folder with subfolders. The subfolders are named for each client and hold just the files related to that client. That way I don't have to store the path to any file or worry that any 2 files...
Back
Top Bottom