What keystroke to pop back from a browse?

  • Thread starter Thread starter Richard Lewis Haggard
  • Start date Start date
R

Richard Lewis Haggard

In VB.NET, 2005, an F12 will jump the editor to the definition of the word
on which the cursor was at the time that the F12 was entered. What is the
key sequence to return? In C# and C++, this is Ctrl Shift Asterisk, but that
doesn't seem to do the trick in VB.
 
Hello Richard Lewis Haggard" HaggardAtWorldDotStdDotCom,
In VB.NET, 2005, an F12 will jump the editor to the definition of the
word on which the cursor was at the time that the F12 was entered.
What is the key sequence to return? In C# and C++, this is Ctrl Shift
Asterisk, but that doesn't seem to do the trick in VB.

It appears that VB.Net doesn't map this command to a shortcut by default.
You can do this your self by adding a shortcut to the View.PopBrowseContext
command in Tools->Options->Keyboard.
 
Back
Top