Search results

  1. K

    Solved Extracting part of string

    The same way you did for 349 and 2019 SELECT Transfer, Left(Transfer, InStr(Transfer, "/") - 1) AS Part1, Mid(Transfer, InStr(Transfer, "/") + 1, InStr(Transfer, " ") - InStr(Transfer, "/") - 1) AS Part2, Mid(Transfer, InStr(Transfer, " ") + 1, InStrRev(Transfer, "/") -...
  2. K

    Introducing myself

    Now, I'm in doubt again what those comments about Ohtani meant 😭
  3. K

    Introducing myself

    I read my own comment above, and I'm proud of myself to know what MLB means :)
  4. K

    Introducing myself

    I think Americans are very smart and clever. They are capable of remembering so many shorten form of different words. FBI, CIA, FSU, IRS, ICE, GDP, DOJ, NYPD, LPD, DOD, NFD, NSA, EPA, ........ It's very interesting how they tend to shorten the words into letters and how they can remember all of...
  5. K

    Trump & Elon Musk

    An AI-generated short film reimagining Elon Musk and Trump fallout.
  6. K

    ChatGPT vs Atari

    ChatGPT recently got hilariously outmatched by a piece of tech nearly five decades old, an Atari 2600. Software engineer Robert Caruso shared that the AI, despite its advanced capabilities, was “absolutely wrecked” by Atari Chess, a 1979 game that only thinks one to two moves ahead. Even on...
  7. K

    Those who can’t read don’t steal, those who can, aren’t thieves.

    You may not believe me, but I don't remember when was the last time I lied. Why should I lie? I'm 63 and I don't understand the logic of lying. When someone needs or feels it's better to lie? If you ask me something, either I answer, which is what I think I believe and is the truth, or I keep my...
  8. K

    OpenArgs (my) class way

    @MajP This is the exact reason I started setting all variables to nothing. Some people without having the correct understanding, start "Teaching" ((and yes @jwcolby54 I am using the quotes intentionally) their wrong methods of programing and saying vba doesn't clean after itself or such, and we...
  9. K

    Flynn, The first AI college student

    I have to watch it again. I don't remember it.
  10. K

    Those who can’t read don’t steal, those who can, aren’t thieves.

    Mohamed Aziz, born in 1948 in Rabat, Morocco, is a respected bookseller and self-taught intellectual who has devoted more than 43 years to his humble bookstore, Bouquiniste El Azizi, situated on Avenue Mohammed V. Despite facing significant challenges early in life—losing his parents at age six...
  11. K

    Fake AI

    Exactly. The only hope there is 700 engineer can do what an AI does.
  12. K

    Flynn, The first AI college student

    In a global first, an Austrian university has admitted an AI as a full-time art student. 🎨🦾 Named “Flynn,” the AI was accepted into the digital art program at the University of Applied Arts Vienna after completing a standard application, including a portfolio, interview, and suitability test...
  13. K

    Fake AI

    Builder.ai, a London-based startup once valued at $1.5 billion and backed by major investors including Microsoft and Qatar’s sovereign wealth fund, has filed for bankruptcy following revelations that its purported AI-powered platform was largely operated by approximately 700 human engineers...
  14. K

    Solved How stop MS Access from printing blank page at the end of a report

    I'm sorry if I posted something that caused a misunderstanding. I meant the OP had the answer sooner, not who solved the problem. I simply thought she had missed #2 post and wanted her to know it. I also understand that MajP explained how, but you simply showed the exact code. And I'm one of...
  15. K

    Closing image viewing software

    @sonic8 To prove it's a font problem, and en currency is still backslash, here's the same machine, the same code, but when the font in option is changed to Lucida. Most fonts shows backslash as en. The following (and possible few others) show it as it should be. Segoe UI Courier New Lucida...
  16. K

    Closing image viewing software

    Yes. Some languages have a different backslash, but Windows behave them as backslash in background. In Japanese: Visual appearance: ¥ (Yen sign) instead of \ Reason: The character 0x5C (ASCII 92) is rendered as ¥ in many Japanese system fonts. Actual character: Still a backslash \ in the...
  17. K

    Closing image viewing software

    If I copy ms-photos:FilePath=D:\images\008.jpg into run command (win key+R), the file opens.
  18. K

    Closing image viewing software

    No. The same error message. File not found. As I said, Microsoft.Photo.exe is protected by system and can not be accessed. The following is my code. The path to jpg is correct. Function OpenNEF() Const EXE_FILE As String = "C:\Program...
  19. K

    OpenArgs (my) class way

    @jwcolby54 I really don't want to start an argument, but : There are three types of people who use these forums. 1- Novice users. These users, have not enough knowledge about Access, and copy paste whatever they see. (me, when I joined AWF) 2- Users who know about Access and VBA less and more...
  20. K

    OpenArgs (my) class way

    You're trying to teach us how to make a class that may cause a circular reference? You know it and you don't explain it? What kind of a teacher does that? If @MarkK hadn't explained it and someone follow your steps, where his app would end? I really had faith in you, but reading your recent...
Back
Top Bottom