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
Sub text_keypress (Index as Integer, KeyAscii as Integer) if KeyAscii >= 48 And KeyAscii <= 57 Then exit sub if KeyAscii = 8 Then exit sub if Chr$(KeyAscii) = "." Then exit sub KeyAscii = 0End Sub
PUBLIC SUB TextQuant_LostFocus() IF LAST.text <> "" THEN LAST.text = Format$(LAST.text, "#.00") END IFEND