-
Content Count
9 -
Joined
-
Last visited
-
Days Won
1
Paul TOTH last won the day on October 17 2022
Paul TOTH had the most liked content!
Community Reputation
2 NeutralTechnical Information
-
Delphi-Version
Delphi 11 Alexandria
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
[Android / Delphi 10.4] How to access the log.d messages without monitor.bat?
Paul TOTH replied to Fabian1648's topic in FMX
You can try http://app.serialgames.jp/sgd/alog/ the page is in japanese but the application in english direct download from http://app.serialgames.jp/sgd/alog/download/androidlogviewer_win_2_0_0.zip -
it's look like an Ansi/Unicode issue...it that an old Delphi application before Delphi 2009 compiled with a recent version ? didn't see it's in explorer
-
Delphi 11.2 - TTreeview issue not in debug but release mode - Node.HasAsParent(myParentNode) myParentNode
Paul TOTH replied to rudy999's topic in VCL
I guess you means if Assigned(Node.Parent) then begin myParentNode := Node.Parent; strParentText := myParentNode.Text; end; -
the purpose of TFrame is to not register a custom component ! you create a frame, put some components, and voilà you can put this frame on any form of your project without registering anything. when a custom component owns some subcomponents, there's more to do - that I don't have in mind yet - to support serialization to/from the DFM
-
oh sorry, you want to create GIF...I use GifCam for that, but if you need to this by code it's a bit complexe because GIF supports only 256 colors per frame
-
googling for FMX and GIF... https://beyondvelocity.blog/2020/01/09/gif-animation-in-fmx/ the component: http://www.raysoftware.cn/559.html
-
GIFs are now patent-free https://burnallgifs.org/archives/
-
Paul TOTH changed their profile photo
-
TRESTClient Security Error 12175 following Windows Update
Paul TOTH replied to Andrew Spencer's topic in Network, Cloud and Web
I don't understand... this is a portion of one of my projects {$IFDEF INDY} HTTP := TidHTTP.Create(Self); {$IFDEF INDY_SSL} SSL := TIdSSLIOHandlerSocketOpenSSL.Create(Self); SSL.SSLOptions.SSLVersions := [sslvTLSv1_2]; {$ELSE} SSL := TIdSSLIOHandlerSocketSChannel.Create(Self); {$ENDIF} HTTP.IOHandler := SSL; {$ELSE} HTTP := THTTPClient.Create; {$ENDIF} HTTP.Get ('https://secure.bioserveur.com/bioserveur-access/ws_download.pl?logincode=' + login + '&password=' + password, response); if I define INDY only my SChannel component raise a 0x80090326 error on InitializeSecurityContext under Windows 10 with INDY and INDY_SLL (OpenSSL) it works without INDY I use System.Net.HttpClient and it works also, with a call to WinHttpSendRequest() from winhttp.dll ! -
TRESTClient Security Error 12175 following Windows Update
Paul TOTH replied to Andrew Spencer's topic in Network, Cloud and Web
Hello, it seems that curl did fix the problem https://github.com/curl/curl/blob/master/lib/vtls/schannel.c#L223 I can read the site with curl, but my SChannel component fails https://github.com/tothpaul/Delphi/tree/master/Indy.SChannel I did not found the time to look at their code