LonnieJohnson
Programmer
Is there a quicker way to determine if a field exist in a collection other than iterating through the entire collection?
I know how to do...
I want to know if you can just say
Thanks in advance,
ProDev, MS Access Applications
Visit me at ==>
May God bless you beyond your imagination!!!
I know how to do...
Code:
For Each fld in rs.Fields
If fld.Name = "MyField" Then
'do something
End if
Next fld
Code:
If "MyField In rs.Fields Then
'do something
End If
Thanks in advance,
ProDev, MS Access Applications
Visit me at ==>
May God bless you beyond your imagination!!!