Dim cn As New ADODB.Connection, sql1 As String
Set cn = CurrentProject.Connection
cn.Execute "delete from EmailTmpTable"
'-Put in your loop the following.
sql1 = "insert into EmailTmpTable values ('"
+ ctlSource.Column(0, intCurrentRow) + "')"
cn.Execute sql1
'- when done
rs.Close
Set rs = Nothing