VBScript

Archives Forums/Win32 Discussion/VBScript

Chroma(Posted 2006) [#1]
I just recently started tinkering with vbscript. I like it a lot actually.

Playing with vbscript is as easy as creating a text file on your desktop and changing the extension to .vbs.

You can then run it directly from the desktop!

type this in a text file and rename the extension to .vbs.

msgbox "Hello World!"


Then if you're feeling brave...try something like this:

Set objIE = CreateObject("InternetExplorer.Application")
objIE.visible=true
objIE.navigate("http:\\www.google.com")


Fun Stuff!!


Space_guy(Posted 2006) [#2]
ah vbscript :) most of the fun work things I do at work involves it.

Once can really do alot with it.