View Single Post
Old Apr 21st, 2005, 2:35 AM   #3
Bharathi
Programmer
 
Join Date: Apr 2005
Posts: 32
Rep Power: 0 Bharathi is on a distinguished road
saving them into particular fields in an access database.

Hi,

I am giving some hints. If you want full application development code visit the site http://www.vkinfotek.com

1.You need to create and open the recordset say rs.
2.Type the following code in the Savebutton_Click event procedure.

a. Validate the data entered in text boxes
b. Appends a blank record in the table and assign data entered in text boxes to fields of table and update the table.
c.Clears the text box controls

Use the following code in your project.

Assume there are two text box controls on the form and two fields in the table.

rs.AddNew
rs!code=mcode.text
rs!name=mname.text
rs.Update


Regards
Books for programmers.

"Application Series Books" teach the reader how to develop an accounting package for a client server network. These books also teach all the secrets and logics required to develop an accounting package.
http://www.vkinfotek.com
Bharathi is offline   Reply With Quote