

Lajos Juhász
Members-
Content Count
1111 -
Joined
-
Last visited
-
Days Won
15
Everything posted by Lajos Juhász
-
I am not following closely the CE since I get my Delphi licence at work. A google search returned that in case of Delphi 11 the paid version was released on September 9, 2021, the CE was released on April 26, 2023.
-
It is usually 1 - 2 years after the paid version has been released. There is no rule.
-
Am I missing something? You are missing the information from the webinar all the numbers are raised to 370 / 37.0. https://docwiki.embarcadero.com/RADStudio/Florence/en/Compiler_Versions Delphi conditional VER<nnn> Product Product Version Package Version CompilerVersion VER370 Delphi 13.0 Florence / C++Builder 13.0 Florence 37.0 370 37.0 VER360 Delphi 12.0 Athens / C++Builder 12.0 Athens 23.0 290 36.0 VER350 Delphi 11.0 Alexandria / C++Builder 11.0 Alexandria 22.0 280 35.0 VER340 Delphi 10.4 Sydney / C++Builder 10.4 Sydney 21.0 270 34.0
-
New Delphi features in Delphi 13
Lajos Juhász replied to David Heffernan's topic in RTL and Delphi Object Pascal
During the release webinar Marco has mentioned that it was trained among other informations using the Delphi 13 docwiki. -
A smart case statement in Delphi?
Lajos Juhász replied to PeterPanettone's topic in RTL and Delphi Object Pascal
Congratulations. Wow you went on a double-dark side? (Remobjects and Pascal instead of that other language). PS. I wonder will Remobjects do anything with Pascal Script in near future? While Delphi is far behind other languages PS is also lagging. -
suggestion for 2 new su forum: AI usage and AI coding
Lajos Juhász replied to Javier Tarí's topic in Community Management
Most probably AI. That is another good topic where AI can shine. You give the required information and the AI can generate the SQL or give the relevant topic what you are interested in. -
suggestion for 2 new su forum: AI usage and AI coding
Lajos Juhász replied to Javier Tarí's topic in Community Management
No, this is not a good question to ask here. You should ask your favorite AI tool. -
Should we create forum(s) for AI?
Lajos Juhász replied to Lars Fosdal's topic in Community Management
It is already finished: Poll closes on 10/09/25 at 11:59 PM -
Should we create forum(s) for AI?
Lajos Juhász replied to Lars Fosdal's topic in Community Management
Please do not be such a selfish. You should also consider those poor AI engines that must filter this forum to learn what is Delphi. It would help them if there was a special AI subforum. -
Install, activate and use Delphi on an offline computer (windows)
Lajos Juhász replied to PatAura's topic in General Help
I doubt those organizations will meet the requirement for the Community Edition. CE is for individual (hobby) developers and start up companies. -
You could and (definitely) should wait for Delphi 13. In theory it is going to have better support for newer versions of IOS and MacOS. Migrating a code weeks before a new version of Delphi is available does not make a sense.
-
TGridify, convert a flat table into a pivot-grid in one line of code
Lajos Juhász replied to david berneda's topic in Delphi Third-Party
This is off topic. The rumor says she got divorced and kept the house, yacht and the private jet.- 3 replies
-
- pivot-table
- datamining
-
(and 2 more)
Tagged with:
-
Debugging Reliably with IShared - Spring4D
Lajos Juhász replied to Dave Novo's topic in Delphi Third-Party
You can try to check "Allow Side Effects and Function Calls" in some cases that can help. https://docwiki.embarcadero.com/RADStudio/Athens/en/Watch_Properties (When a property has a getter method the IDE can give "Inaccessible value".) -
Dynamic loading might solve the problem. In that case you can change the current folder to be the folder where are your dlls. You can also try to use https://learn.microsoft.com/en-us/windows/win32/api/Winbase/nf-winbase-setdlldirectorya .
-
Memo lines{i] to labelv ok. Labels to Memo lines nope
Lajos Juhász replied to Freeeee's topic in General Help
This code works "properly" even though as others mentioned not the best user interface to do it: procedure TForm1.Button1Click(Sender: TObject); begin Memo1.lines.clear; // delete old values Memo1.lines.Add(Label1.caption); Memo1.lines.Add(Label2.Caption); Memo1.lines.Add(Label3.caption); end; procedure TForm1.Button2Click(Sender: TObject); begin Label1.caption := Memo1.lines[0]; Label2.Caption := Memo1.lines[1]; Label3.Caption := Memo1.lines[2]; end; Steps to test it: 1.) Click button1 2.) Edit the memo make sure all 3 lines remain. 3.) Click button2 - the captions will change on labels. -
Memo lines{i] to labelv ok. Labels to Memo lines nope
Lajos Juhász replied to Freeeee's topic in General Help
This comment is wrong: FROM LABELS this does not work reliabley That does work reliabley. You are assuming that the TStrings (lines) will add new lines where it will not. Try this one: procedure TForm1.Button1Click(Sender: TObject); begin Memo1.lines.clear; // delete old values Memo1.lines.Add(Label1.caption); Memo1.lines.Add(Label2.Caption); Memo1.lines.Add(Label3.caption); end; -
According to a google search that dll can have dependencies. In order to load successfully any dll you have to make sure that all the dependencies can be loaded. (You can try to find out all the dependencies using the proccess monitor). Dependencies: libpq.dll often depends on other DLLs, such as ssleay32.dll and libeay32.dll (for SSL/TLS encryption), and potentially others like libintl-9.dll (for internationalization). Open ssl can be also compiled to be dependent on Microsoft Visual C++ Redistributable runtime libraries.
-
Memo lines{i] to labelv ok. Labels to Memo lines nope
Lajos Juhász replied to Freeeee's topic in General Help
You should provide some code you are testing. Not even Remy can see your monitor or debug inside your IDE. -
Cost benefit analysis of moving project from Classic compiler to Clang
Lajos Juhász replied to Lachlan Gemmell's topic in General Help
I strongly believe that the move to 64 bit IDE was forced due to the fact that more and more database engines allowed only 64 bit access. On the other hand this could be enable to debug a 64 bit Delphi code. -
What is the equivalent of Vcl.TDBLookupComboBox in FMX?
Lajos Juhász replied to dmitrybv's topic in FMX
There is none. You have to use a component that is native for the OS/OSes you are targeting. -
you are showing the uses section not the scope names for the project.
-
I do not have to see a screenshot in order to know that the unit scope names for the project is most probably empty or not complete?
-
Depending the servers you are using to could be still possible.
-
I doubt that could be true. I did the conversion from TNT to native VCL 11 years ago, 99% of the job was done using a refind script.
-
An old application should not require the TNT Components. You should upgrade the forms to use the default VCL components. Adjust the scope names or use full unit names to make the IDE faster and more stable.