Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Flash format not working but html is

Status
Not open for further replies.

no1biscuit

Programmer
Oct 8, 2001
67
US
Below is my ugly (just trying to get anything to work so ignore the ugliness of the code. But if I have format="html" it displays data from the stored procedure and the two text boxes. If I set format="flash" then it only displays the two text boxes and not the stored procedure data.

What am I doing wrong?

Thanks
Thom

<cfstoredproc procedure="VolumeActivity" datasource="System" >
<CFPROCPARAM TYPE="IN" CFSQLTYPE = CF_SQL_DATE VAlue = '10/25/2006'>
<CFPROCPARAM TYPE="IN" CFSQLTYPE = CF_SQL_DATE VAlue = '10/26/2006'>
<cfprocresult name = "qryresult"></cfstoredproc>

<cfform name="frmreport" format="html" skin="halogreen" action="_self" wmode="opaque" width="200" height="200">

<cfinput type="text" name="bar"/>
<cfloop query="qryresult">
<cfoutput>
# qryresult.Call_Type#

</cfoutput>
</cfloop>

<cfinput type="text" name="bar2"/>
</cfform>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top