Trying to Decompile (1 Viewer)

tmyers

Well-known member
Local time
Today, 17:30
Joined
Sep 8, 2020
Messages
1,090
I am trying to decompile to see if this corrects a problem, but am having an issue with a line of code that works, but apparently Access doesn't approve of.
Code:
If IsNull(Me.RevisionCombobx) Then Exit Sub
It is flagging the (me.revisioncombobx) with the error method or data member not found. I tried fully defining it instead of using me, but it still isn't liking it.
 

tmyers

Well-known member
Local time
Today, 17:30
Joined
Sep 8, 2020
Messages
1,090
Nevermind. It seems removing all of it and just referencing the control only fixed it and allowed the compiler to finish.
 

Gasman

Enthusiastic Amateur
Local time
Today, 22:30
Joined
Sep 21, 2011
Messages
14,238
Was it really called bx? and not box?
 

Gasman

Enthusiastic Amateur
Local time
Today, 22:30
Joined
Sep 21, 2011
Messages
14,238
Yup. Don't ask why, but that is just how I do it. Combobx, Txtbx Chkbx etc. I always leave the "o" out lol.
Ah well, we'll know for the future. :D
 

Users who are viewing this thread

Top Bottom