delphi XE-5 cross platform development - calling a showmodal form
问题 I am currently developing cross platform applications on my Windows desktop using Delphi XE-5. I have a unit I want to use for cross platform development (for this example, lets just work with Windows and Android). In both my Windows and Android apps, I have a button with the following onClick event procedure TfrmMain.Button1Click(Sender: TObject); begin LPSystem:= TLPSystem.Create; try if LPSystem.execute then begin ShowMessage('Logged in!'); end else ShowMessage('Not logged in!'); finally