Question : HOW TO SHOW QUERY RESULTS IN A MSGBOX?

HOW TO SHOW QUERY RESULTS IN A MSGBOX?

Answer : HOW TO SHOW QUERY RESULTS IN A MSGBOX?

something like

dim str as string
rs.open("SELECT blah FROM table1")
while not rs.eof
  str&=rs!blah & ","
wend
msgbox str
Random Solutions  
 
programming4us programming4us