Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
On The Web
The Script control provides a simple way for your application to host a scripting environment. Supported scripting languages are VBScript, JavaScript, and any other compliant scripting language that will work with the Microsoft Internet Explorer web browser.
You can download the script control from the following Web site:
[URL unfurl="true"]http://www.microsoft.com/scripting/scriptcontrol/default.htm[/URL]
This page also provides a link to documentation on how to use the control. The file name you will receive is sct10en.exe.
NOTE: Registration is required before downloading this control.
Visual Basic 6.0
The Script control ships with Visual Basic 6.0; however, Visual Basic 6.0 setup does not install the Script Control for you. The control is located in the CD directory Common\Tools\VB\Script. To install the script control, try the following steps:
Copy msscript.ocx to Windows\system or WinNT\system32.
Copy msscript.hlp and msscript.cnt to Windows\help or Winnt\help
Copy dispex.dll, jscript.dll and vbscript.dll to Windows\system or Winnt\system32.
NOTE: If you have newer copies of these DLLs on your system, do not overwrite them.
Register msscript.ocx using RegSvr32.exe. Example:
Regsvr32.exe c:\windows\system\msscript.ocx
Sets or returns a Boolean value indicating whether the host application is concerned about safety. UseSafeSubset is True if the host application cares about safety; False if it does not. Read/write.
Syntax
ScriptControl.UseSafeSubset [=value]
The UseSafeSubset property has these parts:
If value is True, access to some objects and procedures is not allowed.
Remarks
The scripting engine in use determines if, and when, the UseSafeSubset property is set. If no language is specified (
Language property), the UseSafeSubset can be set at any time.
The objects and procedures that can't be used when UseSafeSubset is True are identical to those restricted by the browser's highest security setting.