How to disable Up/Down keys from scrolling through method overload in Visual Studio?

c#, c++, keyboard-shortcuts, visual-studio, visual-studio-2010

Solution

This may be a Resharper thing. Setting this option from "Arrow keys" to "Show Parameter Info" gave me back my arrow keys:

Problem

In Visual Studio 2010 C++/C# (And pretty much every version of VS), the Up/Down arrow keys will scroll through tooltip method overloads when the tooltip is active (Either by typing a method name or by pressing Ctrl+Shift+Space while inside a method). Is there any way to disable this feature? I constantly get hung up while trying to navigate a file with the keyboard when these tooltips appear. If there was a way to use Ctrl+Up/Down to scroll method overloads instead, that would be great, but disabling the feature entirely would be enough. I just want my text editor to let me navigate and edit text and stop hijacking my arrow keys. Any ideas?

Original source