Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
IW15.0.14 error/change creating forms
#1
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:


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
Reply


Messages In This Thread
IW15.0.14 error/change creating forms - by jeroen.rottink - 10-20-2018, 11:12 AM

Forum Jump:


Users browsing this thread: 1 Guest(s)