"
Advanced_Combo = compSTR
End Function
'-----------------------------------------------------------------------------------------------------------------
Public Function ComboWithTextAndFilter ( sName, sValue, aList, sAttributes, sMore, bForceDropdown )
ComboWithTextAndFilter = Advanced_Combo ( sName, sValue, aList, sAttributes, sMore, bForceDropdown )
End Function
'-----------------------------------------------------------------------------------------------------------------
Public Function ComboWithText ( sName, sValue, aList, sAttributes )
ComboWithText = Advanced_Combo ( sName, sValue, aList, sAttributes, NULL, FALSE )
End Function
'-----------------------------------------------------------------------------------------------------------------
Public Function TextArea ( sName, sValue, nRows, nCols, sAttributes )
TextArea = _
""
End Function
'-----------------------------------------------------------------------------------------------------------------
Public Function TextBox ( sName, sValue, sAttributes )
TextBox = _
""
End Function
'-----------------------------------------------------------------------------------------------------------------
Public Function CheckBox ( sName, sValue, sAttributes )
CheckBox = _
""
End Function
'-----------------------------------------------------------------------------------------------------------------
Public Function SubmitButton ( sValue, sAttributes )
SubmitButton = _
""
End Function
'-----------------------------------------------------------------------------------------------------------------
Public Function CancelButton ( sValue, sAttributes, sURLreturn )
CancelButton = _
""
End Function
'-----------------------------------------------------------------------------------------------------------------
Public Function BackButton ( sValue, sAttributes )
BackButton = _
""
End Function
'-----------------------------------------------------------------------------------------------------------------
Public Sub FormStart ()
If IsNull(mFormName) Then Err.Raise 8, "Method FormComponent.FormStart", "Form Name is not defined."
If IsNull(mAction) Then Err.Raise 8, "Method FormComponent.FormStart", "Action Filename is not defined."
Response.write ""
End Sub
'-----------------------------------------------------------------------------------------------------------------
Private Sub Class_Initialize()
'// Perform action on creation of object. e.g. Set myObj = New ThisClassName
mFormName = NULL
mMethod = "post"
mAction = NULL
mOnSubmit = NULL
msDisabled = NULL
End Sub
'-----------------------------------------------------------------------------------------------------------------
Private Sub Class_Terminate()
'// Perform action on object disposal. e.g. Set myObj = Nothing
End Sub
'-----------------------------------------------------------------------------------------------------------------
End Class
%>