Imports Alias
You know those things where you just think "How didn't I know that?!", well I got one today. I only just found out (laugh at me if you want!) that you can add an alias to an "Imports" statement. So, instead of typing:
Imports System.Data
I can type:
Imports d = System.Data
and refer to it as "d". Here's what it would look like in Visual Studio:
Thanks to Christiaan Baes for the tip!