Hi Klaus
Thanks for the reply. Great help.
The only thing that I am still looking for is how can I headers to the scroll views similar to the ScrollViewExample.
Also when I mentioned about Button1, I was referring to the this part of the code ( there is no sender in here ). Can you please clarify
For i=0 To TabCount-1
If i=0 Then
TabHost1.AddTab("Tab#"&i, "LayoutWebView")
WebView1.LoadUrl("http://www.google.co.uk/")
Else
TabHost1.AddTab("Tab#"&i, "LayoutTabContent")
Button1.Tag=i
If TabsEnabled(i) Then
Button1.Text="Disable this tab"
Else
Button1.Text="Enable this tab"
End If
EnableButtons(i)=Button1
Button2.Tag=i
If TabsVisibility(i) Then
Button2.Text="Hide this tab"
Else
Button2.Text="Show this tab"
End If
ShowHideButtons(i)=Button2
Edittext1.Text=TabHeight
Label1.Text="This is TabContent #"&i
End If
Next
Thanks for all the help