Jump to content

PeterPanettone

Members
  • Content Count

    1335
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by PeterPanettone

  1. PeterPanettone

    Embarcadero needs my location?

    Today, when running the Delphi 12.2 IDE in Windows 11 24H2, I got this warning message: For what purpose does "Embarcadero need my location"?
  2. PeterPanettone

    Embarcadero needs my location?

    Maybe hacking NSA databases could disclose my position?
  3. Does anyone have an updated version of wuppdi Welcome Page for Delphi 11 Alexandria?
  4. PeterPanettone

    Embarcadero needs my location?

    You have not answered my question: How an app can get my location data?
  5. PeterPanettone

    Embarcadero needs my location?

    Since I currently don't use Wi-Fi (I prefer more secure network cable connections), I wonder how an app may try to get my location data.
  6. PeterPanettone

    Embarcadero needs my location?

    No, it popped up this morning when I woke Windows from its nightly sleep. Maybe a "woke syndrome"?
  7. PeterPanettone

    Embarcadero needs my location?

    Delphi 12.2 in Windows 11 24H2 I have edited my message to contain the version.
  8. While GetIt always worked in Delphi 12.2, today, it could not connect to the server: Is this a known issue?
  9. PeterPanettone

    GetIt in Delphi 12.2 does not work

    Thanks, it must have been a temporary glitch.
  10. Do you have any special wishes for Delphi 13? Built-in AI? NeuraLink interface? A new Code Editor?
  11. On my HighDPI monitor the CodeLibrarian Search dialog was still broken in r4431, so I fixed it: This should now work with all DPI settings on the end user side, as it now uses a Manifest in modern Delphi 12 Athens instead of a custom "InitDpiScaler": constructor TfmCodeSearch.Create(_Owner: TComponent); begin inherited; //InitDpiScaler; // now using Manifest in Delphi 12 end; fmCodeSearch.Scaled := True; // Set in Object Inspector I've also modernized the LAYOUT from StoneAge Layout (simply place components anywhere without layout considerations) to Modern Layout (use Align and AlignWithMargins properties). Here is the new source of the Search dialog: GX_CodeSrch.zip
  12. PeterPanettone

    I fixed the DPI errors in the CodeLibrarian Search dialog

    I clearly said this is for Delphi 12 Athens. Using just a few compiler conditional directives, you can restrict any code to specific newer Delphi versions, for example: {$IF CompilerVersion >= 36.1} // Code for Delphi 12.1 or later {$MESSAGE WARN 'Only for modern Delphi versions'} {$ELSE} // code for older Delphi versions {$IFEND}
  13. PeterPanettone

    Thank you for fixing the Rename Expert!

    In r4431, the Rename Expert is now finally fixed: However, it would be LOGICAL to place the Buttons (OK, Cancel, Settings) at the BOTTOM: Clicking the OK button affects not only the newName setting but also the Align/Anchors and Margin settings.
  14. PeterPanettone

    Automatically show the Quick Edit dialog?

    I want to achieve this design time automation: Whenever a new object is created (either from the Palette or by pasting an object from the clipboard), the Quick Edit dialog for the new object is automatically shown. Is there a way to achieve this with GExperts?
  15. PeterPanettone

    Automatically show the Quick Edit dialog?

    I have YOU to thank for such an ingenious product as GExperts! I could not take over the maintenance of GExperts. YOU are the leading expert for GExperts!
  16. PeterPanettone

    Automatically show the Quick Edit dialog?

    Dear Thomas, you are completely right! But all these DPI problems can be OVERRIDDEN by using an optimal LAYOUT. The logical error is to focus only on one issue (the DPI settings) while ignoring the broader context of responsive design and layout adaptability.
  17. PeterPanettone

    Automatically show the Quick Edit dialog?

    I use Delphi 12.2 in Windows 11 and have just now downloaded and compiled version r-4418: 1. you should not trust the GExperts users to use the same DPI settings as you when they compile the GExperts source code. 2. you should prioritize LAYOUT over blindly trusting that your DPI settings will work for the users when they compile the GExperts source code. Following rule #2, I have now moved the main dialog buttons down to the bottom into a separate panel, which creates a more logical layout: In the next step, I will adjust the layout logic for multiple properties.
  18. PeterPanettone

    Automatically show the Quick Edit dialog?

    Dear Thomas! Can you please post a screenshot with multiple properties? Thank you! And a happy new year! 🎈🙋‍♂️
  19. PeterPanettone

    Automatically show the Quick Edit dialog?

    Hello Thomas, Thanks for the information. The GExperts Rename Component expert is indeed useful when changing only the name. However, with multiple properties, the layout is broken and inconsistent:
  20. PeterPanettone

    Switching off automatic Bookmarks?

    Several MMX actions automatically set Bookmarks in the source code or even set a mark where the ESC key jumps to another position in the source code. I find this extremely disturbing. Where can I switch this OFF?
  21. Better display of tabs in the SourceCode editor (OPTIONAL): 1. Marking of the MainForm unit in bold font 2. Marking files that do not belong to the current project in italics This would lead to more visual consistency and transparency in the presentation of the tabs in the SourceCode editor. What do you think? Thanks to everyone for taking part in this BRAIN TEST!
  22. Having flexible UI options is always a good thing. Thank you!
  23. PeterPanettone

    Strange effect in TRichEdit: CTRL+I outputs TAB

    At run-time, select any text in a TRichEdit and press CTRL+I: The selected text will be replaced by a TAB "character," which has the same effect as pressing the TAB key. BTW, the same effect occurs in Notepad. Is there a way to prevent this? Delphi 12.2 Windows 11 x64
  24. PeterPanettone

    Strange effect in TRichEdit: CTRL+I outputs TAB

    Another solution could be to subclass TRichEdit and then (temporarily) suppress the TAB character, but it's not worth the effort.
  25. PeterPanettone

    Strange effect in TRichEdit: CTRL+I outputs TAB

    Thanks for the information.
×