Jump to content

Attila Kovacs

Members
  • Content Count

    2090
  • Joined

  • Last visited

  • Days Won

    29

Everything posted by Attila Kovacs

  1. Attila Kovacs

    Anyone using Clever Components?

    I sent you a PM with an unofficial fix. Let me know if it works with TLS 1.3.
  2. Attila Kovacs

    Does anyone know a delphi component that can play videos from a stream

    ?!? How can you change the title?
  3. If the "flag" were internal, how would I know its value in the OnCloseQuery() event?
  4. What would you have chosen instead?
  5. Attila Kovacs

    LSP Rant

    This shitty LSP is just the same compiler shoved into a separate thread, making work with the IDE slow as hell, constantly crashing or stuck compiling. It can't even handle code snippets if there's an error somewhere and the compiler can't compile the whole thing, which, as far as I remember, was its main goal. Honestly, the entire thing is a botched piece of garbage that was a complete waste of time to create. This was a huge step towards the world of garbage-tier IDEs.
  6. Attila Kovacs

    Change a forms OnShow Event?

    You are calling your OnShow method, it's not the property, the property is invisible because you have overriden it. Learn the basics of OOP.
  7. Attila Kovacs

    Change a forms OnShow Event?

    you have overriden the OnShow property with your OnShow procedure. Rename it.
  8. Attila Kovacs

    LSP Rant

    Since version 12.2, the elements in my Watch window keep freezing, and only an IDE restart helps. Someone must have tinkered with the debugger because I also noticed some new visualizers I had never seen before.
  9. Must be exhausting attending Delphi's funeral every year just to realize it's still here.
  10. Attila Kovacs

    Generic Command Line Parser for Delphi 10.3.x

    best, thx
  11. Attila Kovacs

    Blocking hackers

    nice 😉
  12. Attila Kovacs

    EurekaLog problem

    Did EL linked itself to the exe without any errors?
  13. Attila Kovacs

    ProDelphi V42.1 released

    Is the freeware version only up to D11?
  14. Attila Kovacs

    Component property disappears from DFM

    Hey, Here is a script to find those events # !!! Be careful with scripts, always make sure to back up your work or experiment with a copy. !!! # Finding abandoned events v3 for i in `find . -not -path '*/.*' -name "*.pas" -type f`; do if [ -f ${i%.*}.dfm ]; then cat $i | \ sed -nr "/=(\s)*class/I,/(private|protected|public|published|automated)/I{p}" | \ sed -nr "/procedure/Ip" | \ sed -e "s/\(.*\)\ \(.*\)(\(.*\)/\2/g" | \ xargs -n 1 | \ xargs -I @@ sh -c "echo -n \"${i%.*}.dfm->@@: \"; grep -i -s -c @@ ${i%.*}.dfm" | \ grep ": 0"; fi; done run from wsl results are <event> <occurence> where 0 means missing from dfm (could be assigned by code)
  15. Attila Kovacs

    ANN: Better Translation Manager released

    So far, I’ve never had to deal with multilingualism, and now I need to implement a language that I not only don’t understand but can’t even comprehend its character set. I was thinking of hooking the TReader and sending certain properties to ChatGPT to translate them within a specific context and with a maximum length, then storing the result in a database. At runtime. Thoughts? By the way, why are you messing around with a Hunspell checker instead of hooking the program up to ChatGPT? It would translate everything in an instant, and with an extra command input, it could even be fine-tuned.
  16. Am I dumb or why can't I make the object inspector narrower in the newest IDE? I can make it wider but not narrower.
  17. Attila Kovacs

    Resizing Object Inspector Pane in 12.2p2

    it has nothing to do with the minimum width once you pull it wider, it _stays_ as wide, as you can't pull it back this is a fresh install on a notebook with 4k display, the only thing I added is parnassus bookmarks and the swiss made welcome page, i don't know its name
  18. Attila Kovacs

    Resizing Object Inspector Pane in 12.2p2

    Same here.
  19. Attila Kovacs

    Resizing Object Inspector Pane in 12.2p2

    Scaled yes, docked, ofc, narrow is rather the direction as the size. Read: I can make it bigger but not smaller in the width.
  20. Attila Kovacs

    Resizing Object Inspector Pane in 12.2p2

    Me neither, so thank you @schlauzeuch 😉 I keep searching.
  21. Attila Kovacs

    Anyone using Clever Components?

    What is your problem?
  22. Attila Kovacs

    Problems with EurekaLog

    Hi there, The question is for advanced EurekaLog users: I would like to see if the user opts out of sending the screenshot with the error report, but at the stage when the EL dialog is shown, the report is already compiled. However, I could still append files to the zip, but only existing files, but I do not want to write to the disk. I want to see it because it often comes without any image, and I'm not sure why. Maybe one of you has an idea how to achieve this. Any sign in the email or the error report would be enough. thx
  23. Attila Kovacs

    Problems with EurekaLog

    Not the screenshot just the technical stuff. The "click to edit image" option in your screenshot indicates professional and mature thinking. I didn't know that MadExcept could do this.
×