Both of these work for me.
private void textBox1_Enter(object sender, EventArgs e)
{
comboBox1.Focus();
}
textBox1.GotFocus += new EventHandler(textBox1_GotFocus);
void textBox1_GotFocus(object sender, EventArgs e)
{
comboBox1.Focus();
}
Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)