No - the runsql method of the docmd object is only good for runnig action queries. You'd need a recordset.
Simple sample (requires a reference to Microsoft DAO 3.# Object Library - In VBE - Tools | References)
[tt]dim rs as dao.recordset
set rs=currentdb.openrecordset("select field1, field2 from sometable")
do while not rs.eof
debug.print rs.fields("field1"), rs.fields("field2")
rs.movenext
loop
rs.close
set rs=nothing[/tt]
- hit ctrl+g to study the results, for more samples, do a search here...
Roy-Vidar