Retrieve column names for form RecordSource

J

jtertin

How can I refer to the names of the columns in the form's RecordSource
table from VBA?

Something like: Me.RecordSource.Item([columnnumber].Name (which is
obviously not correct).
 
D

Douglas J. Steele

Me.RecordsetClone.Fields([columnnumber]).Name

However, I can't think of a legitimate reason to need to do that!
 
Top