How to add a record into exisiting DBs by clicking a command butto

S

Shadow Man

I am developing a form to add/delete/preview records into existing DBs by
clicking a command button. When I click a button, I would like to display
another form showing all data fields and their associated values row by row.
I have been looking for some examples for this, but I can't find anyone
unfortunately. I deeply appreciate if anyone can send me some examples what I
can use for learning this subject by myself. I do have some experience with
VB abd VBA, but I have very little experience with ACCESS programming. Hope
to hear from you soon. Thanks.
 
M

mscertified

All you need do is to open the table in datasheet view.

DoCmd.OpenTable "MyTable", acViewNormal, acEdit

It's not really a recommended way to develop an application though.
All data manipulation should be done via forms.

-Dorian
 
Top