Access 2003 SP3 Problem

V

vabdata

Why does Access shutdown sometimes when deleting a record. This did not
happen before the company installed SP3.

Thanks for your help in advance.
 
G

Golfinray

Go to the subform and open it in design view. Find the onclick event. To the
right will be a little square - click on it and pick code builder. Type the
following starting with where the cursor is:
Dim stpassword as string
stpassword = inputbox ("enter your password")
If stpassword = "your password" then
docmd.openform "your form name",,, acnormal
else: Msgbox "you entered the wrong password", vbokonly
end if
 
G

Golfinray

Whoops, sorry I posted to the wrong question.

Golfinray said:
Go to the subform and open it in design view. Find the onclick event. To the
right will be a little square - click on it and pick code builder. Type the
following starting with where the cursor is:
Dim stpassword as string
stpassword = inputbox ("enter your password")
If stpassword = "your password" then
docmd.openform "your form name",,, acnormal
else: Msgbox "you entered the wrong password", vbokonly
end if
 

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

Top