data change

aattas

Registered User.
Local time
, 00:41
Joined
Dec 24, 2014
Messages
75
Experts,

Im still having a problem where the data after update event ,sometimes did not stay updated, instead it stays in its original position. The code Im using as follows:

If me.typeofentry = "new" then me.typeofentry = "old"

What can i tell in vba code to ensure that after update event change to old at all time.

Thanks
 
what afterupdate? form?, field?

Code:
sub txtBox_Afterupdate()
If me.typeofentry = "new" then me.typeofentry = "old"
end sub
 
sub txtBox_Afterupdate()
If me.typeofentry = "new" then me.typeofentry = "old"
end sub

Dear

This is exactly what I have. But sometimes the " new" stuck and did not change after update.

Pls help and thanks
 

Users who are viewing this thread

Back
Top Bottom