PDA

View Full Version : Where can I go to learn VBScript?



GRitt
01-15-2010, 06:49 PM
I know VBA for Excel, is VBScript very similar? Anyone know a site that's really good for teaching yourself it?

Maverick1104
01-31-2010, 08:35 AM
http://msdn.microsoft.com/en-us/library/sx7b3k7y(VS.85).aspx


microsoft page about it, might be of some use, I haven't looked through it yet but it seems with some programming background it could be of use.

Rudi
08-03-2010, 07:55 PM
Yes, VBA, VB and VBScript are all fairly similar.
There's a nice intro to VBScript at:

http://en.wikipedia.org/wiki/VBScript

It includes some nice sample code to get you started.

One thing to be aware of is that VBScript can be used in three different environments:

- within a browser to add functionality to web pages (HTML)
- to generate web pages dynamically (ASP - Active Server Pages)
- or within the Windows environment (WSH - Windows Scripting Host)

The environment that is of use within Air Mouse is the WHS one where you can interact directly with Windows.

Once you are familiar with the basics outlined in the Wikipedia article Example section, there is a list of all the functions and commands with examples at:

http://msdn.microsoft.com/en-us/library/273zc69c(v=VS.85).aspx

Post back if you need more info,

Best regards,

Rudi