Anyone know?
Printable View
Anyone know?
Hi Zaphod
All you need to do is create a new text file rename it anything.vbs and then write your vbscript within this. Window's automatically reconizes a vbs file and will complie and run it when clicked on.
Put this into a text file, rename it to a .vbs file and d-click on it.
The only thing to remember about vbscript is everything is classed as variants so hence when I dimmed A and B you can't put Dim .. as string.Code:Dim A
Dim B
A = 1
B = 1
msgbox "This is " & A + B & " Easy"
for more information on VBSCRIPT check out here
http://msdn.microsoft.com/scripting/...fo/vbsdocs.htm
Hope this helps
Ian
Thanks, Ian. :D