-
Content Count
3038 -
Joined
-
Last visited
-
Days Won
112
Everything posted by dummzeuch
-
That page is petty much dead. The only way to reach anybody of the Jedi team (the few that are left) is through GitHub.
-
If you want this bugfix to be included in the JVCL, you will have to create a pull request on Github.
-
How to share data between apps
dummzeuch replied to Tom F's topic in Algorithms, Data Structures and Class Design
If dropping frames is not an issue, why bother with such a large buffer? Two frames would be enough. -
How to share data between apps
dummzeuch replied to Tom F's topic in Algorithms, Data Structures and Class Design
If that's acceptable, simply using files would probably be the easiest way. Since we don't know what those programs actually do with the images, that's difficult to decide. If files are too slow, I would probably go with memory mapped files with two buffers and a combination of mutexes and events (event as in syncobjs.TEvent). One buffer is always available for the sender to fill. It doesn't check, just locks it (using the mutex), writes to it, unlocks it and sets an event to signal that data is available. The receiver is the part that manages which buffer is currently to be written to. It then waits for the event, switches the write buffer to the other one and starts processing the data. If that takes longer, the sender will overwrite the data in the write buffer as long as necessary. Yes, I think that would work. Needs a bit of polishing though. -
I'm in the process of restructuring the GExperts sources. Currently the trunk is broken. If you want to compile your own DLL, use the https://svn.code.sf.net/p/gexperts/code/tags/before-switching-to-original-dzlib tag.
-
They compile again. But there are still a few warnings and hints I need to investigate. Also, some testing will be in order.
-
Building a project in Delphi 10.3 fails if the build script output contains "error:"
dummzeuch replied to dummzeuch's topic in Tips / Blogs / Tutorials / Videos
I apparently doesn't care whether there is a space between 'error' and ':' or not. I haven't investigated any further, e.g. if "warning:" also counts as a compiler warning. Even if it is meant as a feature, it's definitely not implemented correctly as there should not be such an additional and confusing error dialog. And of course it should have been documented. -
How do you deal with non-critical customer feature requests?
dummzeuch replied to Mike Torrettinni's topic in Project Planning and -Management
Let me rephrase that: "The request, that I think has low priority, might have higher priority for a customer and he might be prepared to pay for it." -
How do you deal with non-critical customer feature requests?
dummzeuch replied to Mike Torrettinni's topic in Project Planning and -Management
It's also a question whether the customer is willing to pay for his request to be implemented. My low priority request might have a much higher priority for the customer. -
Error quitting Delphi 10.3.3 with GExperts 1.3.15 build 84
dummzeuch replied to Sherlock's topic in GExperts
already reported: https://sourceforge.net/p/gexperts/bugs/132/ -
Fixed, try now.
-
Oh great, it's yet another Theming issue: The menu items on my computer are 24 pixels high, but GetSystemMetrics returns 20. That's why too many menu items were displayed which resulted in the menu being too high and overlapping with the main menu entry. On top of that, I can no longer debug GExperts in Delphi 10.3.3: The IDE crashes when the GExperts initialization starts. But not the debugged IDE but the debugging IDE. 😞 If that wasn't odd enough: I can start an IDE with GExperts fine, it ony crashes if I try to debug it.
-
Hm, I just tried to reproduce this on my computer. Doesn't happen. Could you please select the GExperts menu via keyboard (which should not have the effect of executing the first menu entry) and create a screenshot? Edit: Forget it. I just managed to reproduce it.
-
Please check that you are using the latest svn sources. Your first post says "13 hours ago", that would have been about 21:00 yesterday (CET). It might just have overlapped with my last commit.
-
That's one of the problems that I thought I fixed yesterday. What's your screen resolution(s) and scaling? If multiple monitors: Which one is primary and which one is the IDE on? Do you have the task bar on both?
-
Run the batch file in the images folder first.
-
Theming is a gift that keeps giving: https://quality.embarcadero.com/browse/RSP-27318 (Of course this is not my working environment, I just created it to track down a problem with GExperts.)
-
What color did a user click on in an Image
dummzeuch replied to Tom F's topic in Algorithms, Data Structures and Class Design
The problem is probably that the mouse coordinates do not match the pixel coordinates. If you click on the upper left corner, are you getting x=0 and y=0? If not, try ScreenToClient. Once you get that position right, try the lower right corner. Do you get x=Bitmap.With and y=Bitmap.Height? If not try to multiply with Image.Width/Bitmap.Width and Image.Height/Bitmap.Height. And then you might have to consider that y coordinates of bitmaps can be upside down. -
How to close Messages window automatically
dummzeuch replied to Silver Black's topic in Delphi IDE and APIs
GExperts: https://blog.dummzeuch.de/2018/07/01/experimental-feature-automatically-close-messages-window/ -
Science Fiction 😉 SCNR
-
Alt-sortcuts are not always the same
dummzeuch replied to PeterPanettone's topic in Delphi IDE and APIs
I think it would be possible to do that. But: A Shortcut is the Ctrl/Shift/Alt+Key combination while what you are talking about is called a Hotkey. The expert does not/can not change the hotkeys -
[Suggestion] right click on a hyperlink in the source code to give a popup menu item for "Visit Link"
dummzeuch replied to Edwin Yip's topic in GExperts
You can already configure a Tools menu entry to do that. -
Alt-sortcuts are not always the same
dummzeuch replied to PeterPanettone's topic in Delphi IDE and APIs
This happens all over the place. The menu hotkeys change whenever the IDE thinks it should recalculate them. -
Blogged : Introducing DPM - a Package Manager for Delphi
dummzeuch replied to Vincent Parrett's topic in Delphi Third-Party
But that's exactly how we do it. Each project has its complete set of libraries stored in subdirectories of the project and referenced in subversion as svn:external. Compared to the size of the data we are working with (e.g. HD videos with several 10000 pictures each), that's not much space. And hard disks are cheap, especially if you buy them by the hundreds.