| Title: |
Is There an END WHILE for CFLOOP? |
| Date: |
06/09/03
10 Posts
|
| Summary: |
Need a best practices approach to breaking out of an array loop as soon as a specific condition has been met? Although ColdFusion does provide a conditional loop, you can use CFBREAK, like this, if you need to use an index loop:
<cfloop from="1" to="#ArrayLen(application.myArray)#
"index="ArrayRows">
<cfif blah>
<cfbreak>
<cfelse>
do something...
</cfif>
</cfloop>
|
|
| |
| Title: |
CF Studio Users |
| Date: |
06/09/03
15 Posts
|
| Summary: |
Take a look at this Forta article for information about how to extend ColdFusion Studio using tag editors. |
| |
| Title: |
How to Add Shortcuts to Snippets in DW MX |
| Date: |
06/09/03
9 Posts
|
| Summary: |
A Dreamweaver MX guru provides step-by-step instructions for adding keyboard shortcuts to DWMX code snippets. Developers also express their "wish" for Ctrl+M functionality, currently available only in CF Studio and Homesite+. |
| |