This may be s stupid question, but I can't seem to find an answer or at least an accepted methodology. When I have a custom property on a form such as:
How should I use the property value in the rest of the form's code, by using the LocationRow or _LocationRow? Is there an accepted way of naming and using these properties to keep them visually separate from other variables? Open to suggestions.
Auguy
Sylvania/Toledo Ohio
Code:
Private _LocationRow As DataRow.
Public Property LocationRow() as DataRow
Get
Return _LocationRow
End Get
Set(ByVal Value as DataRow)
_LocationRow = Value
End Set
End Property
Auguy
Sylvania/Toledo Ohio