Jump to content

apertura form


DanieleDR

Recommended Posts

Salve ho creato questa application con i componenti mobile.
la form main, ha 3 pulsanti quando clicco sul pulsante "PREZZI CARBURANTI" e sul pulsante "ELENCO", si dovrebbero aprire altre 2 form, nel primo caso quella dell'immagine "LIS".

Purtroppo quando premo i 2 pulsanti parte sempre come prima schermata quella con come "MOV", appena la chiudo parte la form corretta.

Cosa posso sistemare per far partire subito la form corretta ?

lis.png

mov.png

main.png

Link to comment
Share on other sites

ho creato un applicazione mobile. (server) e all'interno ho un mainform e poi diverse form free mobile.
nella mainforme ho questi 3 pulsanti ognuno dei quali apre un form diverso , tramite unimform2.show, 

ma viene visualizzata prima sempre la UnimForm1 alla chiusura parte la form corretta.

ho questo come codice:

procedure TMainmForm.UnimPREZZIClick(Sender: TObject);
begin
  UnimForm6.Show;
end;

procedure TMainmForm.UnimGestioneClick(Sender: TObject);
begin
  UnimForm1.Show;
end;

procedure TMainmForm.UnimELENCOClick(Sender: TObject);
begin
  UnimForm3.Show;
end;
 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...