You are not logged in.
Pages: 1
Hi AB Today i found a regression in ExeVersion.ProgramName
Our EXE Name is: RestServer.Service.Exe as you can see it contains 2 DOT (.)
In one of the Former SynCommens the Following Code did the Right Thing and set ProgramName to : RestServer.Service
ProgramName := StringToUTF8(ExtractFileName(ProgramFileName));
i := length(ProgramName);
while i>0 do
if ProgramName[i]='.' then begin
SetLength(ProgramName,i-1);
break;
end else
dec(i);
But actual (don't know exactly when you changed it) ProgramName is set to: RestServer missing the .Service by the following code:
ProgramName := Split(StringToUTF8(ExtractFileName(ProgramFileName)),'.');
Please can you fix this
Last edited by itSDS (2017-03-04 15:03:55)
Rad Studio 12.1 Santorini
Offline
Please check https://synopse.info/fossil/info/221c74bfd5
Sorry for the regression.
Offline
TY i'll check it. Just to get a timestamp for the regression, it happened 28.2.2017 16:32)
Rad Studio 12.1 Santorini
Offline
Pages: 1