Having trouble getting help?
Contact Support
Contact Support
HTML Forms in Windows Forms Html Viewer (HTMLUI)
4 Feb 20251 minute to read
Forms are the containers for placing the elements in a HTML document. HTMLUI supports the usage of forms for developing advanced and decorative pages in the user’s application.
<html>
<body>
<form>
<input type = "text"/><br/>
<input type = "button"/><br/>
<input type = "checkbox" checked /><br/>
</form>
</body>
</html>
Loading the above HTML document into HTMLUI creates a Form with the three controls specified as shown below.
HTMLUIForms sample
This sample illustrates the implementation of Forms by using HTMLUI.