Question : Awful font rendering in Adobe Acrobat Reader

I have display problems with pdf files in Adobe Acrobat Reader 9.33. Jaggies - seems no or poor anti-aliasing.

In comparison Ghostview 4.9 with Ghostscript 8.64 renders much better. I have included a BMP file screen snap comparing Ghostview on the left with Adobe Acrobat Reader on the right.

My system is Win 7 64 bit with Office 2010 Home & Office 32 bit.

How to I make Acrobat render the fonts better?
Attachments:
 
Ghostview vs Acrobat font display
Ghostview vs Acrobat font display
 

Answer : Awful font rendering in Adobe Acrobat Reader

Because your For...Next loop is not enumerating the rows in the recordset.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
SQL = "SELECT attendee_name, attendee_email " & _
    "FROM meetings_attendees " & _
    "WHERE meeting_id = '" & intMtgID & "' AND (invited = '0' OR invited IS NULL) " & _
    "AND (emailed = '0' OR emailed IS NULL)"
 
Set objRSAtt = objConn.Execute(SQL)
 
Do Until objRSAtt.EOF
    strAttName = objRSAtt.Fields.Item("attendee_name").Value
    strAttEmail = objRSAtt.Fields.Item("attendee_email").Value
    Response.Write(strAttName) & "<br />"
    Response.Write(strAttEmail) & "<br />"
    objRSAtt.MoveNext
Loop
Random Solutions  
 
programming4us programming4us