G
Guest
I want to create a string of data from a recodset but have all of the fields
line up in my output. How do I do this?
do until rst.eof
strResult = strResult & rst("Name") & " " & rst("Age") & " " &
rst("Birthday")& " " & rst("Job")
strResult = strResult & vbcrlf
I want the output to look like the following:
Jonathan 32 02/16/73 Office Manger
Jan 28 05/03/77 Clerk
Instead of:
Jonathan 32 02/16/73 Office Manger
Jan 28 05/03/77 Clerk
line up in my output. How do I do this?
do until rst.eof
strResult = strResult & rst("Name") & " " & rst("Age") & " " &
rst("Birthday")& " " & rst("Job")
strResult = strResult & vbcrlf
I want the output to look like the following:
Jonathan 32 02/16/73 Office Manger
Jan 28 05/03/77 Clerk
Instead of:
Jonathan 32 02/16/73 Office Manger
Jan 28 05/03/77 Clerk