View Single Post
  #1 (permalink)  
Old 07-01-2009, 8:04 PM
NatePro NatePro is offline
VB.NET Forum Newbie
.NET Framework: .NET 3.5 (VS 2008)
 
Join Date: Jan 2009
Posts: 10
Reputation: 17
NatePro is on a distinguished programming path ahead
Default Hoe do i enable a radio button in the webbrowser?

I have three radioboxes in my form, when i click on one on them it shall change a language in the webbrowser.

Here is the HTML code:
Code:
<input type="radio" value="Engelsk" name="spraak" checked="checked" style="font-family: arial;"/>
<span style="font-family: arial;">From English </span>
<br style="font-family: arial;"/>
<input type="radio" value="Spansk" name="spraak" style="font-family: arial;"/>
<span style="font-family: arial;">From Spanish </span>
<br style="font-family: arial;"/>
<input type="radio" value="Norsk" name="spraak" style="font-family: arial;"/>
<span style="font-family: arial;">From Norwegian</span>
Need anymore info?
Reply With Quote