J
James
Hi everyone,
I'm making a simple fast loading web browser in C#. How to I make it so
you can type in a web address and click "Go" to...
private void btnGo_Click(event sender, EventArgs e)
{
wbrWebBrowser.Url = txtAddress.Text;
}
....it was the only way I could think of. Any ideas?
James
I'm making a simple fast loading web browser in C#. How to I make it so
you can type in a web address and click "Go" to...
private void btnGo_Click(event sender, EventArgs e)
{
wbrWebBrowser.Url = txtAddress.Text;
}
....it was the only way I could think of. Any ideas?
James