Jump to content

Attila Kovacs

Members
  • Content Count

    1982
  • Joined

  • Last visited

  • Days Won

    26

Attila Kovacs last won the day on August 31 2024

Attila Kovacs had the most liked content!

Community Reputation

634 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

    EurekaLog problem

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

    ProDelphi V42.1 released

    Is the freeware version only up to D11?
  3. 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)
  4. 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.
  5. 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
  6. Attila Kovacs

    Resizing Object Inspector Pane in 12.2p2

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

    Resizing Object Inspector Pane in 12.2p2

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

    Anyone using Clever Components?

    What is your problem?
  11. 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.
  12. 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.)
  13. Attila Kovacs

    Problems with EurekaLog

    nope
  14. 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
×