How does the Import in Visual Studio Work?
I was working along with the video about creating a login form and ran into a coding problem with the DataSet. I got errors using DataSet, and Visual Studio suggested inserting the following code: Imports System.Data This seemed to fix the problem but I’m just wondering if this was something I missed to do or something we need to do while making the project. Answer: All of the objects you use (such as Datasets) all exist within packages. By default I have some packages that load automatically in every page (this is somewhere in VS options). If you do not load the package that contains those objects by default you need to explicitly import them. I also recommend taking a look at the objects and packages available to you. You can do this in Visual Studio by bringing up the Object Browser. In the browser you will see packages designated with a { }. If you click on the + before { } System.Data you will see the objects you can use after importing (or using in C#) that package. If you ever s