

Lajos Juhász
Members-
Content Count
1063 -
Joined
-
Last visited
-
Days Won
15
Everything posted by Lajos Juhász
-
because it was changed to work like in other programming languages? https://docwiki.embarcadero.com/Libraries/Athens/en/System.Math.SetExceptionMask
-
For me it is working: var eItemClickEvent: TCustomListBox.TItemClickEvent; and fails at: eItemClickEvent := aListBox.OnClick ; since the OnClick and OnItemClick has different signatures. For OnClick it should be: var eOnClickEvent : TNotifyEvent; eOnClickEvent:=aListBox.OnClick;
-
That is only possible if you have not included FMX.ListBox into the uses clause.
-
Yes it is, PAnsiChar is a zero terminated string....
-
How to Set contentDescription for TImage Component in Delphi FMX for Google Accessibility?
Lajos Juhász replied to Feniks888's topic in FMX
I believe this is still the situation. -
On large projects in Delphi XE5 (later they have tried to make it more efficient) Unit scope names have had problems on large projects. the compiler literally tried with every prefix to locate every unit. When I have removed the scope names and changed the source to contain the full unit’s name with scopes, I was able to compile all projects in a project group without a problem.
-
Also third party components could in theory use some API not only VCL.
-
It was mentioned at Delphi 12.2 Webinar. After the death of Eugene Kryukov Embarcadero has no legal agreement to include it with version 12.2. They are working on to make an agreement to continue to include it in future versions of Delphi. https://blogs.embarcadero.com/eugene-kryukov-father-of-firemonkey-and-incredibly-talented-developer
-
In the research area for years there was to replace the IDE and / or make it 64 bit. It is not a secret that they are evaluating the possibilities.
-
They did not mentioned either on the 12.2 presetntation that the premium is required, only that you have to explicitly request it and of course NDA.
-
ICS 9.3 SVN SMTP Attachment
Lajos Juhász replied to chmichael's topic in ICS - Internet Component Suite
Depends on the version of the Delphi. Code Page aware versions of Delphi is going to do as expected UTF-16 to UTF-8 and on assignment back from UTF-8 into UTF-16. -
Using a search on the codebase (I believe) you should install dmvcframeworkDT.dproj from c:\dmvc\packages\d102.
-
You would like to move the scrollbar by the ammount the user have move the mouse to do so you will need two variables (private fields) that stores the previous mouse coordinates: procedure TForm1.Image1MouseDown(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer); begin fPRevX:=X; fPrevY:=Y; end; Now when the user moves the mouse while the left button is pressed we can calculate the new position for the scrollbars: procedure TForm1.Image1MouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); begin if ssLeft in Shift then begin scrollbox1.vertScrollBar.Position := scrollbox1.vertScrollBar.Position+fPrevY-Y; scrollbox1.horzScrollBar.Position := scrollbox1.horzScrollBar.Position+fPRevX-X; fPrevX:=X; fPrevY:=y; end; end;
-
FireDAC Mongo driver, CA and SSL certificates
Lajos Juhász replied to Robert_Ha's topic in Network, Cloud and Web
You can find the details in the documentation: https://docwiki.embarcadero.com/RADStudio/Athens/en/Connect_to_MongoDB_Database_(FireDAC) For more information you follow the link to https://www.mongodb.com/docs/manual/tutorial/configure-ssl-clients/- 4 replies
-
- delphi 10.1
- firedac
-
(and 6 more)
Tagged with:
-
New Warning in 12.2: Overloading a similar index type by declaring an array property 'Items'
Lajos Juhász replied to pyscripter's topic in RTL and Delphi Object Pascal
I have checked this on D11.2 there is also both RTLVersion111 and RTLVersion112 defined. -
TParallelArray Sort Performance...
Lajos Juhász replied to Steve Maughan's topic in RTL and Delphi Object Pascal
Stefan you should give at least 48 hours to a new version before you break it. It does handle array of 100_000 integers. Maybe for a larger arrays you have to buy a special SKU for sorting. -
Delphi takes 9 seconds to start/shutdown an empty application
Lajos Juhász replied to FreeDelphiPascal's topic in General Help
I also have no problem using Delphi 11.2 on Windows 11 using a Laptop with i7-1165G7 @ 2.80GHz 16GB and SSD. -
Delphi 12.2 available for download
Lajos Juhász replied to pyscripter's topic in Delphi IDE and APIs
Using procedure TForm1.Button1Click(Sender: TObject); begin ShowMessage(ISO8601ToDate('0600-12-31T13:13:13Z').ToString); end; I get: [Window Title] Project1 [Content] 01.01.0601 10:46:47 AM [OK] -
Delphi 12.0 - Cannot find implementation of method ... - Multiline Strings
Lajos Juhász replied to BertB's topic in VCL
This is now working on D12.2. (Code formatter is still broken). -
There is one at the repository https://github.com/IndySockets/Indy.
-
Delphi 12.2 available for download
Lajos Juhász replied to pyscripter's topic in Delphi IDE and APIs
I have tried to search for a couple no luck for those. We couldn’t find any matches for ‘RSS-683’. Check your search for typos, or try another search term. We couldn’t find any matches for ‘RSP-42257’. Check your search for typos, or try another search term. -
Delphi 12.2 available for download
Lajos Juhász replied to pyscripter's topic in Delphi IDE and APIs
I cannot find those tickets on the QP portal. -
Delphi 12.2 available for download
Lajos Juhász replied to pyscripter's topic in Delphi IDE and APIs
The QP list is usually updates later. -
Delphi Datasnap Android unicode problem
Lajos Juhász replied to dlucic's topic in Network, Cloud and Web
You can set mapping rules on a connection or query. In both cases you would double click the component. Select the Option menu. Check the Ignore inherited rules, in the stringgrid set the mapping from dtAnsiString to dtWideString. This will required that you change the class from TStringField to TWideStringField for the fields. -
Parameter values are shown incorrectly when debugging VCL from C++ Builder 11/12
Lajos Juhász replied to Martin Prikryl's topic in General Help
According to https://www.embarcadero.com/docs/rad-studio-feature-matrix.pdf version 12.2 should greatly improove the C++ side.