Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Dim miWeb As WebView
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
'Activity.LoadLayout("Layout1")
Dim S As String
miWeb.Initialize("miWeb")
Activity.AddView(miWeb,0,0,100%x,100%y)
S="<form name='Prueba'><br>" _
& "Nombre: <input size='30' name='txtNombre'><br>" _
& "Apellido: <input size='40' name='txtApellidos'><br>" _
& "<input value='Aceptar' type='button'></form><br>"
miWeb.LoadHtml(S)
End Sub