Jump to content

Attila Kovacs

Members
  • Content Count

    2006
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by Attila Kovacs

  1. Attila Kovacs

    pasfmt out now!

    Multiline strings seem to be handled correctly. How about ignoring specific parts of the code? Is there a directive for that? There is. Looks great! // pasfmt off
  2. Attila Kovacs

    Anyone using Clever Components?

    Yes, there is no manual certificate validation implemented. I have added the same as you everywhere where dwSSPIFlags is used. // cert val if ManualCredValidation then dwSSPIFlags := dwSSPIFlags + ISC_REQ_MANUAL_CRED_VALIDATION; //
  3. 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.
  4. Attila Kovacs

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

    ?!? How can you change the title?
  5. If the "flag" were internal, how would I know its value in the OnCloseQuery() event?
  6. What would you have chosen instead?
  7. 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.
  8. 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.
  9. Attila Kovacs

    Change a forms OnShow Event?

    you have overriden the OnShow property with your OnShow procedure. Rename it.
  10. 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.
  11. Must be exhausting attending Delphi's funeral every year just to realize it's still here.
  12. Attila Kovacs

    Generic Command Line Parser for Delphi 10.3.x

    best, thx
  13. Attila Kovacs

    Blocking hackers

    nice 😉
  14. Attila Kovacs

    EurekaLog problem

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

    ProDelphi V42.1 released

    Is the freeware version only up to D11?
  16. 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)
  17. 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.
  18. 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.
  19. 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
  20. Attila Kovacs

    Resizing Object Inspector Pane in 12.2p2

    Same here.
  21. 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.
  22. Attila Kovacs

    Resizing Object Inspector Pane in 12.2p2

    Me neither, so thank you @schlauzeuch 😉 I keep searching.
×