Why would the recordset not return the number of rows affected, I have example in a book that show a select returning the number of rows selected !!

VB Code:
  1. Public Function RunQuery(ByRef QueryString)
  2.     Dim AffectedRows
  3.        
  4.     Set rs = conn.Execute("SELECT * FROM ve_forms ORDER BY title ASC" , AffectedRows, adCmdText)
  5.        
  6.     RunQuery = AffectedRows
  7. End Function

Selecting for now in a MS Access database and I tested my queries and it does work.

Thanks