Search results

  1. moke123

    Shocking news about UtterAccess owner

    You need an account to access federal records. I can't post it here but they have the log of a video conferencing app with him talking to the mother in the Philippines. He makes some damning admissions.
  2. moke123

    Shocking news about UtterAccess owner

    WOW! Just read the 59 page summary of the investigation. Worse than you can ever imagine. I've had my fair share of kiddie diddlers so not a lot shocks me. But WOW.
  3. moke123

    Shocking news about UtterAccess owner

    I doubt he's being held. More likely released with conditions such as no unsupervised contact with kids under 18, No or limited access to computers and internet, etc...
  4. moke123

    Shocking news about UtterAccess owner

    Your preaching to the choir, my friend. I'm pretty sure I'm the only one on here who has legally seen kiddie porn. I doubt the case file will be sealed so I'll eventually be able to see the pleadings.
  5. moke123

    Shocking news about UtterAccess owner

    I'm more intrigued by the fact that the feds kept it. They usually pass small stuff down to the states. There isn't much on Pacer yet, so not a lot of details.
  6. moke123

    Shocking news about UtterAccess owner

    Jack's Indictment:
  7. moke123

    Shocking news about UtterAccess owner

    You do know it's legal in several states, right? It was legal in Connecticut up until 2 or 3 years ago.
  8. moke123

    Shocking news about UtterAccess owner

    The problem with that law is that many, if not most, trafficking arrest are the result of LE stings. There is no "Victim" per se. Just responding or agreeing to a meet is sufficient for arrest, even if there was no actual intent to meet.
  9. moke123

    Shocking news about UtterAccess owner

    Why are the dolphins illegal and what are they going to do with the minors? :unsure:
  10. moke123

    Shocking news about UtterAccess owner

    More likely their Cell Phone. In Jack's case I'd be most concerned with the charge of "Attempted Production" That carries some harsh time. Possession charges sometimes do have some solid defenses. "It was in a zip file I downloaded from a coding forum" :rolleyes: I've seen numerous cases of...
  11. moke123

    Shocking news about UtterAccess owner

    I'm somewhat surprised we didn't get a "This domain has been seized.." type message from UA. I'm sure someone was tasked with looking at every upload to UA.
  12. moke123

    Table - After Update question

    You could probably iterate through all the fields on the form and test the value against the .oldvalue property. something like Dim ctl As Control For Each ctl In Me.Controls If ctl.ControlType = acTextBox Then If ctl.Value <> ctl.OldValue Then...
  13. moke123

    How the AI apocolypse starts

    https://www.pcgamer.com/software/ai/i-destroyed-months-of-your-work-in-seconds-says-ai-coding-tool-after-deleting-a-devs-entire-database-during-a-code-freeze-i-panicked-instead-of-thinking/ Scary to think AI has access to things like the social security databases.
  14. moke123

    How the AI apocolypse starts

    I was kind of planning on being really late to my funeral
  15. moke123

    How the AI apocolypse starts

    https://www.axios.com/2025/05/28/ai-jobs-white-collar-unemployment-anthropic
  16. moke123

    Solved Resurrecting old threads?

    When you don't notice the date and read through a few pages only to find that its a 10 year old thread.
  17. moke123

    Auto Rotate Photos

    I don't think my code is causing that error. It must be something from the main table you created and are trying to link to. Show us everything.
  18. moke123

    Solved Method of selecting specific records

    That might be easier with a multi-select listbox rather than a continuous form.
  19. moke123

    Move the selected file with acCmdInsertHyperlink

    Bear in mind that not everyone will have drives mapped the same. You should use a UNC path if storing on the network.
  20. moke123

    Move the selected file with acCmdInsertHyperlink

    I use code like the following to move or copy files to destination folders. If a file name already exists it will add a number to the file name like MyFile(1).txt, etc. Public Sub MoveFileRename(SourceFile As String, DestFolder As String, Optional CopyF As Boolean = False) If...
Back
Top Bottom