Sorry, i'm re-learning VB.
But, is this a mistake ?
Dim newCustomersRow As NorthwindDataSet.CustomersRow
newCustomersRow = NorthwindDataSet1.Customers.NewCustomersRow()
Why is NortwindDataSet and NorthwindDataSet1 in the sample ??
[tfl - 13 04 09] You should post questions like this to the MSDN Forums at http://forums.microsoft.com/msdn or
the MSDN Newsgroups at http://www.microsoft.com/communities/newsgroups/en-us/. You are much more likely get a
quicker response using the forums than through the Community Content.
For specific help about:
Visual Studio : http://groups.google.com/groups/dir?sel=usenet%3Dmicrosoft.public.vstudio%2C&
.NET Framework : http://groups.google.com/groups/dir?sel=usenet%3Dmicrosoft.public.dotnet.framework
All Public : http://groups.google.com/groups/dir?sel=usenet%3Dmicrosoft.public%2C&
Interesting that this response came months later, but just a day before I read it. I agree with tfl that the question should be asked in a forum, but why make future readers dig when they read these comments?
It is not a mistake . The first line is setting the data type of the variable to a particular class. The second line is creating a new instance of a row using a method of the class through a specific instance (NorthwindDataSet1). This should answer the next comment below as well.