Forum: ColdFusion Apr 18th, 2006 |
| Replies: 6 Views: 8,869 Yes, I used the attributes tag inside my CustomTags/PostHead: #Attributes.SwfPath# then on the page I called:
<cfmodule template="Test/Test.cfm" PageTitle="Title Here" SwfPath="images/test.swf" />... |
Forum: ColdFusion Apr 18th, 2006 |
| Replies: 6 Views: 8,869 I actually worked around the issue by using a css layer over the top of the flash movie and making that a cf variable instead. Basically what I wanted to do was call a flash movie using a variable... |
Forum: ColdFusion Feb 28th, 2006 |
| Replies: 6 Views: 8,869 I have a website that I am using includes on to make life easier. One issue that has come up is that I am also using a flash header on the top of each page. I would like to put the object and embed... |
Forum: ColdFusion Feb 9th, 2006 |
| Replies: 1 Views: 3,963 In case anyone else runs into this issue, here is the solution that worked for me:
<cfset startDate = Now() - 7>
<cfset endDate = Now()>
where a.OrderedDate >= #CreateODBCDate(startDate)# and... |
Forum: ColdFusion Feb 9th, 2006 |
| Replies: 1 Views: 3,963 I have a cfmail script that sends a daily summary of orders. It basically grabs all of the orders from the db, uses DateFormat(Now() and then uses the query to generate the rport. The cf scheduler... |
Forum: ColdFusion Sep 26th, 2005 |
| Replies: 2 Views: 13,285 well no one responded to this post so I don't have to thank anyone but I did get it figured out and in case someone has the same trouble... I needed an eval statement in my loop so my cfset needed... |
Forum: ColdFusion Sep 20th, 2005 |
| Replies: 2 Views: 13,285 the referring page has a loop that generate the value for the page that is getting the error and I am thinking that the value is not being passed to that page.
</tr>
<cfloop index="i" from="2"... |
Forum: ColdFusion Sep 20th, 2005 |
| Replies: 2 Views: 13,285 I am trying to debug a form that is basically a popup where the user enters a date and then two more dates are generated based off of date and the user can then edit those dates. When the user tries... |
Forum: ColdFusion Aug 15th, 2005 |
| Replies: 2 Views: 3,228 Setting up the database is just a matter of clicking the data sources link under Data & Services in the menu on the left (cfMx). From here all you need to do is select the data base type from the... |
Forum: ColdFusion Aug 4th, 2005 |
| Replies: 4 Views: 2,415 Sam-
You can use:
SQL
mySQL
Access
Oracle
SyBase |
Forum: ColdFusion Aug 4th, 2005 |
| Replies: 4 Views: 2,415 Hi there Sam-
I can't speak too in depth about access, but I can tell you that I have used mysql via phpmyadmin and have had good results. I think CF would be a good starting place for you esp if... |
Forum: ColdFusion Jul 12th, 2005 |
| Replies: 13 Views: 58,152 you should find out what they do support
asp
coldfusion
JSP
CGI
then I can try and walk you through how to use what you have available |
Forum: ColdFusion Jul 12th, 2005 |
| Replies: 13 Views: 58,152 your form page will be just like any other page except that it will have form tags
<form name="form1" id="form1" method="post" action="">
Field Name:
<input name="field name"... |
Forum: ColdFusion Jul 12th, 2005 |
| Replies: 13 Views: 58,152 The basic Email form can probably be pulled from template example from DW like you mentioned, if not there are lots of examples on the web just google it. The portion you will have to cutomize is the... |
Forum: ColdFusion Jul 7th, 2005 |
| Replies: 5 Views: 5,659 Sorry I misunderstood your question there. I have mostly used error tags inside of <cfset> |
Forum: ColdFusion Jul 6th, 2005 |
| Replies: 1 Views: 4,381 the "MAKEUNIQUE" option of <CFFILE> I believe just generates a random name so that there is not a naming conflict. I think you would have to use some objext variables to add the prefix you want. I... |
Forum: ColdFusion Jul 6th, 2005 |
| Replies: 1 Views: 5,635 I just ran into a similar issue yesterday and it turned out to be a Mysql issue in one of my tables. It sounds like this could be different if you say it was working in cf 5 though. |
Forum: ColdFusion Jul 6th, 2005 |
| Replies: 1 Views: 3,406 Is it possible that part of the application was cached? I know I have had instances where I assumed pages were fine but I was looking at a cached version |
Forum: ColdFusion Jul 6th, 2005 |
| Replies: 1 Views: 3,280 Are you looking for a specific icon or just the script to add an icon. If it is the latter you are lookng for Massimo has a great extension that will add this to a single page or an entire site.... |
Forum: ColdFusion Jul 5th, 2005 |
| Replies: 5 Views: 5,659 you should be able to use <cfthrow> inside the <cfcatch> block |
Forum: ColdFusion Jul 5th, 2005 |
| Replies: 2 Views: 3,150 thanks to the 27 of you that glanced at my post, I was able to debug the application and hopefully it will be a little easier to manage from here on out. |
Forum: ColdFusion Jul 5th, 2005 |
| Replies: 2 Views: 3,150 I am guessing that since I did not get any replies, that my post was either too vague or just plain too boring. At any rate I am going to attempt to post the url in hope of attrating someone to come... |
Forum: ColdFusion Jul 1st, 2005 |
| Replies: 2 Views: 3,150 I am fairly new to cf but felt this wasn't really a "getting started" question. I was thrown into this project with tons of legacy and little doc, so any help would be greatly appreciated. the... |