Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio / VB.Net 2008 IntelliSense Odd Behavior

I am primarily a C# developer; however, I am currently working on a project for a client who preferred VB.net. I have managed to switch over fairly well, with one frustrating exception. When editing a C# file in Visual Studio pressing enter will select an item out of the IntelliSense window and keep the cursor at the end of the selected statement.

However, when editing a VB file, pressing enter selects the item out the IntelliSense popup AND moves the cursor to the next line. I realize that this is a small thing, but it drives me crazy, because it makes it really hard to switch between C# and VB projects.

I have searched for everything I can think of in Google and found nothing. Does anyone know of a way to change the IntelliSense selection behavior? Thanks in advance.

like image 770
Donovan R Avatar asked Jul 26 '11 14:07

Donovan R


People also ask

How do I enable IntelliSense in Visual Studio?

To access this options page, choose Tools > Options, and then choose Text Editor > C# > IntelliSense.

What is IntelliSense vb net?

IntelliSense is a code-completion aid that includes a number of features: List Members, Parameter Info, Quick Info, and Complete Word. These features help you to learn more about the code you're using, keep track of the parameters you're typing, and add calls to properties and methods with only a few keystrokes.


1 Answers

It just can't be done with VB.NET for now, according to this thread from Microsoft.

One reader there suggested and open source IDE called SharpDevelop to get C# behaviors on VB.NET code.

like image 74
twip Avatar answered Nov 07 '22 17:11

twip