How do I modify the default imported namespaces for my project?
Imports Microsoft.VisualBasic
Imports System.Data
Imports System.Data.OleDb
Is there any way of making this a default?
dennist
Imports Microsoft.VisualBasic
Imports System.Data
Imports System.Data.OleDb
Is there any way of making this a default?
dennist
1. Right-click on the project and click Properties
2. On the Configuration window, select the References tab.
3. Add the namespaces you want to import under Imported namespaces.
HTH
David