10-14-2020, 06:33 AM
(This post was last modified: 10-15-2020, 02:51 AM by DanBarclay.)
I'm not using this, but I've seen others mention setting during session start:
EDIT NOTE: See Kudzu comments below, setting main form in NewSession is NOT recommended and may cause problems.
Dan
Code:
procedure TApplServer.IWServerControllerBaseNewSession(ASession: TIWApplication);
begin
ASession.Data:=TApplSession.Create(nil, ASession);
// if ASession.Browser.IsMobile then TMyMobileForm.SetAsMainForm else TMyStandardForm.SetAsMainForm;
end;EDIT NOTE: See Kudzu comments below, setting main form in NewSession is NOT recommended and may cause problems.
Dan

