

PeterPanettone
Members-
Content Count
1360 -
Joined
-
Last visited
-
Days Won
5
Everything posted by PeterPanettone
-
Strange behavior when restoring Delphi v10.3.3 IDE window from MINIMIZED window state
PeterPanettone posted a topic in Delphi IDE and APIs
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? -
Strange behavior when restoring Delphi v10.3.3 IDE window from MINIMIZED window state
PeterPanettone replied to PeterPanettone's topic in Delphi IDE and APIs
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. -
460 chars.
-
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.
-
Meanwhile I tried to uninstall the not installed JCL, and I again got the error message about the not found rtl260.bpl:
-
You mean, Win7 inside a VM or Win7 as a host for VirtualBox?
-
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?
-
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?
-
How can they make it so cheap? Do these licenses really work?
-
TMS Web also seems to be a good choice for building web applications.
-
Are there any other considerations worth mentioning when deciding which Windows version to use for Delphi?
-
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.
-
Filter Checkboxes for the Messages list?
PeterPanettone replied to PeterPanettone's topic in GExperts
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. -
Filter Checkboxes for the Messages list?
PeterPanettone replied to PeterPanettone's topic in GExperts
Who is responsible at Embarcadero for developers' support? -
Filter Checkboxes for the Messages list?
PeterPanettone replied to PeterPanettone's topic in GExperts
What do you mean by "uneven support efforts"? -
Filter Checkboxes for the Messages list?
PeterPanettone replied to PeterPanettone's topic in GExperts
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? -
Filter Checkboxes for the Messages list?
PeterPanettone replied to PeterPanettone's topic in GExperts
Have you tried to ask Embarcadero? I am sure they are happy to support developers! -
Filter Checkboxes for the Messages list?
PeterPanettone replied to PeterPanettone's topic in GExperts
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! -
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, ...)
-
Filter Checkboxes for the Messages list?
PeterPanettone replied to PeterPanettone's topic in GExperts
A colleague has posted a quality report: https://quality.embarcadero.com/browse/RSP-27547 Please vote for it. -
Filter Checkboxes for the Messages list?
PeterPanettone replied to PeterPanettone's topic in GExperts
I have created a request issue here: https://sourceforge.net/p/gexperts/feature-requests/103/ -
How to use library from Delphi 10.1 DCUs in Delphi 10.3.3?
PeterPanettone replied to PeterPanettone's topic in VCL
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. -
How to use library from Delphi 10.1 DCUs in Delphi 10.3.3?
PeterPanettone replied to PeterPanettone's topic in VCL
After having removed ShareMem from the uses list in both the DLL and the host exe, it does not crash anymore! -
How to use library from Delphi 10.1 DCUs in Delphi 10.3.3?
PeterPanettone replied to PeterPanettone's topic in VCL
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 -
How to use library from Delphi 10.1 DCUs in Delphi 10.3.3?
PeterPanettone replied to PeterPanettone's topic in VCL
Can you indicate me a practical example? (There is no theory about the difference between theory and practice)