A
ApexData
I have a single form that is page tabbed.
I have Allowedits, Allowdeletions, Allowadditions all set to NO.
No changes are being made to these properties.
I have a txtBox that assigns a value to another text box in the OnExit
event.
When this happens, the RecordSelectors mysteriously shows the edit pen.
The whole record allows for changes at this point, although the
Allowedits is still set to No.
Private Sub txtZIP_Exit(Cancel As Integer)
MsgBox Me.Allowedits ' give me false as expected
Me.txtSTATE = "NJ" 'txtSTATE becomes NJ as expected
MsgBox Me.Allowedits ' give me false as expected
End Sub
The txtSTATE value changes, as expected, but the entire record becomes
edit enabled, despite
the Allowedits staying at No.
I checked my code, and can't seem to find any reason for this behavior.
When I scroll to the next record, the RecordSelectors edit pen goes off
and edit becomes disabled.
ANY KNOWN BUG???
I have Allowedits, Allowdeletions, Allowadditions all set to NO.
No changes are being made to these properties.
I have a txtBox that assigns a value to another text box in the OnExit
event.
When this happens, the RecordSelectors mysteriously shows the edit pen.
The whole record allows for changes at this point, although the
Allowedits is still set to No.
Private Sub txtZIP_Exit(Cancel As Integer)
MsgBox Me.Allowedits ' give me false as expected
Me.txtSTATE = "NJ" 'txtSTATE becomes NJ as expected
MsgBox Me.Allowedits ' give me false as expected
End Sub
The txtSTATE value changes, as expected, but the entire record becomes
edit enabled, despite
the Allowedits staying at No.
I checked my code, and can't seem to find any reason for this behavior.
When I scroll to the next record, the RecordSelectors edit pen goes off
and edit becomes disabled.
ANY KNOWN BUG???