Search results

  1. R

    append records in a table from recordset

    Ciao, I have the code below that sends email from access: Dim db As Database, RS As Recordset Set db = CurrentDb Set RS = db.OpenRecordset("prova", dbOpenDynaset) ' q_invio_email If RS.RecordCount = 0 Then MsgBox "Nessun messaggio da inviare!" & vbCrLf _...
  2. R

    accented characters

    Hi, I'm using Access 2003 for sending emails via VBA using CDO as the code below. This system works fine but I noticed that the accented characters as òàì etc are cutted or changed in the received email. How can I set an appropriate charset on this code? Dim db As Database, RS As...
Back
Top Bottom