10-27-2020, 02:53 PM
TIWForm1-> Show ();
This will never work. TIWForm1 is the class. You need to create an instance of that class and call Show on the instance.
TIWForm2.Create (WebApplication) .Show;
This contains a constructor. In Delphi the constructor is the Create.
This will never work. TIWForm1 is the class. You need to create an instance of that class and call Show on the instance.
TIWForm2.Create (WebApplication) .Show;
This contains a constructor. In Delphi the constructor is the Create.