DaveInIowa
Programmer
I have a global parm (DivisionId) that I would like to set in the OnRead() method of a data row. The problem is the data row also contains a column/variable named DivisionId.
What syntax can I use to distinguish my global DivisionId from the data row instance's DivisionId?
What syntax can I use to distinguish my global DivisionId from the data row instance's DivisionId?
Code:
Sub OnRead( )
Super::OnRead( )
???.DivisionId = Me.DivisionId
End Sub