I've been looking at examples for accessing ado record set field values. It looks to me that my only choice is the "wordy" approach:
ors.fields("my_field1".value = "Hello"
ors.fields("my_field2".value = "Bye"
Visual basic provides the Bang operator(!) to simplify the access:
ors![my_field1] = "Hello"
ors![my_field2] = "Bye"
Is there a Foxpro syntactical equivalent to the VB bang(!)?
ors.fields("my_field1".value = "Hello"
ors.fields("my_field2".value = "Bye"
Visual basic provides the Bang operator(!) to simplify the access:
ors![my_field1] = "Hello"
ors![my_field2] = "Bye"
Is there a Foxpro syntactical equivalent to the VB bang(!)?