

Lajos Juhász
Members-
Content Count
1050 -
Joined
-
Last visited
-
Days Won
14
Everything posted by Lajos Juhász
-
Send a file from a Delphi VCL program using WhatsApp Cloud API
Lajos Juhász replied to lior I's topic in Network, Cloud and Web
You have to replace /local/path/file.jpg with your pdf file and type=application/pdf. -
Sweet 16: Delphi/Object Pascal
Lajos Juhász replied to DJof SD's topic in Tips / Blogs / Tutorials / Videos
I wrote that in context that Asm has more than twice the rating of Delphi. I simply cannot believe that's true. -
Sweet 16: Delphi/Object Pascal
Lajos Juhász replied to DJof SD's topic in Tips / Blogs / Tutorials / Videos
For me Assembly language makes no sense. I wonder in 2022 who is still coding using asm (I doubt it's used widely in windows applications). -
If you are looking for the Registered Prodducts portal you can find it at https://my.embarcadero.com.
-
System.Generics.Collections.TList.BinarySearch if there are duplicates
Lajos Juhász replied to dummzeuch's topic in RTL and Delphi Object Pascal
My point was with that Wikipedia link that modified algorithms have their names. Like in the link the variation to find the elemest with lowest index is called binary_search_leftmost and not binary_search. That's true, but most developers expect that if an implementation reference to an algorithm it will implement that algorithm and not something else. That was the whole point to name algorithms in matemathics and computer science. That no matter from where you learned an algorithm you know how it works. -
System.Generics.Collections.TList.BinarySearch if there are duplicates
Lajos Juhász replied to dummzeuch's topic in RTL and Delphi Object Pascal
This is the definition of the binary search: https://en.wikipedia.org/wiki/Binary_search_algorithm "The procedure may return any index whose element is equal to the target value, even if there are duplicate elements in the array. For example, if the array to be searched was {\displaystyle [1,2,3,4,4,5,6,7]}{\displaystyle [1,2,3,4,4,5,6,7]} and the target was {\displaystyle 4}4, then it would be correct for the algorithm to either return the 4th (index 3) or 5th (index 4) element. The regular procedure would return the 4th element (index 3) in this case. It does not always return the first duplicate (consider {\displaystyle [1,2,4,4,4,5,6,7]}{\displaystyle [1,2,4,4,4,5,6,7]} which still returns the 4th element). " -
System.Generics.Collections.TList.BinarySearch if there are duplicates
Lajos Juhász replied to dummzeuch's topic in RTL and Delphi Object Pascal
I doubt, this is by definition how Binary search works. To get the lowest index you just to iterate from the matched item and find the lowest index. -
It's the same as you Embarcadero account.
-
Clean cache memory after generete fast report
Lajos Juhász replied to Zazhir's topic in RTL and Delphi Object Pascal
It's hard to verify code this large. One thing you're for every step create a query: gisShapeTypePolygon: begin qryUID := TADOQuery.create(self); This is not going to be a definite leak as it has self (most probably the form as the owner). The query will remain open until the owner is destroyed. -
Can anyone check their Hash against mine, please? certUtil -hashfile designide280.bpl SHA256 (Delphi 11)
Lajos Juhász replied to Al T's topic in Delphi IDE and APIs
That's not what I have Size: 1.80 MB (1,894,304 bytes) and my coy was signed by Idera, Inc. -
Possible changes to string/char handling in Delphi 11(.2)?
Lajos Juhász replied to omnibrain's topic in General Help
Yeah, and breaks FireDAC as it converts from UTF-16 using the language for non-unicode programs instead of using conversion from client locale to server locale. -
Possible changes to string/char handling in Delphi 11(.2)?
Lajos Juhász replied to omnibrain's topic in General Help
This is true for strings. However in the example it's used to assign the value to ansistring: var MyAnsiString: AnsiString; AnsiString is not a unicode string thus there is no chr(11200) most probably the code page of the ansistring will have no conversation for that unicode code point thus will be converted to ? -
At least I won this bet. You should always post the parent class as don't everyone will have the complete source. By openning the System.Classes.pas it's clear what to do: procedure TCustomMemoryStream.SetPointer(Ptr: Pointer; const Size: NativeInt); change the method signature to match.
-
You should at least provide a compiler error message. From here we don't know which class it's inherited from. I don't like to gamble but will make an exception my guess is that you should change the parameters of the method to match the signature from the parent class?
-
Attach to Process along with Stepping through Code
Lajos Juhász replied to PeaShooter_OMO's topic in General Help
Delphi 11 can be tough on debugging. I also have problem to debug a code in a package. Sometimes I can place a break point and works as expected sometimes I have to use ShowMessages to debug. Build all can help (but not always). -
Windows VCL application pauses when window is not focused...
Lajos Juhász replied to DavidJr.'s topic in VCL
Without seeing a code the UI reading from a working thread could be a problem as that must be synchronized. The working thread should post information or synchronize with the UI. -
Most probably there was no QP ticket to implement this logic?
-
Delphi dll ERROR_BAD_EXE_FORMAT
Lajos Juhász replied to isola's topic in RTL and Delphi Object Pascal
You can find out in the Help: Use debug .dcus The debug DCUs contain debug information and are built with stack frames. When this option is checked, the compiler adds the debug DCU path to the search paths specified in Debug Source Path on the Embarcadero Debuggers page. -
(replicable w/ source) Why do I always get Access Violation every time I rebuild ANY component? (Current solution is to Restart Delphi.. Why??)
Lajos Juhász replied to Al T's topic in FMX
Open a ticket at https://quality.embarcadero.com/ with the steps how to get Access Violation. -
(replicable w/ source) Why do I always get Access Violation every time I rebuild ANY component? (Current solution is to Restart Delphi.. Why??)
Lajos Juhász replied to Al T's topic in FMX
Yes you can, before you compile the package uninstall all the packages that depends on that one. That should improve the situation. Unfortunately this is a "known" issue and impossible to report (as it's hard to make the required test case). PS. For a project group I even have a situation that some days Access Violation is almost every time triggered when I compile an application without runtime packages. -
uses Xml.XMLIntf, Xml.XMLDoc; procedure TForm1.Button1Click(Sender: TObject); var MyXMLDocument : IXMLDocument; FounderNode : IXMLNode; begin MyXMLDocument := TXMLDocument.Create(nil); MyXMLDocument.Active := true; MyXMLDocument.Version:='1.0'; MyXMLDocument.DocumentElement := MyXMLDocument.CreateNode('ab', ntElement,''); MyXMLDocument.DocumentElement.DeclareNamespace('xsi', 'https://www.guru99.com/XMLSchema-instance'); MyXMLDocument.DocumentElement.DeclareNamespace('xsd', 'https://www.guru99.com/XMLSchema'); MyXMLDocument.DocumentElement.SetAttributeNS('xmlns', '','MyString'); FounderNode := MyXMLDocument.DocumentElement.AddChild('founder'); FounderNode.NodeValue:='Krishna'; MyXMLDocument.SaveToFile('TestOne01.XML'); MyXMLDocument.Active := false; end; You have to set the version and MyString should be the 3rd parameter not the second one.
-
There is a hope for Delphi 11 CE; my bet is that it's going to be released after Delphi 12. In order to learn more about the release date and roadmap I suggest to apply for a job at Embarcadero (that's the only legal way to get information).
-
You can access the windows handle using WindowHandleToPlatform. .
-
Google thinks this is a way to achieve it: https://www.advancedinstaller.com/forums/viewtopic.php?t=9364
-
This should be part of the installation of your application. For example Inno Setup can do it for you.