

Lajos Juhász
Members-
Content Count
1050 -
Joined
-
Last visited
-
Days Won
14
Everything posted by Lajos Juhász
-
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. -
Delphi Datasnap Android unicode problem
Lajos Juhász replied to dlucic's topic in Network, Cloud and Web
You can try to use a mapping rule on the Datasnap server to map AnsiString to WideString that should solve the problem. -
Delphi Datasnap Android unicode problem
Lajos Juhász replied to dlucic's topic in Network, Cloud and Web
My guess is that the data in the database is written using codepage 1250. On Windows the program converts the field values from CP 1250 to UTF-16 while Android does not. -
Delphi 12.0 - Cannot find implementation of method ... - Multiline Strings
Lajos Juhász replied to BertB's topic in VCL
No, it is not. It also breaks the deprecated code formatter. Unfortunately, we must wait until Delphi 15 to use this new feature. -
Gaining access to private class vars of an implementation class
Lajos Juhász replied to Eric Grange's topic in RTL and Delphi Object Pascal
I am aware. Unfortunately that is thr only right way to do it. You can try to hack the system. Unfortunately that depends heavily on the memory layout and the classes current definitions as a result most probably will break with every version of the Delphi. -
Gaining access to private class vars of an implementation class
Lajos Juhász replied to Eric Grange's topic in RTL and Delphi Object Pascal
I guess you already know the answer. Enter a ticket on the Quality Portal to request access to the fields you want. Give a good explanation why whould you want those fields to be public or protected in order to reach MFGA (Make Firemonkey Great Again). -
The glyph is an old "obsolate" property to assigning the image, also using png is an old and should not be used in modern applications. Nowdays you should use svg stored in virtual image list to be able to support various DPI settings.
-
As it was mentioned earlier developing for mobile platforms is a moving target. In case of Android you have to follow the rules that Google sets every year. You cannot use the same tool for years like for Windows.
- 14 replies
-
- delphi xe7
- fmx
-
(and 2 more)
Tagged with:
-
Without having more information: - If a component is placed on the form using the IDE the owner of the component is going to be the form. This can be different when the component is created runtime. - You can go using in the component hierarchy using the parent property until you find the form you are looking for.
- 5 replies
-
- vcl
- component classes
-
(and 2 more)
Tagged with:
-
"Death to WITH" in your Delphi Code
Lajos Juhász replied to Darian Miller's topic in Tips / Blogs / Tutorials / Videos
There is no need for with in your example: procedure TMyForm.UpdateInventoryItem(const NewQty: Integer); var a: <the required type>; b: <the required type>; begin a:= dmStoreInventoryData; b:= A.tblUpdateItemForStore; B.Edit; B.FieldByName('Qty').AsInteger := NewQty; B.Post; end; With will not make this code any cleaner. -
Which version of Delphi?
-
While the component has no property you can send a message to the underlying win32 component. Everything you need is in Winapi.CommCtrl. There is a TreeView_SetLineColor to send a message.
-
Delphi 2007 and XE5 Crashes on Windows 11
Lajos Juhász replied to CarGo's topic in Delphi IDE and APIs
Do it from Delphi 12, the License action were added after XE5. -
Delphi 2007 and XE5 Crashes on Windows 11
Lajos Juhász replied to CarGo's topic in Delphi IDE and APIs
I believe this was a sign that the IDE thought it was cracked? There were posts about this. Try to open LicenseManager from XE5 and refresh the license.