

Lajos Juhász
Members-
Content Count
1068 -
Joined
-
Last visited
-
Days Won
15
Lajos Juhász last won the day on May 8
Lajos Juhász had the most liked content!
Community Reputation
320 ExcellentTechnical Information
-
Delphi-Version
Delphi 12 Athens
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
Prg execution time problem in Delphi11.2 IDE and command line of a DLL function
Lajos Juhász replied to lucarnet's topic in Delphi IDE and APIs
It could be that when the library detects the debugger it slows down. You can try using Lazarus at Windows to see if it behaves the same. -
promise Introducing My Delphi TFuture PPL For Thread Safe UI
Lajos Juhász replied to bravesofts's topic in I made this
The question was whether it is possible to check if the future is completed or not. Method Wait can be used to achieve that. (The design of wait could be improved to support non-blocking call, but we can argue if a couple of ms delay is significant or not.) Nobody mentioned that the future is going to be used in the main thread. Whenever ProcessMessages should be used or process paint messages depends on how long the calculation should take. If it is under a minute or the application should be blocked during the life of the method, it should not be used. -
promise Introducing My Delphi TFuture PPL For Thread Safe UI
Lajos Juhász replied to bravesofts's topic in I made this
Read the documentation: function Wait(Timeout: Cardinal = INFINITE): Boolean; overload; You do not have to wait for infinite. -
promise Introducing My Delphi TFuture PPL For Thread Safe UI
Lajos Juhász replied to bravesofts's topic in I made this
That is the idea behind future to do something until you definitely need the result of the future. If you want to check if the future is finished you can use the wait method. -
The answer is the same as for the previous question you have to change the StyledSettings. In this case you are changing the Family and Style thus you have to remove those elements from the set, you do not change the Style of the font. You can replace: L1.StyledSettings:=L1.StyledSettings-[TStyledSetting.Style]; L2.StyledSettings:=L2.StyledSettings-[TStyledSetting.Style]; with: L1.StyledSettings:=[]; L2.StyledSettings:=[];
-
Calling a method of the target form?
-
Problem with Calculated fields in a TFDQuerry
Lajos Juhász replied to Squall_FF8's topic in Databases
First of all, DBGrid is not a dataset, it is a component that displays data. How should a component know if and when the field value must be calculated again and cannot use the cached value? On the other hand you can use fkInternalCalc (caches) stores the calculated values https://docwiki.embarcadero.com/Libraries/Athens/en/Data.DB.TFieldKind. -
CaretPositionRTTIProp.GetValue(Memo1) raises AV
Lajos Juhász replied to dmitrybv's topic in RTL and Delphi Object Pascal
CaretPositionProp is not nil, however when invoking the GetValyue in CaretPositionProp.GetValue self is an Inaccessible value: FMX.Memo.TCustomMemo.GetCaretPosition :00cfcac8 RawInvoke + $40 System.Rtti.RawInvoke(???,???) :00cfcead Invoke + $249 System.Rtti.Invoke(nil,(),???,???,True,True) :00cf5689 TRttiInstanceProperty.DoGetValue + $DD System.Rtti.TRttiInstanceProperty.DoGetValue(???) :00cf54ae TRttiProperty.GetValue + $26 Since it is pointing to an invalid address the Access Violation is when the code tries to execute Model.CaretPosition. -
Using Chrome there is still no warning. I got the warning using FireFox.
-
Use Google Chrome, no error messages.
-
If you are using a standard windows user then you must start the IDE elevated in order to have a chance to verify which patches are installed.
-
You see he images because the IDE will copy paste the reference to the imagelist on the DM. The compiler will find the DM containing the pictures and will show them. You can save the form, close all the projects and open the form the IDE will remove the reference to the datamodule and you will not see the pictures anymore.
-
Possibly interesting issue with a variant holding a Bcd.
Lajos Juhász replied to MarkShark's topic in RTL and Delphi Object Pascal
This also fails in XE5 and 11.2. -
FireDAC is using the meta information from the connection library to determine the data types. You can try to use cast to change the data type for the field in your test application.
-
The version also matters since it was changed for version 12. https://dalijap.blogspot.com/2023/09/coming-in-delphi-12-disabled-floating.html