-
Content Count
2855 -
Joined
-
Last visited
-
Days Won
101
Everything posted by dummzeuch
-
Delphi Custom Container Pack fixed for Delphi 2005 to 10.2
dummzeuch posted a topic in Tips / Blogs / Tutorials / Videos
In yesterday’s update of the Delphi Custom Container Pack to support Delphi 10.3 Rio I had broken it for older Delphi versions. It no longer compiled for Delphi 2005 to 10.2. This is now fixed. (Thanks @limelect for pointing out the problem.) https://blog.dummzeuch.de/2018/12/30/delphi-custom-container-pack-fixed-for-delphi-2005-to-10-2/ -
Delphi Custom Container Pack fixed for Delphi 2005 to 10.2
dummzeuch replied to dummzeuch's topic in Tips / Blogs / Tutorials / Videos
There is just the original rtf file by Sergey Orlik which is linked from the project page. But since I haven't changed anything in the actual functionality it should still be valid. -
You can simply create one.
- 7 replies
-
- showmodal
- delphi 10.3
-
(and 2 more)
Tagged with:
-
New option in Delphi Help Expert to open in web browser
dummzeuch posted a topic in Tips / Blogs / Tutorials / Videos
Prompted by a suggestion from Peter Aschbacher I just added a new feature to my Delphi Help Expert: You can now force it to use the default web browser instead of the Welcome Page for web URLS. https://blog.dummzeuch.de/2019/01/01/new-option-in-delphi-help-expert-to-open-in-web-browser/ -
Is there already a statistic about the new registrations?
dummzeuch replied to sh17's topic in Community Management
I'm not complaining, just repeating what he told me. -
Is there already a statistic about the new registrations?
dummzeuch replied to sh17's topic in Community Management
I had one GExperts user who told me that he won't register to en.delphipraxis.net because he didn't like the Terms of Service. He's probably not the only one. This is the part he didn't like: > You grant Delphi-PRAXiS the non-exclusive irrevocable, unrestricted, and geographically unlimited, permanent right to use and commercialize the contents you make available in chats and forums in the Delphi-PRAXiS Internet presence, free of charge and license-free. In particular, you grant Delphi-PRAXiS the right to duplicate, distribute, communicate, amend, edit, modify or translate the contents, to publish modifications, amendments or translations of the contents, as well as to transmit the contents electronically or non-electronically to interactive areas, to lease the contents or grant sub-licenses to third parties in any way. < He said that this would allow DP admins to modify his posts to make them say something he never meant to say. -
Proportional scaling of fonts and components when a forms size is changed?
dummzeuch replied to Ian Branch's topic in General Help
I think the component you are talking about is called ElasticForm, not ElasitForm. If you used it before and registered it, you should have received the source code, so if need arises you could try to compile it for newer Delphi versions. The company (or at least the website) indeed seems to no longer exist. As for your question: I am not aware of such an automatism. There are several components that allow for flexible layouts and also DPI awareness has been improved, but I don't think the functionality of ElasticForm can be achieved easily with built in functionality.- 5 replies
-
- delphi
- proportional
-
(and 1 more)
Tagged with:
-
How to check if parent menu item has "checked" child item?
dummzeuch replied to Shrinavat's topic in VCL
Yes, but it does not use Exit(True) any more but requires an additional line: Result := True; Exit; And of course the begin / end block to allow for two statements. This would be my preferred solution: function HasCheckedSubItems(AMenuItem: TMenuItem): Boolean; var I: integer; begin for I := 0 to AMenuItem.Count - 1 do if AMenuItem.Items[I].Checked then Exit(True); Exit(False); end; (But I rarely use any Delphi version that supports Exit() with a return value.) -
Delphi Custom Container Pack updated for Delphi 10.3 Rio
dummzeuch replied to dummzeuch's topic in Tips / Blogs / Tutorials / Videos
I just tried a new checkout and it worked fine for me. I also tried a read only checkout (via the http link given in the repository), also worked fine. Sorry, I missed that one. Fixed now. No, I don't see any advantage for me and I am the (only?) one who works on that project. -
Delphi Known IDE Packages Manager updated to Delphi 10.3 Rio
dummzeuch posted a topic in Tips / Blogs / Tutorials / Videos
A while ago, after my post on Known IDE Packages in Delphi I wrote a the KnownIdePackagesManager tool which lists those packages, allows to disable and enable some of them and also set the package description for those packages that don’t have a meaningful description. Today, I updated the tool to support Delphi 10.3 Rio. https://blog.dummzeuch.de/knownidepackagesmanager-tool/ -
dzDelphiPaths tool updated for Delphi 10.3 Rio
dummzeuch posted a topic in Tips / Blogs / Tutorials / Videos
I have just updated my dzDelphiPaths tool to support Delphi 10.3. https://blog.dummzeuch.de/2018/12/29/dzdelphipaths-tool-updated-for-delphi-10-3-rio/ -
Delphi Help Expert updated for Delphi 10.3
dummzeuch posted a topic in Tips / Blogs / Tutorials / Videos
I have updated my Delphi Help Expert to support Delphi 10.3. https://blog.dummzeuch.de/2018/12/29/delphi-help-expert-updated-for-delphi-10-3/ -
How to check if parent menu item has "checked" child item?
dummzeuch replied to Shrinavat's topic in VCL
Looks good. I wouldn't mix result with exit(..), but that's probably a matter of taste. -
Using dxgettext on Windows 10
dummzeuch replied to dummzeuch's topic in Tips / Blogs / Tutorials / Videos
Yes, I did get a very short response: But apart from saying that dybdahl.dk has been closed, he didn't react to any of my follow ups. Yes, for now I still have, but Lars has blocked my write access before when he didn't like what I committed. OTOH it doesn't look as if he is interested in the project much any more. But do send me the patches, I'll do what I can. twm -
OK, that probably leaves only the date format.
-
Isn't the "*" wrong in a delete query? Delete from <table> where <condition>
-
It’s time for a gift to all Delphi developers, a new Release of GExperts. Happy Holidays! (But do spend some time with your family rather than testing GExperts. 😉 ) I blogged about the new features already. There were also several bug fixes. ... https://blog.dummzeuch.de/2018/12/22/gexperts-1-3-12-experimental-twm-2018-12-22-released/
-
The "Console in ..." entries don't work for me. I had to add a /d to the cd command: e.g. Parameters: /k cd /d $PATH($EDNAME) because my sources are on a different drive.
-
If I remember correctly, it is possible to set this on a per file type basis, but I am not sure whether that was on Windows or Linux/Samba.
-
I am no fan of virus scanners. They were more often the cause of trouble than the cure. I stick with Windows defender.
-
Register and use a custom clipboard format in Delphi
dummzeuch posted a topic in Tips / Blogs / Tutorials / Videos
I just now had the need to transmit GPS (WGS 84) coordinates from one program to another. First, I simply copied longitude and latitude separately using the clipboard, which works fine but is really time consuming when you have to do that very often. I… https://blog.dummzeuch.de/2018/12/18/register-an-use-a-custom-clipboard-format-in-delphi/ -
Debugging multiple DLLs simultaneously
dummzeuch replied to Neutral General's topic in Delphi IDE and APIs
There might be a better way, I just don't know it. -
Debugging multiple DLLs simultaneously
dummzeuch replied to Neutral General's topic in Delphi IDE and APIs
Brute force method: Add a MessageBox call instead of a breakpoint, so the program will stop and wait for you to attach. -
If I press the Tab key in the Filter box of the Object Inspector, one of two unexpected things happen: If the Form is visible, the focus switches to the form and the currently selected control. Further Tab presses seem to follow the tab order on the form. There seems to be no way to directly get back to the Object Inspector without using the mouse. I can press F11 twice which brings me first to the code editor and then to the Object Inspector. If the code editor is visible, the focus switches to that and then any input goes to the code editor. In this case F11 gets me back to the Object Inspector. So, I have some questions, all regarding keyboard only navigation: How do I get from the Filter Box to the property list? Since Tab does not work? (Edit: Unexpectedly Shift+Tab gets me there) How do I get from the property list to the Filter Box? Does anybody think it is a good idea to let tab switch from the filter box to the form or code editor?
-
Object Inspector Filter Box and keyboard navigation
dummzeuch replied to dummzeuch's topic in Delphi IDE and APIs
What about F11? That will take me to the code editor or the form editor, as described above. Pressing it again will get me to the Object Inspector into the Filter Box. Not quite what I'm looking for.