FP98: How to Add a Script to the ActiveX Calendar Control
ID: Q194211
|
The information in this article applies to:
-
Microsoft FrontPage 98 for Windows
SUMMARY
The ActiveX Calendar Control provides a way of displaying calendar-related
events on a Web page. ActiveX Controls may be combined to add greater
functionality to your Web pages than would be possible with a single
control.
NOTE: Microsoft Office 97 installs the ActiveX Calendar Control. If you
do not have Microsoft Office installed, the Calendar Control may not
appear in the Pick A Control list.
MORE INFORMATION
ActiveX Controls are a suite of products and technologies that support Web
development and enable software components to interact with one another.
ActiveX Controls are built on the Component Object Model.
For more information about ActiveX Controls, please see the following
Microsoft World Wide Web site:
http://www.microsoft.com/activex/gallery
For more information about Visual Basic Scripting, please see the following
Microsoft World Wide Web site:
http://www.microsoft.com/scripting/vbscript
To display the date you selected in a message box, follow these steps:
- Open a Web page in FrontPage Editor.
- On the Insert menu, point to Advanced, and then click Script.
- Click VBScript and click OK.
- On the Insert menu, point to Advanced, and then click ActiveX Control.
- In the Pick A Control list, click Calendar Control.
- In the Name box, type the name you want to use for this control.
For example, type Calendar1. Click OK.
- Right-click the Calendar Control object, and then click Script Wizard.
The Script Wizard appears. It is divided into three panes: the
Event pane (left side), the Action pane (right side), and the
Script pane (bottom).
- In the Script Wizard dialog box, click Code View.
- In the Event pane, double-click the Calendar1 icon. Select the
Click event.
- In the Action pane, double-click the Window icon. Double-click
the Alert icon.
The following code appears in the Script pane:
Sub Calendar1_Click()
call window.alert(msg)
- In the Script pane, delete msg.
With the insertion point between the parentheses, double-click the
Calendar1 icon in the Action pane, and then double-click Value.
The code should now look like this:
Sub Calendar1_Click()
call window.alert(Calendar1.Value)
- Click OK.
Additional query words:
scripting controlling active x
Keywords : fpedit fpscript
Version : WINDOWS:
Platform : WINDOWS
Issue type : kbhowto
|