Tag: Desktop
Desktop Application created in Visual Basic 2008
by Installer on Apr.03, 2010, under Vbscript
A basic Desktop Application created in Visual Basic 2008.
Related posts
Look this Funny Desktop Prank made in notepad (vbscript) – With codes
by Installer on Apr.02, 2010, under Vbscript
Thanks for watching. Comment, Rate and Subscribe, pls. Look code: msgbox”message”, 48 (message style), “title” jneves4pt.weebly.com
Related posts
Create Shortcut at your Desktop
by Installer on Jan.25, 2010, under Windows
This vbscript create automatically a shortcut at your Desktop
1 2 3 4 5 | set WshShell = WScript.CreateObject("WScript.Shell") strDesktop = WshShell.SpecialFolders("Desktop") set oUrlLink = WshShell.CreateShortcut(strDesktop & "\Install.gr") oUrlLink.TargetPath = "http://www.install.gr" oUrlLink.Save |