VBScript commands

Status
Not open for further replies.

kpmwrestler

In Runtime
Messages
489
I have decided to learn VBScript. I have a few questions:

What is a good site that lists out ALL of the commands, explains them, and shows how to use them? (Commands such as Wscript.echo and InputBox)

Are there any other commands to the WScript.(something) besides WScript.echo? If there are, how many and what are they.

How do you create a loop in VBScript?

How many other commands similar to inputbox are there?

How do you make the script maximize when opened?
 
Wow that is exactly what I was looking for!!!


Thanks a bunch

Thanks a huge amount!!!


MsgBox("Thank You!!!"), vbExclamation, ("Thanks!")
 
Could you please help me with the LoadPicture command?

here is what I have so far:

LoadPicture("f:\pig.jpg")

It doesn't have any errors, but it doesn't display my picture?
 
http://www.visualbasicscript.com/ - forum for help

im almost certain that vbs doesnt have a loadpicture function builtin. but you could create a user defined sub or function to do it. ummm, load picture would prolly have to be implemented inside a ASP script.

what exactly do you want loadpicture to do?
 
is there any way to make vbscript do automated stuff like:

A script that is burned to a cd, along with other things on a cd, and when the cd is inserted (no matter what drive letter the cd drive is) the script will automatically start?
 
I still can't find out how to maximize a vbscript window within the same script. The only way I know is through a batch file:

@echo off
start /max f:\test.vbs
 
Status
Not open for further replies.
Back
Top Bottom