-
Content Count
1977 -
Joined
-
Last visited
-
Days Won
26
Everything posted by Attila Kovacs
-
Did EL linked itself to the exe without any errors?
-
ProDelphi V42.1 released
Attila Kovacs replied to Helmuth J.H. Adolph's topic in Delphi IDE and APIs
Is the freeware version only up to D11?- 4 replies
-
- profiler
- runtime measurement
-
(and 1 more)
Tagged with:
-
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)
-
ANN: Better Translation Manager released
Attila Kovacs replied to Anders Melander's topic in Delphi Third-Party
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. -
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.
-
Resizing Object Inspector Pane in 12.2p2
Attila Kovacs replied to Attila Kovacs's topic in Delphi IDE and APIs
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 -
Resizing Object Inspector Pane in 12.2p2
Attila Kovacs replied to Attila Kovacs's topic in Delphi IDE and APIs
Same here. -
Resizing Object Inspector Pane in 12.2p2
Attila Kovacs replied to Attila Kovacs's topic in Delphi IDE and APIs
Scaled yes, docked, ofc, narrow is rather the direction as the size. Read: I can make it bigger but not smaller in the width. -
Resizing Object Inspector Pane in 12.2p2
Attila Kovacs replied to Attila Kovacs's topic in Delphi IDE and APIs
Me neither, so thank you @schlauzeuch 😉 I keep searching. -
What is your problem?
-
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.
-
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
-
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.)
-
nope
-
Double, default value
Attila Kovacs replied to Skrim's topic in Algorithms, Data Structures and Class Design
Note that there is also a System.SysUtils.TryStrToFloat() function, along with many other TryStrToXXX() functions, you may find them handy. -
ANN: HTMl Library 4.9 released. WebUI and more
Attila Kovacs replied to Alexander Sviridenkov's topic in Delphi Third-Party
😮 -
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
-
Delphi 12.2 available for download
Attila Kovacs replied to pyscripter's topic in Delphi IDE and APIs
. -
Delphi 12.2 available for download
Attila Kovacs replied to pyscripter's topic in Delphi IDE and APIs
Is there a list somewhere? Os is it still secret? -
Switching off automatic Bookmarks?
Attila Kovacs replied to PeterPanettone's topic in MMX Code Explorer
-
Custom Managed Records and Default(T)
Attila Kovacs replied to rgdawson's topic in Algorithms, Data Structures and Class Design
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. -
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.
-
I'm curious how long it will take before we have to rewrite all the E-crap in JSON.
-
Show executable size after successful build?
Attila Kovacs replied to PeterPanettone's topic in Delphi IDE and APIs
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 🙂 -
“Transitive” type redefinitions in interface section
Attila Kovacs replied to Dmitry Onoshko's topic in Algorithms, Data Structures and Class Design
I'd make MyTask -> MyTask.Common MyTask.Main.Implementation -> MyTask.Main but it's just my personal preferecne