19/05/2023: A causa di un errore sono stati cancellati, insieme ad account creati da bot, alcuni account legittimi. Si prega di leggere qui: https://www.gambas-it.org/smf/index.php?topic=9733.0
Label1.Text = ""Label2.Text = ""Label3.Text = ""Label4.Text = ""Label5.Text = ""Label6.Text = ""Label7.Text = ""Label8.Text = ""Label9.Text = ""Label10.Text = ""Label11.Text = ""Label12.Text = ""Label13.Text = ""Label14.Text = ""Label15.Text = ""Label16.Text = ""Label17.Text = ""Label18.Text = ""Label19.Text = ""Label20.Text = ""
PUBLIC SUB Form_Open()DIM Oggetto AS ObjectDIM i AS Integer = 1FOR EACH Oggetto IN FMain.Children IF Oggetto.Name = "Label" & i THEN Oggetto.Text = "" ENDIF INC iNEXTEND
DIM Oggetto AS Object DIM i AS Integer FOR EACH FMain.Children IF InStr(FMain.Children[i].Name, "Label") <> 0 THEN oggetto = FMain.Children[i] oggetto.text = "" ENDIF INC i NEXT
così dovrebbe andareCodice: gambas [Seleziona]DIM Oggetto AS Object DIM i AS Integer FOR EACH FMain.Children IF InStr(FMain.Children[i].Name, "Label") <> 0 THEN oggetto = FMain.Children[i] oggetto.text = "" ENDIF INC i NEXT