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
PUBLIC SUB Button2_Click()DIM i AS Integer Testo = NEW TextArea(TabStrip1) Testo.Text = "1" Testo.Name = Testo.Text Testo.X = 50 Testo.Y = 50 Testi.Add(Testo) TabStrip1.Count += 1 TabStrip1[1].Text = "Tab2" TabStrip1.Index = 1 Testo = NEW TextArea(TabStrip1) Testo.Text = "2" Testo.Name = Testo.Text Testo.X = 50 Testo.Y = 50 Testi.Add(Testo)END
PUBLIC SUB Button3_Click()DIM hObject1, hObject2 AS Object TabStrip1.Index = 1 FOR EACH hObject1 IN ME.Children IF Lower(Object.Type(hObject1)) = "tabstrip" THEN FOR EACH hObject2 IN hObject1.Children IF hObject2.name = "2" THEN hObject2.delete ENDIF NEXT ENDIF NEXT WAIT '-- questo non va tolto perché devi dare tempo al form di cancellare materialmente l'oggetto TabStrip1.Index = 0 TabStrip1.Count -= 1END
inizio.CenterIF NOT Exist(User.home) THEN ME.CloseELSEx.showENDIF ENDPUBLIC SUB Button2_Click()Desktop.Open("http://gambas-it.org")END
Bel lavoro
IF User.Name = "f.surfing" THEN PRINT "Accontanti"ELSE IF User.Name = "Ceskho" THEN FOR i = 0 TO 10 PRINT "Il migliore" NEXTELSE PRINT "Ciao!!!"END IF
sbagli, nell'anteprima non lo vedi ma qui si....
PRIVATE FUNCTION Prova() PRINT "Prova nuovo codice"END