Jump to content

PeterPanettone

Members
  • Content Count

    1360
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by PeterPanettone

  1. This is how my Delphi v10.3.3 IDE window normally looks: But MANY TIMES, when I restore the IDE window from MINIMIZED window state (by clicking on the Delphi icon on the Windows Taskbar) there is a substantial vertical GAP between the MainMenu/Toolbar area and the main panels area: I then double-click twice on the IDE window title-bar to restore the usual IDE layout. For testing, I have disabled all my IDE plugins to exclude any possible influence from such a plugin. Has anybody ever experienced this annoying effect?
  2. I have just tested it now on my fresh installed Delphi Ide inside a VM (Windows 10) on my new MacBook Pro. No gap this time, but a waiting time of about 1 second when restoring from minimized state. It seems that migrating to Windows 10 (from Windows 7) healed several things.
  3. PeterPanettone

    Error when installing JCL from GetIt

    460 chars.
  4. PeterPanettone

    Error when installing JCL from GetIt

    I have installed several different things now from GetIt (libraries, components, etc.) without problems and compiled code without problems. So it seems logical that the problem has something to do with the JCL installer.
  5. PeterPanettone

    Error when installing JCL from GetIt

    Meanwhile I tried to uninstall the not installed JCL, and I again got the error message about the not found rtl260.bpl:
  6. PeterPanettone

    Error when installing JCL from GetIt

    You mean, Win7 inside a VM or Win7 as a host for VirtualBox?
  7. PeterPanettone

    Error when installing JCL from GetIt

    That's what I have done. But on the next IDE restart I got this error: Translated to English, this means: System error. Code: 1400. Invalid window handle. BTW, do you also run the IDE in a VM?
  8. PeterPanettone

    Delphi on Windows 10 HOME 64-bit?

    Got me a Mac (MacBook Pro 16") with Parallels and installed Windows 10 HOME 64-bit in a Parallels VM. Is Windows 10 Home 64-bit good enough to run Delphi 10.3.3+ without problems or should I upgrade to Windows 10 PRO?
  9. PeterPanettone

    Delphi on Windows 10 HOME 64-bit?

    How can they make it so cheap? Do these licenses really work?
  10. PeterPanettone

    Delphi on Windows 10 HOME 64-bit?

    TMS Web also seems to be a good choice for building web applications.
  11. PeterPanettone

    Delphi on Windows 10 HOME 64-bit?

    Are there any other considerations worth mentioning when deciding which Windows version to use for Delphi?
  12. PeterPanettone

    Filter Checkboxes for the Messages list?

    Does GExperts have Filter Checkboxes for the Compiler Messages log-list? This would allow to TEMPORARILY hide any of the message types [Hints, Warnings, Errors], without having to change the corresponding setting in the Options dialog and then repeat the compilation process: This would particularly useful if there is a long messages list.
  13. PeterPanettone

    Filter Checkboxes for the Messages list?

    Please send me the exact text of the question to Embarcadero to resolve this messages-list problem in a private message, and I will be happy to waste my support ticket.
  14. PeterPanettone

    Filter Checkboxes for the Messages list?

    Who is responsible at Embarcadero for developers' support?
  15. PeterPanettone

    Filter Checkboxes for the Messages list?

    What do you mean by "uneven support efforts"?
  16. PeterPanettone

    Filter Checkboxes for the Messages list?

    According to MARKET RULES, a company should be interested to improve their products to increase its sales. Isn't the US economy based on market rules?
  17. PeterPanettone

    Filter Checkboxes for the Messages list?

    Have you tried to ask Embarcadero? I am sure they are happy to support developers!
  18. PeterPanettone

    Filter Checkboxes for the Messages list?

    There should also be a filter box to filter the messages for a search term (showing only the messages containing the search term), for example: This would be very useful!
  19. Unfortunately, I have a specific library for which I have only Delphi 10.1 Berlin DCUs (no source code), but I need to use this library in Delphi 10.3.3 Rio. Which is the best strategy to achieve this? (DLLs, Packages, ...)
  20. PeterPanettone

    Filter Checkboxes for the Messages list?

    A colleague has posted a quality report: https://quality.embarcadero.com/browse/RSP-27547 Please vote for it.
  21. PeterPanettone

    Filter Checkboxes for the Messages list?

    I have created a request issue here: https://sourceforge.net/p/gexperts/feature-requests/103/
  22. PeterPanettone

    How to use library from Delphi 10.1 DCUs in Delphi 10.3.3?

    I have changed the code using PWideChar now: DLL: function JclShell_DisplayPropDialog(AHandle: THandle; AFile: PWideChar): Boolean; stdcall; begin Result := JclShell.DisplayPropDialog(AHandle, string(AFile)); end; Host exe: function JclShell_DisplayPropDialog(AHandle: THandle; AFile: PWideChar): Boolean; stdcall; external myDLL; procedure TForm3.btnTestClick(Sender: TObject); begin if JclShell_DisplayPropDialog(0, PWideChar(edtFile.Text)) then Self.Caption := 'Success' else Self.Caption := 'Failure'; end; It does work well, no crash.
  23. PeterPanettone

    How to use library from Delphi 10.1 DCUs in Delphi 10.3.3?

    After having removed ShareMem from the uses list in both the DLL and the host exe, it does not crash anymore!
  24. PeterPanettone

    How to use library from Delphi 10.1 DCUs in Delphi 10.3.3?

    Done. It works, but when I close the host exe it CRASHES. The exe also crashes on Close even if I don't press the button! See attachment: TestDLL.zip
  25. PeterPanettone

    How to use library from Delphi 10.1 DCUs in Delphi 10.3.3?

    Can you indicate me a practical example? (There is no theory about the difference between theory and practice)
×