Jump to content
Sign in to follow this  
Pasqualino

form principale parte dopo un altra form

Recommended Posts

Salve, ho un problema, non sono molto esperto, uso delphi 10.4.2. in un programma la form principale parte dopo che viene mostrata un altra form che però rimane congelata, a qual punto chiudoa l'altra form e torno sulla principale ma non posso piu tornara all'altra

 

Share this post


Link to post

Ciao, siamo in un forum internazionale. Dovresti esprimerti in inglese.

 

Hi, we are in an international forum. You should express yourself in English.

The list of forms in use in the program is displayed in the "Project/Options" menu

 

image.thumb.png.0e5250b53858a6b53b50c5a1c70ddaad.png

 

Forms that should not be displayed during creation must have the VISIBLE property set to false, view and change the property from the Object Inspector. You must set the property in each individual Form.

At runtime if you need to display a Form you must call the SHOW method of the Form itself, example:

Form2.Show

Obviously it must have already been created either because it is in the "Auto Create Form" list above or because it was created at runtime.

 

Edited by DelphiUdIT
  • Thanks 1

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×