Pasqualino 0 Posted October 26, 2023 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
DelphiUdIT 176 Posted October 26, 2023 (edited) 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 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 October 26, 2023 by DelphiUdIT 1 Share this post Link to post