Visual Studio 2005 Beta - VB dataset question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

I'm not sure if this is the right group, but....

Have just got my Beta Version of VS 2005, and have upgraded a small calendar
project with the upgrade wizard.

I have realised that referring to data sets is completely different, so
having changed these over, i am now finding problems on a simple EOF
statement.

Can anyone help me find a way to check for the end of a recordset?? Before i
just did MySet.EOF, however things don't seem to be this simple anymore :-)

TIA

Andy
 
Not really :)

Old ADO and ADO.NET haven't a lot in common object-model-vise.

I suggest you browse msdn to learn more about the ado.net way of
accessing data.

--
Patrik Löwendahl [C# MVP]
http://www.lowendahl.net/ || http://www.cshrp.net
Please reply only to the newsgroup.

M. Nikraz said:
Does anyone know of any [authoritative] resources (books, papers etc) which
compare and contrast different Systems Integration technologies
(e.g. J2EE and .NET)?

In particular, I'm looking for a comprehensive comparison of several of
these techonologies.
 
Andy said:
Hi all,

I'm not sure if this is the right group, but....

Have just got my Beta Version of VS 2005, and have upgraded a small
calendar
project with the upgrade wizard.

I have realised that referring to data sets is completely different, so
having changed these over, i am now finding problems on a simple EOF
statement.

Can anyone help me find a way to check for the end of a recordset?? Before
i
just did MySet.EOF, however things don't seem to be this simple anymore
:-)

TIA

Andy

There are major changes from ADO to ADO.NET. I had the same learning curve
:)

Here some possibilities for you:

http://support.microsoft.com/default.aspx?scid=kb;en-us;308278

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnadonet/html/adon_wtaccessdb.asp

For discussion of Visual Studio 2005 (beta) matters:

http://communities.microsoft.com/newsgroups/default.asp?icp=whidbey&slcid=us

There is a group there that specializes in ADO.NET (under Other Components).
 
Back
Top