HwNL Community - Il Forum Informatico
Easy Luncher - Versione stampabile

+- HwNL Community - Il Forum Informatico (https://forum.hwnl.it)
+-- Forum: Informatica (https://forum.hwnl.it/forum-27.html)
+--- Forum: Programmazione (https://forum.hwnl.it/forum-18.html)
+--- Discussione: Easy Luncher (/thread-521.html)



RE: Easy Luncher - Devil_Code - 09-07-2009

Codice:
;semplice launcher

MsgBox, 0, Benvenuto,Devil Easy Launcher è un semplice launcher di programmi.
Process Priority,,High
SetBatchLines, -1

TrayTip , Devil Easy Launcher, Devil Easy Launcher è posizionato qui, 5, 1

SetWorkingDir %A_ScriptDir%

#Persistent
Menu, Tray, NoStandard
Menu, tray, add, Calcolatrice, calcolatrice
Menu, tray, add, Notepad, notepad
Menu, tray, add, Paint, paint
Menu, tray, add
Menu, tray, add, Cmd, cmd
Menu, tray, add, Ip,ip
Menu, tray, add, Esci, exit
return

calcolatrice:
MsgBox, 4, Calcolatrice, Avviare la calcolatrice?
IfMsgBox No
    return
else
run calc.exe
return

Notepad:
MsgBox, 4, Notepad, Avviare blocco note?
IfMsgBox No
    return
else
run notepad.exe
return

paint:
MsgBox, 4, Paint, Avviare paint?
IfMsgBox No
    return
else
run mspaint.exe
return

cmd:
MsgBox, 4, Cmd, Avviare cmd?
IfMsgBox No
    return
else
run cmd.exe
return

ip:
MsgBox, 4, IP, Vuoi sapere il tuo ip?
IfMsgBox No
    return
else
MsgBox, % A_IPAddress1
return


exit:
MsgBox, 4, Esci, Vuoi Uscire?
IfMsgBox No
    return
else
MsgBox, 0, Bye, Grazie di aver usato il mio launcher :D.
ExitApp



RE: Easy Luncher - Fabianator - 09-08-2009

pan per i tuoi denti... :mrgreen:


RE: Easy Luncher - Tex - 09-08-2009

E' vero progresso quando è per tutti?
"c cos avt ditt?" :acc:


RE: Easy Luncher - Admin - 09-08-2009

Tex non ha torto, Devil qualche riga di delucidazione farebbe comodo a chi vuole cimentarsi...