View Full Version : Forms


kt_maran
11-08-2000, 05:44 AM
Hi, I am trying to associate a button in a form with the Access table but i am not able to connect it. But the navigation bar is working fine. How to insert or update a record by clicking a button in the form window.

Talismanic
11-08-2000, 08:34 AM
DoCmd.GoToRecord acForm, "FormName", acNewRec

I think this will work for you, just replace the "FormName" with your forms name. You might want to set focus to the first field after the update though.

kt_maran
11-08-2000, 08:45 AM
hai, thanks for the reply, let me try that now.