| Title: |
Displaying *.swf Files
|
| Date: |
12/28/02
8 Posts
|
| Summary: |
If you're looking for a way to display a SWF file in CFCHART, you will find a helpful code block here that uses both CFOBJECT and EMBED tags for cross-browser compatibility. Tips for reducing file size are included. |
| |
| Title: |
Dynamically Created Form Input Names
|
| Date: |
12/29/02
6 Posts
|
| Summary: |
Try this on your action page to get the names of dynamic form fields:
<cfloop index="f" list="#form.fieldnames#">
#f# = #form[f]#<br>
</cfloop>
|
To concatenate two form fields, do this:
#FORM[FORM.field1& FORM.field2]#. |
| |
| Title: |
Excel as a Vehicle to Collect and Write Back Data to a CF-App
|
| Date: |
12/29/02
4 Posts
|
| Summary: |
Here are a handful of suggestions for sending the user a populated Excel form to be edited then updated in Access. Some of the technologies you might use to do this are: XML, HTML/CSV, VBA, and WDDX. A sample block of code is included. |
| |