Home > Articles > Programming > Visual Basic

Using VBScript

This chapter is from the book

Using VBScript in Internet Explorer

The following sections describe how to use client-side VBScript in your Web pages. VBScript can also be used on the server, as discussed in Chapter 27. Although server-side VBScript can be browser-independent, client-side VBScript requires that the user have Microsoft Internet Explorer. Currently, Netscape users cannot run VBScript code. Remember to keep your audience in mind when using VBScript.

Events and Procedures

In standard Visual Basic, you respond to events by placing code in event procedures. You can also use event procedures in VBScript, although writing them is not as easy because the event procedure declarations are not provided for you.

As an example, consider the following HTML code, which creates two form elements, an input box and a button:

<INPUT Type="text" Name="txtLastName" Value="Smith" Size=20>
<INPUT Type="Button" Name="cmdCalculate" Value="Perform Calculation">

Because the preceding two form elements are named, all you have to do to create an event procedure is write a VBScript subroutine with the appropriate name and parameters. For example, by creating a VBScript subroutine called cmdCalculate_OnClick(), you can get IE to execute code in response to the button's Click event. The code in Listing 30.2 uses VBScript events in a simple interest calculator.

Listing 30.2  :Using VBScript to Access Web Page Elements

<HTML>
<HEAD><TITLE>Simple example of VBScript</TITLE></HEAD>
<SCRIPT Language = "VBScript">
<!--
Function CalcInterest(P,R,T)
    CalcInterest = P * R * T
End Function
Sub cmdCalculate_OnClick()
    Dim lPrincipal
    Dim dblRate
    Dim nYears
    Dim cInterest
    lPrincipal = CLng(txtPrincipal.value)
    dblRate = CDbl(txtRate.value)
    nYears = CInt(txtTime.value)
    cInterest = CalcInterest(lPrincipal, dblRate, nYears)
    MsgBox "Your Interest is " & FormatCurrency(cInterest)
End Sub
Sub txtRate_OnChange()
    If CDbl(txtRate.Value) > 1 Then txtRate.Value = txtRate.Value / 100
End Sub
-->
</SCRIPT>
<BODY>
<BR>
Enter Principal: <INPUT Type="Text" Name="txtPrincipal" Value="100000"><BR>
Enter Int. Rate: <INPUT Type="Text" Name="txtRate" Value="0.08"><BR>
Time in Years: <INPUT Type="text" Name="txtTime" Value="20"><BR>
<INPUT Type="Button" Name="cmdCalculate" Value="Calculate Interest">
</BODY>
</HTML>

NOTE

Listing 30.2 uses HTML form elements, which have a different set of events and properties. Note, for example, the use of the Value property instead of the Text property. However, as you will see in an upcoming example, you can also insert controls onto Web pages, which have a more familiar set of properties and events.

In the sample Web page in Listing 30.2, Internet Explorer knows which event procedure to run because the event procedure is named appropriately. However, you could just as easily specify a different Click event procedure by naming it in the button's HTML:

<INPUT Type="Button" Name="myButton" Value="Calculate" OnClick="MyProcedure">

This syntax is useful with images in Web pages. Consider the standard method of creating an image hyperlink:

<A HREF="http://www.newsite.com/"> <IMG SRC="myimage.gif"></A>

This approach works, but your only option is to jump to a new page. A more versatile method is to specify a Click event in the IMG tag. The Click event procedure could use VBScript code to move to the new site or perform whatever action you wanted:

<SCRIPT Language = "VBScript">
<!--

Sub ImageClicked()

  Window.Navigate ("http://www.newsite.com/")

End Sub

-->
</SCRIPT>
<IMG SRC="myimage.gif" OnClick="ImageClicked">

One easy way to find out the available events is to use the Script Wizard in Microsoft FrontPage. Simply insert the element you want in FrontPage and bring up the Script Wizard, which is shown in Figure 30.7.

Figure 30.7

The Script Wizard provides a hierarchical view of events.

In the previous example, you examined the Navigate method of Internet Explorer's Window object. This method causes Internet Explorer to open the specified URL. Another useful function is document.write, which writes HTML to the browser window:

<SCRIPT Language = "VBScript">
<!--
document.write "The current date and time is " & Now
-->
</SCRIPT>

Look on the Microsoft Web site for a complete list of the objects and methods available in Internet Explorer.

Forms

Forms are HTML elements used to send information back to the Web server. The following is an example of an HTML form with two text boxes:

<FORM Action="formproc.asp" METHOD="POST" NAME="frmTest">
 Please enter your name and E-Mail address below:<BR>
 Name:  <INPUT Type=Text size=40 name=txtName>   <BR>
 Email: <INPUT Type=Text size=30 name=txtEmail>  <BR>
 <INPUT Type=Submit Name=cmdSend Value="Send Values to Server">
