Search Results

2
votes
2answers
144 views

Special characters in CFMail

I'm trying to auto-generate a plain text email with a trademark symbol in it. I've tried everything I can think of but it's still not going through. <cfmail from="#x#" to="#y#" s …
2
votes
2answers
282 views

ColdFusion Query to java.sql.ResultSet

I've looked in the "undocumentation", and I can see how to create a coldfusion.sql.QueryTable from a Resu …
2
votes

ColdFusion Query to java.sql.ResultSet

Turns out all I had to do was pass in my coldfusion.sql.QueryTable object...don't know why it works, unless ColdFusion is doing some sort of magic casting under the hood. …
1
vote

In ColdFusion, can I rename a PDF Form Field with CFPDF?

You cannot rename the fields with cfpdf or cfpdfform. You can get around the problem by populating and flattening each form before you merge them. Here's a simplified example: …