Jump to content

Attila Kovacs

Members
  • Content Count

    1975
  • Joined

  • Last visited

  • Days Won

    26

Attila Kovacs last won the day on August 31

Attila Kovacs had the most liked content!

Community Reputation

631 Excellent

2 Followers

Technical Information

  • Delphi-Version
    Delphi 12 Athens

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. 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)
  2. 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.
  3. 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
  4. Attila Kovacs

    Resizing Object Inspector Pane in 12.2p2

    Same here.
  5. 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.
  6. Attila Kovacs

    Resizing Object Inspector Pane in 12.2p2

    Me neither, so thank you @schlauzeuch 😉 I keep searching.
  7. 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.
  8. Attila Kovacs

    Anyone using Clever Components?

    What is your problem?
  9. 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.
  10. Attila Kovacs

    Problems with EurekaLog

    Yeah, the question remains, I just need to know if the checkbox is unchecked. (Thinking aloud, the user should be able to see a preview of the screenshot. Based on the dialog, there is no information if it's a screenshot of the app, the form of the app, or the whole screen. No wonder if they are mistrustful.) (Thinking aloud 2, the user should be able to crop the image and wipe out parts of it.)
  11. Attila Kovacs

    Problems with EurekaLog

    nope
  12. 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
  13. Attila Kovacs

    Double, default value

    Note that there is also a System.SysUtils.TryStrToFloat() function, along with many other TryStrToXXX() functions, you may find them handy.
  14. Attila Kovacs

    ANN: HTMl Library 4.9 released. WebUI and more

    😮
  15. I have a VCL form that always gets corrupted when I save it: This is the only form where I have ever encountered this issue, and it always happens with the style property of a TCheckListBox. Has anyone ever seen something like this in real life? I'm on D12.1
×