 |
Developer Name: |
Rizal Firmansyah |
 |
Company Name: |
MasRizal & Partners |
 |
Email Developer: |
Email Developer |
 |
Latest Version: |
1.0 |
 |
Price: |
$50 |
 |
License: |
One copy per developer. |
 |
Encrypted: |
No |
 |
Average Rating: |
Not Rated |
 |
Times Rated: |
Not Rated |

Tag Comments
|
There are no comments for this tag yet!
|
|
What Is CF_Query2FixWidth? |
CF_Query2FixWidth is a quick solution to export ColdFusion query into a fixed width string.
This tag doesn't require any COM, DLL, or Java object. Just put the tag in your CF working directory and you're done!
This tag supports all kind of fixed width data, including:
Saving fixed width data to file. You can import CF Query to fixed width string using this tag and then write the data using .
Support UNIX and DOS file mode, as well as other line break delimiters.
Support any kind of filler character.
Support for left and right justification. |
Features
Easy to use!
Support all kind of fixed width string.
Support left and right justification.
Support all kind of filler character.
Fast process.
Plain CF custom tag. Shared hosting friendly. Just copy this custom tag in your ColdFusion script directory, and you're set
Requirements
Supported ColdFusion Server:
- ColdFusion MX 6, 6.1
- ColdFusion MX 7
on all operating systems. Note: #createobject# function must be allowed for this tag to run.
Supported browsers: Since this tag is working on server side, all browsers are compatible.
Usage
| <cf_query2fixwidth |
query="ColdFusion query "
|
| |
|
result="variable that holds resulting fixed width string" |
| |
|
header="[header text]" |
| |
|
footer="[footer text]" |
| |
|
linebreak="[linebreak, default is carriage return followed by line feed (chr(13) & chr(10))]" |
| |
|
startrow="[the first row to process]" |
| |
|
endrow="[the last row to process, if 0 all the rest rows will be processed]"> |
| |
<cf_q2fw_column |
Field="column name" Width="widht of column" FillChar="filler character. Default is space" Justify="left|right. Default is left "> |
| |
<cf_q2fw_column |
...> |
| |
<cf_q2fw_column |
...> |
| </cf_query2fixwidth> |
|
|
|