I have a 2 part browser you can either select from a list of URLs and surf or type your own url in (this part doesn't work)
here are my bits of code
private void button1_Click(object sender, EventArgs e){
webBrowser1.Navigate(
new Uri(comboBox1.SelectedItem.ToString()));label1.Text =
"now you're surfing the net!";}
private void button2_Click(object sender, EventArgs e){
webBrowser1.Url = textbox.Text;
}
the top part works up to button2?! please help!
michael bPosted Aug 30, 2007, 8:11 PM
private void button2_Click(object sender, EventArgs e)
{
webBrowser1.Navigate(textbox.Text);
}
and im glad to see new ppl taken a intreast in c# :D good luck with future apps
and if you need any more help on webbrowser application give me a email [email protected] it was my first app aswell