Search results

  1. moke123

    What kind of light arrangement is this

    https://www.homedepot.com/p/Commercial-Electric-Integrated-LED-6-inch-Retro-Fit-Ultra-Slim-Selectable-Color-Recessed-Light-White-Energy-Star-Title-20-Wet-Rated-92012/319788440#overlay
  2. moke123

    Are you cheating on your wife? Be careful.

    Apparently Grok has become obsessed with white genocide. https://www.axios.com/2025/05/14/musk-grok-white-genocide-south-africans-x
  3. moke123

    Invalid use of Me.

    That's because you didn't have "and " in the first instance so when it was null the second instance started with "And " Include "And " in all the instances and then at the end use- strFilter = right(strFilter,Len(strfilter)-4) which will strip off the first "And "
  4. moke123

    Man murdered in 2021 "speaks" at killer's sentencing

    I would say a majority bring notes, especially in big cases with high emotion. It would seem to be "Hearsay" but since it's post conviction that wouldn't preclude it. There's generally a lot of latitude. I could see it possibly being an issue in a sentencing appeal. Often victims / families...
  5. moke123

    Man murdered in 2021 "speaks" at killer's sentencing

    Interesting. I'm going to pass it around the office and get some opinions. My initial take is it wouldn't be allowed but evidently it was.
  6. moke123

    Solved duplicate letter in string

    A dictionary has 2 parts, a key and an item. If you try and add a duplicate key it'll error but in that code it is using the .exists method and exiting the function and setting the functions return value to true. I'm a big fan of dictionaries as I find them much easier to use than collections...
  7. moke123

    Solved Running a public sub when form gets focus

    One method I use is to use a form instance with Withevents. This all goes in the calling form. Top of calling form module - Dim WithEvents MyForm as form private sub SomeButton_Click() docmd.openform "SomeForm" set MyForm = forms("SomeForm") MyForm.OnClose = "[Event...
  8. moke123

    Question for Legal Beagles

    Once again, Not what I said. Enlighten yourself. https://www.brennancenter.org/our-work/analysis-opinion/presidents-cant-use-justice-department-their-personal-law-enforcement
  9. moke123

    Question for Legal Beagles

    They are ethically obligated to serve the constitution. They are not the presidents attorneys.
  10. moke123

    Question for Legal Beagles

    You may be waiting a long, long time. https://static01.nyt.com/newsgraphics/documenttools/41b5fc5814067eb0/1ae076b8-full.pdf
  11. moke123

    Question for Legal Beagles

    Guess you haven't been reading the resignations. Most DOJ Ausa's serve both democrat and republican presidents. They don't however compromise their ethics to do so.
  12. moke123

    Question for Legal Beagles

    You'll be able to tell by the resignations.
  13. moke123

    Is AI the end off all forums?

    The G.O.A.T.
  14. moke123

    Will Flipper flip you off?

    This is an interesting one... https://www.readtheirlips.com/
  15. moke123

    Possible stream voor access???

    What is this supposed to do?
  16. 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?
  17. 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
  18. 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?
  19. 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...
  20. 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...
Back
Top Bottom