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
DIM xbindkeys_output AS String DIM outputS AS String[] DIM hotkey AS String SHELL "touch /tmp/xbindkeysrc" SHELL "xbindkeys -k -f /tmp/xbindkeysrc" TO xbindkeys_output outputS = Split(xbindkeys_output, "\n", "", TRUE) hotkey = Trim(outputS[outputS.count - 1]) Return hotkey
PUBLIC SUB Form_KeyPress() IF key.code = key.Esc THEN FMain.CLOSEend