

tgbs
Members-
Content Count
107 -
Joined
-
Last visited
-
Days Won
1
tgbs last won the day on October 28 2024
tgbs had the most liked content!
Community Reputation
16 GoodTechnical Information
-
Delphi-Version
Delphi 12 Athens
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
-
I don't know that a UDP protocol was used. The events in old versions were in a different port but now they are going through the main
-
You need to add exception to firewall. Port or program is your choice https://supportcenter.lexisnexis.com/app/answers/answer_view/a_id/1081611/~/adding-exceptions-to-the-windows-firewall
-
IBX is Crashing Application on Windows XP / Server 2003
tgbs replied to MikeMon's topic in Databases
Take a look at the Windows application log. -
finalbuilder FinalBuilder 8.0.0.3035 with Rad Studio 11 support released.
tgbs replied to Vincent Parrett's topic in Delphi Third-Party
After ssh connection we execute command on server. If timeout is set -1 there is error "respond reading timed out". The problem is that this script runs for a different amount of time -
Excuse me but I pressed a report post instead of shared
-
"SSL routines:ssl3_read_bytes:tlsv1 alert internal" error when CDN active
tgbs replied to GabrielMoraru's topic in Indy
https://www.theregister.com/2025/03/04/cloudflare_blocking_niche_browsers/ Maybe that's the problem -
Windows 10,11 ? Or Windows Server version
-
After the renewal, an apache must be restarted
-
Drop Primary key, alter domain, recreate primary key. If You have Foreign keys - first drop them
-
ANN : FinalBuilder/Continua CI/Signotaur - Black Friday Sale - 40% off new licenses
tgbs replied to Vincent Parrett's topic in Delphi Third-Party
After click buy now button- 7 replies
-
- finalbuilder
- code signing
-
(and 1 more)
Tagged with:
-
Validity Not After Thu, 21 Nov 2024 10:24:06 GMT Please renew certificate
-
I think you will have to buy VM. Linux or Windows is your choice
-
WTF
-
UniqueString(CmdLine); Before CreateProcess ?
-
function RunProcess(CommandLine: String; Var ErrMessage : String; WaitForProcess : Boolean; CreationFlags : Word): Boolean; Var ResultCode : LongWord; StartInfo: TStartUpInfo; ProcInfo: TProcessInformation; begin Result := False; ResultCode := 1; FillChar(StartInfo, SizeOf(TStartUpInfo), #0); FillChar(ProcInfo, SizeOf(TProcessInformation), #0); StartInfo.cb := SizeOf(TStartUpInfo); StartInfo.dwFlags := STARTF_USESHOWWINDOW; // StartInfo.wShowWindow := SW_SHOWMINIMIZED; UniqueString(CommandLine); try try IF NOT CreateProcess(nil, PChar(CommandLine), nil, nil, FALSE, CreationFlags, nil, nil, StartInfo, ProcInfo) THEN BEGIN ErrMessage := SysErrorMessage(GetLastError); Exit; END; except on e : exception do begin ErrMessage := e.Message + #13#10 + SysErrorMessage(GetLastError); Exit; end; end; if not WaitForProcess then ResultCode := 0 else begin WaitForSingleObject(ProcInfo.hProcess, INFINITE); GetExitCodeProcess(ProcInfo.hProcess, ResultCode); end; finally Result := (ResultCode = 0); //-------- CloseHandle(ProcInfo.hProcess); CloseHandle(ProcInfo.hThread); end; end; Set CommandLine to somehing like @corneliusdavid comment