data change (1 Viewer)

aattas

Registered User.
Local time
Today, 15:17
Joined
Dec 24, 2014
Messages
74
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
 

Ranman256

Well-known member
Local time
Today, 08:17
Joined
Apr 9, 2015
Messages
4,337
what afterupdate? form?, field?

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

aattas

Registered User.
Local time
Today, 15:17
Joined
Dec 24, 2014
Messages
74
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

Top Bottom