User Tools

Site Tools


vbreminder
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


vbreminder [2012/09/17 17:09] (current) – created gfsadministrator
Line 1: Line 1:
 +====== VBReminder ======
  
 +**Riferimento**: Gioxx ([[mailto:dev@gfsolone.com|dev@gfsolone.com]])\\
 +**Vedi articolo originale**: http://gioxx.org/?p=8961
 +
 +{{::vbreminder-yesno.png|}}
 +
 +===== Sorgente =====
 +**Current**: 0.1
 +
 +<file vb VBReminder.vbs>
 +'*****************************************************
 +' Can I Open The Application?
 +' GSolone 2012 - dev@gfsolone.com
 +' Script piuttosto semplice fatto per essere
 +' associato ad un task schedulato e chiedere di
 +' aprire un'applicazione. Nel mio caso il client di
 +' posta per verificare nuove mail in una mailbox 
 +' utilizzata raramente.
 +'*****************************************************
 +
 +set WshShell = CreateObject("WScript.Shell")
 +strQuestion = "Posso lanciare EarlyBird per la verifica della posta arrivata?"
 + answer= msgbox (strQuestion, vbYesNo)
 + if answer= vbYes then 
 +     Command = "%UserProfile%\thunderbird\thunderbird.exe"
 + WshShell.Run Command
 + end if
 +wscript.quit
 +</file>
vbreminder.txt · Last modified: 2012/09/17 17:09 by gfsadministrator