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

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top