07-03-2020, 12:35 PM
(07-03-2020, 06:57 AM)Mikael Nilsson Wrote:(07-02-2020, 03:31 PM)SorenJensen Wrote: Also you can use .value in the assign:
UserSession.FDQryUsersMod.FieldByName('UserID').value := AnsiUppercase(inpUID.Text);
UserSession.FDQryUsersMod.FieldByName('PartID').value := UserSession.UsersSelectedPartId;
UserSession.FDQryUsersMod.FieldByName('Uppldat').value := now;
.value is a genetic type which will add the value as it is assigned, as long as the assigned and the assignee types are the same.
Thanks for the tip but my way of coding is working in Delphi 10.3.2 but not in Delphi 10.3.3
Also text string is showing dates like this 05/01/2020 instead of 2020-05-01
Hi,
We have identified the problem now. We are running the webpool with a specific Identity (User). That user id
was not assign with Swedish Settings.
The same situation with batchjobs started with the scheduler. It is specific user for Scheduler to.
Only problem is that FormatDateTime('c',now) still is problem.
When rewrite it to FormatDateTime('yyyy-mm-dd hh:nn
