10-20-2018, 11:12 AM
Hi,
I updated from IW15.0.13 to IW15.0.14 and saw the following error.
My application uses cookies to support autologin. The first form, TDlgLogin, checks a cookie and if it's ok, bypasses the login form by creating the next application form.
In IW15.0.14 the TDlgLogin form is showed instead of the next application form.
Very simplified the testcase is this:
This testcase doesn't show TIWForm2 in IW15.0.14 while it does work in IW15.0.13
Using Delphi 10.1 Berlin
I updated from IW15.0.13 to IW15.0.14 and saw the following error.
My application uses cookies to support autologin. The first form, TDlgLogin, checks a cookie and if it's ok, bypasses the login form by creating the next application form.
In IW15.0.14 the TDlgLogin form is showed instead of the next application form.
Very simplified the testcase is this:
Code:
type
TIWForm1 = class(TIWAppForm)
IWLabel1: TIWLabel;
public
constructor Create(aOwner: TComponent); override;
end;
implementation
uses Unit2;
{$R *.dfm}
{ TIWForm1 }
constructor TIWForm1.Create(aOwner: TComponent);
begin
inherited;
// start form2
TIWForm2.Create(WebApplication).Show;
Release;
end;
initialization
TIWForm1.SetAsMainForm;
end.
This testcase doesn't show TIWForm2 in IW15.0.14 while it does work in IW15.0.13
Using Delphi 10.1 Berlin