tried the following code and it seems to work...
InitializeComponent();
this.contextMenuStrip1.Items.Add("First");
this.contextMenuStrip1.Items.Add("Second");
this.contextMenuStrip1.Items.Add("Third");
this.contextMenuStrip1.Opening += new CancelEventHandler(contextMenuStrip1_Opening);
}
void contextMenuStrip1_Opening(object sender, CancelEventArgs e)
{
this.contextMenuStrip1.Items[1].Select();
}
hth,
Lior.