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
stesso medesimo risultato
Citazione da: luca1202 - 13 Luglio 2010, 16:14:16stesso medesimo risultato Hai provato con i processi? Tieni presente che WAIT blocca il software finchè l'azione non è andata a buon fine e si è conclusa. Per sapere come usare i processi fai una ricerca sul forum. E' un argomento abbondantemente trattato.
OPTIONS -u, --urgency=LEVEL Specifies the urgency level (low, normal, criti‐ cal). -t, --expire-time=TIME Specifies the timeout in milliseconds at which to expire the notification. -i, --icon=ICON[,ICON...] Specifies an icon filename or stock icon to display. -c, --category=TYPE[,TYPE...] Specifies the notification category. Help options: -?, --help Show this help message -h, --hint=TYPE:NAME:VALUE Specifies basic extra data to pass. Valid types are int, double, string and byte.
PUBLIC SUB _new(path AS String) SHELL "notify-send \"" & path & " \" " WAIT END
PUBLIC SUB _new(path AS String) SHELL "notify-send " & path END
PUBLIC SUB _new(path AS String) SHELL "notify-send \"" & path & "\"" WAIT END
prova con questo codice:Codice: gambas [Seleziona]PUBLIC SUB _new(path AS String) SHELL "notify-send " & path END
la sintassi del comando è errata perchè il parametro da passare alla notifica deve essere tra virgolette, infatti provando ad eseguire dice che il numero di argomenti non è valido
È molto più "elegante" riaprire il sorgente e metterlo come dipendenza
PUBLIC SUB _new(path AS String) dim comando as stringcomando= "notify-send " & path SHELL comando END
secondo me siete tutti fusi dal caldo!Codice: gambas [Seleziona] PUBLIC SUB _new(path AS String) dim comando as stringcomando= "notify-send " & path SHELL comando END
PUBLIC SUB Form_Open()DIM txt AS String txt = "Ciao" SHELL "notify-send '" & txt & "'" END
PUBLIC SUB Main()DIM X AS FMain X = NEW FMain("Ciao") X.Show() END
PUBLIC SUB Button1_Click() DIM path AS String DIM comando AS String path = "Pippo" comando = "notify-send " & path SHELL comando END