Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
HandersonVA #1
print out the same row three times
I have records in the color table.
Index_id colorname
1 red
2 yellow
3 blue
4 orange
I would like to print out the same row three times by adding a different
static character as below (format: index_ID, A, B, or C, colorname)
1Ared
1Bred
1Cred
2Ayellow
2Byellow
2Cyellow
3Ablue
3Bblue
3Cblue
4Aorange
4Borange
4Corange
HandersonVA Guest
-
Saving Print Settings in a Document via Print Advanced Menu
I just discovered in the Help file you can do the above but it doesn't say how. I want to save the document so it can be printed on anyone's printer... -
Creating PDFs from Freehand -- print to PDFvs. export vs. print/scan to PDF?
I've had a lot of compatibility problems with created presentations so have started using Acrobat instead of trying to export my Macromedia Freehand... -
Can't print some jobs at some times
I have problems to get some PDFs printed out of Acrobat 6. Those files DO always print well on another computer. Those files only sometimes print on... -
print to pdf doesn't work. queue in the print center stopped
hi, have a huge problem with printing a pdf. when i'm in illustrator for example and choose to print a simple page to pdf, it moves the file into... -
Illustrator 10 Print Space settings in Print Dialog
Howdy all; I've got a peculiar situation that I haven't found an answer to yet. On my laptop PC (Windows XP Home) when I go to print a document... -
The ScareCrow #2
Re: print out the same row three times
Just use the ascii codes of the characters that you want to prepend for the
index of a loop
<cfoutput query.....................>
<cfloop from="#Asc('A')#" to="#Asc('C')#" index="idx">
#Chr(idx)##queryName.ColumnName#
</cfloop>
</cfoutput>
Ken
The ScareCrow Guest
-
eastinq #3
Re: print out the same row three times
Or ...
<cfoutput query="myqry">
#index_ID# A #colorname#<br>
#index_ID# B #colorname#<br>
#index_ID# C #colorname#<br>
</cfoutput>
eastinq Guest



Reply With Quote

