' Use this file for your own VBScript-Functions to be called ' by QML components ' The content of this file serves sample purpose ' and can be deleted without risk, except that ' sample quest "component.htm" will not run anymore option explicit function componentTestTable(value1, value2, value3) dim xhtml dim oXhtml dim i xhtml = "" xhtml = xhtml & "" xhtml = xhtml & "" & _ "" & _ "" & _ "" for i = 0 to 10 xhtml = xhtml & "" & _ "" & _ "" & _ "" & _ "" & _ "" next xhtml = xhtml & "
AddValue 1Value 2Value 3
+" & i & "" & value1 + i & "" & value2 + i & "" & value3 + i & "
" set oXhtml = getXmlString(xhtml) set componentTestTable = oXhtml end function