Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Allow Edits, Additions, and Deletions Button Not working

Status
Not open for further replies.

TriniGal

Programmer
Sep 28, 2005
84
US
Hello,

I have a form and I have found that the users are not following the proper procedures when adding new records, and in turn they edit existing data. I came up with the following solution to force them to follow proper procedures. I have the following code attached to my add new record button. However its not working. When I click on the button I get an error "Object Required". Can someone please help me figure out why this is happening.

Code:
Private Sub ADDNEWPSIDBUTTON_Click()
On Error GoTo Err_ADDNEWPSIDBUTTON_Click

    Me.AllowEdits = True
    Me.AllowAdditions = True
    Me.AllowDeletions = True
    
    Leaks.Form.AllowEdits = True
    Leaks.Form.AllowAdditions = True
    Leaks.Form.AllowDeletions = True
    
    DoCmd.GoToRecord , , acNewRec

Exit_ADDNEWPSIDBUTTON_Click:
    Exit Sub

Err_ADDNEWPSIDBUTTON_Click:
    MsgBox Err.Description
    Resume Exit_ADDNEWPSIDBUTTON_Click
    
End Sub
 
Oh.. forgot to paste the part..
[tt]
Leaks.Form.AllowEdits = True
Leaks.Form.AllowAdditions = True
Leaks.Form.AllowDeletions = True
[/tt]

________________________________________________________
Zameer Abdulla
Help to find Missing people
Sharp acids corrode their own containers.
 
How are ya TriniGal . . .

Have a look at the forms [blue]DataEntry[/blue] property. When set to yes, [blue]users can only add records![/blue]
Code:
[blue]   Me.DataEntry = True[/blue]

Calvin.gif
See Ya! . . . . . .
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top