</FORM>

The Submit button tells the browser to send all the <INPUT> fields between the <FORM> tags to the Web server. The Web server (in this case, the Active Server Page formproc.asp) can then access each of these elements and put them in a database. However, before you submit the form to the server, you might want to use VBScript to validate or change the information. Listing 30.3 shows an example of validating form data with VBScript.

Listing 30.3  :Modifying and Submitting a Form with VBScript

<HTML>
<HEAD><TITLE>Simple example of Forms</TITLE></HEAD>
<SCRIPT Language = "VBScript">
<!--
Sub submitform()
    Dim nPos
    Dim sUserType
    Dim f
    Set f = Document.frmMain
    'Make sure name is not blank
    If Trim(f.txtName.Value) = "" Then
         Msgbox "Please enter your name and try again!"
         Exit Sub
    End if
    'Validate E-Mail Address Format
    nPos = Instr(f.txtEmail.Value,"@")
    If nPos = 0 Then
        Msgbox "Please use the format user@server.domain"
        Exit Sub
    End If
    'Classify user as business or other
    nPos = Instr(LCase(f.txtEmail.Value),".com")
    If nPos <> 0 Then '.com = commercial domain
        sUserType = "BUSINESS"
    Else
        sUserType = "OTHER"
    End If
    'Put user type in hidden form field
    f.txtUserType.Value = sUserType
    'Submit the form
    f.Method = "POST"
    f.Action = "formproc.asp"
    f.submit
End Sub
-->
</SCRIPT>
<BODY>
 Please fill out all fields below:<BR><BR>
<FORM NAME=frmMain>
 Name:  <INPUT Type=Text maxlength=20 size=20 name=txtName>   <BR>
 Email: <INPUT Type=Text maxlength=30 size=30 name=txtEmail>  <BR>
 <INPUT Type=Hidden name=txtUserType>
 <INPUT Type=Button OnClick=submitform Value="Continue">
</FORM>
</BODY>
</HTML>

CAUTION

Remember that VBScript does not run in Netscape Navigator, so you may want to perform validation tasks on the server.

In Listing 30.3, many of the form tasks are handled in VBScript instead of HTML. For example, the ACTION and METHOD parameters are left out of the form declaration. No submit button was provided because the form was submitted from VBScript code. Also, notice the hidden form field, which stores a value that the user did not enter. A sample run of the page in Listing 30.3 is shown in Figure 30.8.

Figure 30.8

VBScript validates form data before submitting it to the Web server.

Using ActiveX Controls

In addition to creating objects with the CreateObject method, you can embed objects in your Web page by using the <OBJECT> tag. The <OBJECT> tag allows you to place ActiveX controls in a Web page. Your VBScript code can then access these objects, as in the list box example shown here:

<HTML>
<BODY>
<OBJECT id=lstmain classid=clsid:8BD21D20-EC42-11CE-9E0D-00AA006002F3
width=152 height=164>
<PARAM name=ScrollBars value=3>
<PARAM name=DisplayStyle value=2>
</OBJECT>

<SCRIPT Language = "VBScript">
<!--
    Dim i
    For i = 1 to 10
        lstMain.AddItem "Item " & i
    Next

    Sub lstMain_Click()
        Msgbox "You Clicked " & lstMain.List(lstMain.ListIndex)
    End Sub

-->
</SCRIPT>
</BODY>
</HTML>

The different parts of the <OBJECT> tag are as follows:

  • ID. Indicates the name VBScript uses to identify the object, such as the Name property in Visual Basic.

  • CLASSID. Acts as a unique identifier from the Windows Registry that identifies the object.

  • CODEBASE. Provides the URL for the OCX or CAB file used to download the object. In the example, the ListBox control is built into Internet Explorer, so the CODEBASE parameter is not needed.

  • height and width. Indicate the size of the object.

  • PARAM tags. Control behavior of an object, such as the Properties window in Visual Basic.

The best way to insert ActiveX controls into a Web page is to do so in FrontPage and then copy the resulting HTML into your Web page. Figure 30.9 shows the list of ActiveX controls in FrontPage.

Figure 30.9

Class IDs can be determined by using FrontPage. The controls that begin with "Microsoft Forms" are built in, or intrinsic to, Internet Explorer and do not require downloading.

In Chapter 14, "Creating ActiveX Controls," you learned how to create your own ActiveX controls, which can be placed on a Web page. Using your own controls offers several advantages over plain VBScript and HTML, including the following:

  • Full VB functionality is available.

  • Your code cannot be easily viewed by the user, as with script code.

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020