Would someone be able to point me to a good VB resource that describes the correct practices of when to use ! or . when referenceing objects and controls in VB?
ex:
Which is correct? Why? Thank you!
~Melagan
______
"It's never too late to become what you might have been.
ex:
Code:
If Me![txtMyDate] > Date() Then
strTemp = "Future"
End If
Code:
If Me.txtMyDate > Date() Then
strTemp = "Future"
End If
Which is correct? Why? Thank you!
~Melagan
______
"It's never too late to become what you might have been.