George,
There is no way to convert a MS Access application to a VBNet application.
However the use of the database itself is very easy to do.
For that you can use ADONET in which are the classes from the so called
system.data namespace
http://msdn.microsoft.com/library/de...systemdata.asp
Do not mix this up with ADO (ADODB) what is completly different and not
really a Net part.
For MS Access the best choise to connect and use it is than OLEDB.
In this newsgroup you will mostly be helped with problems about that.
Another very good newsgroup for that is
Adonet
news://msnews.microsoft.com/microsof...amework.adonet
Web interface:
http://communities2.microsoft.com/co...amework.adonet
When you see samples you see them than as well often for SQLserver they are
almost (with exceptions from the command.parameters) always the same as for
msaccess with the difference where an instructions starts for SQL with by
instance SQLCommand it is for access (OleDB) OleDbCommand
A good place to start is in my opinion.
http://samples.gotdotnet.com/quickstart/
I hope this helps a little bit?
Cor