Hafedh TRIMECHE

Results 14 comments of Hafedh TRIMECHE

Hello, Thank you for your response. But how to debug an eventual Memory Leak? Best regards.

Dear, This procedure is applicable to Memory allocated by Delphi via FastMM not for External DLL written into another language. Would Alignment {$ALIGN} or/and {$ENUMSIZE} be the cause of the...

Hello, The Width attribute is not parsed inside CSS body (210mm). The real Width of the html is set ignoring this attribute. ``` Residence information body { font-family: "Courier New",...

Sorry, The PNG rendering problem is caused by the SynPdf component! https://github.com/synopse/SynPDF Best regards.

Hello, The outputs of **SHA3** and **Keccak** are different: https://www.cybertest.com/blog/keccak-vs-sha3 https://keccak.team/keccak.html https://medium.com/@ConsenSys/are-you-really-using-sha-3-or-old-code-c5df31ad2b0 **SHA3** would be named **SHA-3**. **SHA-3** & **Keccak** would be tested on: http://emn178.github.io/online-tools/sha3_256.html and http://emn178.github.io/online-tools/keccak_256.html Best regards.

Hello, An idea for using TStringStream: ``` procedure TJsonValueHelper.InternalStringify(Stream:TStringStream;AName:string;AValue:TJsonValue); const StrBoolean : array[Boolean] of string = ('false', 'true'); procedure ObjectStringify(JsonObject:Jsons.TJsonObject); var i : Integer; Item : TJsonPair; begin Stream.WriteString('{'); for...

Hello, 3rd Checkbox uncheck but clicking **F2 (Keyboard)** not saving editor's content! Clicking **F2 (Mouse cursor)** saved the file. ![image](https://user-images.githubusercontent.com/988584/218710938-77298499-e21c-4691-b0a7-fb9e41b6be90.png) Best regards.

Hi, Please find the new exception details: ``` (001FF03A){bds.exe } [0020003A] [6DEE4F72]{rtl280.bpl } System.@FinalizeArray (Line 33511, "System.pas" + 65) + $6 [69286D96]{IDELSP280.bpl} BaseLSPServer.TLSPServer.LSPServerCharEncoding (Line 677, "BaseLSPServer.pas" + 6) + $7C5...

Using **TFormatSettings** would be the solution: ``` procedure TJsonDataHelper.SetFloat(const Path:string;const AValue:Extended); var FormatSettings : TFormatSettings; JsonData : TJsonData; begin Lock; JsonData := PathToObject(Path,nkNumber); if Assigned(JsonData) then begin {$IFDEF DCC} FormatSettings...

http://fgaillard.com/2011/02/when-the-debugger-leaks/