How to code the VB DataGrid, to show the data in a table

  • Thread starter Thread starter Fernando
  • Start date Start date
F

Fernando

Hello everyone,

This may sounds very immature question; I'm new to VB.net and not mach
experience in VB as well.

I developed a database in Access 2000. It works. Now I want to make it
front end in VB.I thought of doing all the forms in VB.net and connect
to the existing database.

I have Visual Studio.net installed in my desktop (Microsoft .Net
Framework 1.0).

1. Is there a way to convert Access Forms to VB.net?


I have five tables in C:\Projeckts\Forecast.mdb

2. How to code the VB DataGrid, to show the data in the table
"Flights".

Please right the whole coding as I'm totally new to VB.

Thanks for the help.

Priyan
 
Fernando said:
Hello everyone,

This may sounds very immature question; I'm new to VB.net and not mach
experience in VB as well.

I developed a database in Access 2000. It works. Now I want to make it
front end in VB.I thought of doing all the forms in VB.net and connect
to the existing database.

I have Visual Studio.net installed in my desktop (Microsoft .Net
Framework 1.0).

1. Is there a way to convert Access Forms to VB.net?

Not sure but I don't think so.
I have five tables in C:\Projeckts\Forecast.mdb

2. How to code the VB DataGrid, to show the data in the table
"Flights".

DataGridName.DataSource = dataSet.Tables("Flights")
Please right the whole coding as I'm totally new to VB.

Thanks for the help.

Priyan



--

W.G. Ryan, eMVP

http://forums.devbuzz.com/
http://www.knowdotnet.com/williamryan.html
http://www.msmvps.com/WilliamRyan/
 
Back
Top