

PeterPanettone
Members-
Content Count
1354 -
Joined
-
Last visited
-
Days Won
5
Everything posted by PeterPanettone
-
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) -
How to use library from Delphi 10.1 DCUs in Delphi 10.3.3?
PeterPanettone replied to PeterPanettone's topic in VCL
That is OBVIOUS. -
When trying to build r3040 in Delphi 10.3.3 I got this warnings/errors: [Exec Error] Warning(1): File not found: [...]\gexperts-code-r3040-trunk\Projects\DelphiXx103\GExpertsRS103.manifest.in(EFileNotFound) [Exec Error] Der Befehl "call ..\..\buildtools\prebuild.cmd "C:\COMP\_Addons\GExperts\GExperts Sourcecode\gexperts-code-r3040-trunk\Projects\DelphiXx103\GExpertsRS103.dproj"&&call ..\..\buildtools\movedll.cmd "C:\COMP\_Addons\GExperts\GExperts Sourcecode\gexperts-code-r3040-trunk\Binaries\GExpertsRS103.dll"" wurde mit dem Code 9009 beendet.
-
Thanks, now the errors have disappeared.
-
Floating form designer not automatically restored when reopening a project
PeterPanettone posted a topic in Delphi IDE and APIs
In the Delphi Rio 10.3.3 IDE, I have activated the floating form designer by unchecking the "Embedded designer" checkbox in the Options dialog: The floating form designer normally stays on the second monitor. When I reopen a VCL Application project, the previously opened form designer is not automatically restored and I have to manually open it with F12 which often takes a relatively long time. This is one of the small IDE annoyances. Has anyone also experienced this? -
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
Seems the toolbars are a mess. -
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
Do you also have an unusual WAITING TIME of about 2 - 3 seconds when restoring the IDE window from minimized state?