Web Browser Help Needed!

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,

I am creating a web browser and have some questions:

1. What code should I add so instead of clicking on "Go" I can press enter?
2. How can I create Favorites?

Mateusz
 
Hello,

I am creating a web browser and have some questions:

1. What code should I add so instead of clicking on "Go" I can press enter?
2. How can I create Favorites?

Mateusz

For 1 you need to intercept the key press event in your URL TextBox
and point it at your Go button click action. Something like:

private void URLTextBox_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyChar == (char)Keys.Enter) {
GoButton_Click(sender, e);
} // end if
}

rossum


The ultimate truth is that there is no ultimate truth
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top