Jump to content

Attila Kovacs

Members
  • Content Count

    1977
  • Joined

  • Last visited

  • Days Won

    26

Everything posted by Attila Kovacs

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

    Resizing Object Inspector Pane in 12.2p2

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

    Resizing Object Inspector Pane in 12.2p2

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

    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

    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.)
  14. Attila Kovacs

    Problems with EurekaLog

    nope
  15. 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.
  16. Attila Kovacs

    ANN: HTMl Library 4.9 released. WebUI and more

    😮
  17. 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
  18. Attila Kovacs

    Delphi 12.2 available for download

    Is there a list somewhere? Os is it still secret?
  19. Same here. I was so excited when I upgraded to 12, thinking there would finally be something amazing, but when I checked it out, bleh. I’d rather not.
  20. Attila Kovacs

    XML: Parsing UBL 2.1 in Delphi

    Btw. I used this app for the validation: https://www.xml-buddy.com/ You can batch-validate the xml's you generate against the schematrons with a console app.
  21. Attila Kovacs

    XML: Parsing UBL 2.1 in Delphi

    I'm curious how long it will take before we have to rewrite all the E-crap in JSON.
  22. Attila Kovacs

    Show executable size after successful build?

    debug version is bloated anyway, who cares what size the executable has? switch to visual c++, they are already complaining if the exe is over 80kb 🙂
  23. I'd make MyTask -> MyTask.Common MyTask.Main.Implementation -> MyTask.Main but it's just my personal preferecne
×