I have tried to find something on the web but maybe I am not searching for the right term(s).
I basically setup a .visible logic statement driven off of one field when it is yes or -1.
This works perfectly so I cut and pasted into the tab. Needless to say it doesnt work anymore. I even cut and paste the item back on the main form and it doesnt work.
Prior issues with a split form required me changing names from
me.fieldname to
forms!windoptoutv12.fieldname
Is there some sort of difference in noting a field once it is inside the tab?
the name of the whole tab box is tabctl207 and the tabs inside are invidivual and entity.
First Version - this worked fine outside of the tab and after cutting and pasting it no longer works.
Public Function OtherFunction()
If Forms!WindOptOutV12.Other = -1 Then
Forms!WindOptOutV12.IndStatmentHandwrittenComment.Visible = True
'MsgBox "Please Enter a Comment Below for Deviations listed as OTHER"
Else
Forms!WindOptOutV12.IndStatmentHandwrittenComment.Visible = False
Forms!WindOptOutV12.IndStatmentHandwrittenComment = "None"
End If
End Function
I basically setup a .visible logic statement driven off of one field when it is yes or -1.
This works perfectly so I cut and pasted into the tab. Needless to say it doesnt work anymore. I even cut and paste the item back on the main form and it doesnt work.
Prior issues with a split form required me changing names from
me.fieldname to
forms!windoptoutv12.fieldname
Is there some sort of difference in noting a field once it is inside the tab?
the name of the whole tab box is tabctl207 and the tabs inside are invidivual and entity.
First Version - this worked fine outside of the tab and after cutting and pasting it no longer works.
Public Function OtherFunction()
If Forms!WindOptOutV12.Other = -1 Then
Forms!WindOptOutV12.IndStatmentHandwrittenComment.Visible = True
'MsgBox "Please Enter a Comment Below for Deviations listed as OTHER"
Else
Forms!WindOptOutV12.IndStatmentHandwrittenComment.Visible = False
Forms!WindOptOutV12.IndStatmentHandwrittenComment = "None"
End If
End Function