Listing 1
<WIZARD>
<!--- wizard parameters --->
<PARAM/>
<PARAM/>
<PARAM/>
<!--- first page --->
<PAGE>
<PAGELAYOUT>
<!--- user interface controls --->
<CONTROL/>
<CONTROL/>
<CONTROL/>
</PAGELAYOUT>
<!--- binding control-variables to WIZML-variables --->
<INPUT/>
<INPUT/>
<INPUT/>
</PAGE>
<!--- second page (more pages) --->
<PAGE>
<!--- (like above) --->
</PAGE>
<!--- output templates (.wml files) --->
<TEMPLATE/>
<TEMPLATE/>
<TEMPLATE/>
</WIZARD>
Listing 2
<PAGE name="UserPage" type="DYNAMIC" caption="Enter User"
image="..\\images\\main.bmp">
<PAGELAYOUT>
<!--- Ask for Username --->
<CONTROL name="lblUserName" type="label" down="10"
right="10" width="90" caption="User name:"/>
<CONTROL name="txtUserName" type="TextBox"
anchor="lblUserName" corner="NE" width="MAXIMUM"
down="-5"/>
</PAGELAYOUT>
<!--- Binding control-variables to output-template-
variables --->
<INPUT name="txtUserName" param="theUserName" required=
"yes" validationmsg="Please enter a user name">
</PAGE>
Listing 3
<PAGE name="DataSourcePage" type="SelectDataSource"
caption="Datasource Definition" image="..\\images\\SelectData.bmp">
<!--- Fill the pre-defined parameters with your
own text/data --->
<PARAM name="ListBoxLabel" value="Select data
source:">
<PARAM name="ListBoxDescription" value="Choose
the data source for this wizard.">
<!--- Bind the result to a WIZML variable --->
<INPUT name="cbDataSources" param="theDataSource"
required="yes" validationMsg="Please select a data source.">
</PAGE>