Hi all, I'm trying to copy the contents of the first row of a resultset into a structure without knowing the column names, but can't do it:
1. stValidLogin = Duplicate(qryGetUserCredentials[1]) 2. stValidLogin = Duplicate(qryGetUserCredentials) 3. stValidLogin = StructCopy(qryGetUserCredentials[1]) 4. stValidLogin = StructCopy(qryGetUserCredentials) None of the above appears to work. How can I do this? Thanks, Douglas -- ** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/ To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] For human help, e-mail: [EMAIL PROTECTED]
