Property Page:
Frontpage ActiveX footprint:
<object classid="clsid:388B46D2-774D-44BB-B8AA-FB4F50203BB4" id="NippelMin"
width="31" height="22">
<param name="Visible" value="-1">
<param name="Enabled" value="-1">
<param name="Text" value>
<param name="Caption" value="...">
<param name="Font" value="MS Sans Serif">
<param name="NumericOnly" value="-1">
<param name="PadCaption" value="Min [mm]">
</object>
Methods:
- AboutBox;
- GetCaption;
- GetEnabled;
- GetFont;
- GetNumericOnly;
- GetPadCaption;
- GetText;
- GetVisible;
- SetCaption;Value=VT_BSTR
- SetEnabled;Value=VT_BOOL
- SetFont;Value=VT_PTR
- SetNumericOnly;Value=VT_BOOL
- SetPadCaption;Value=VT_BSTR
- SetText;Value=VT_BSTR
- SetVisible;Value=VT_BOOL
Events:
- Activate - called when keypad is activated
- Change - called when text is changing
- Close - called when keypad is close
- Open - called when keypad is opened
Script Example:
rem The example handles assignment to an from an html form on open and
close events
sub NippelMin_OnOpen()
NippelMin.Text = LengthMin.Value
end sub
sub NippelMin_OnClose()
LengthMin.Value = NippelMin.Text
end sub
|