Hi,

This is my first project in VB.NET and it's not finished.
Form is the my main form to add and save records.
I have already add a DataSet in my Project and Drag the Table but I don't know what to do next
  How can I save my records to my Database(Employee.MDB)?
	
	Fields   -  Value of Records	
	============================	
	empno 	 =  TextBox1.Text
	empname  =  TextBox2.Text
	position =  ComboBox1.Text
	address  =  TextBox3.Text
 	phone 	 =  TextBox4.Text
	============================
        
Form is Form where I display all my records.
  How can I connect the DataGrid to my DataBase to display the records? 

 Kindly Help me..