Search the web
Sign In
New User? Sign Up
coldfusion-howto · ColdFusion Tips Tutorial Help Questions
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 43620 - 43649 of 44526   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
43620
Hello i am trying to have insert twice within the same cfquery but i dont know how to insert the scope identity of first into the second query. thanks <cfset...
O S
artificial_net
Offline Send Email
Sep 1, 2008
10:37 am
43621
I get javascript code off the net, and sometimes it is written for me, to incorporate into the cf applicaton. Sometimes, in the form statement, onClick...
Uraidiot
uraidiot2000xyz
Offline Send Email
Sep 2, 2008
1:50 am
43622
I don't think it's question of the proper way . Either onClick or onSubmit could be appropriate for your application. You have the flexibility to use ...
Linda Burnside
ihatespam22222
Offline Send Email
Sep 2, 2008
1:18 pm
43623
Is anyone else having problems with dynamic drop-downs in the new Google Chrome browser? My query doesn't display in the the drop-down in this new browser....
Steve
pilotstevek
Offline Send Email
Sep 3, 2008
2:56 pm
43624
I am trying to group my cfquery output by date however as the values the date column also include the time stamp this is causing a problem. Is there a way that...
Claude Raiola
austaccomm
Offline Send Email
Sep 4, 2008
12:06 pm
43625
Using CF8 and usableforms.js at http://www.quirksmode.org/dom/usableforms.html. The user will select one of the radio buttons to display the corresponding...
Sherry
szeiss
Offline Send Email
Sep 4, 2008
2:51 pm
43626
If the form field isn't selected, then the value will not be passed to the action page. You may need to setup a JavaScript to update a hidden form field to...
LACKEY, DARYL (ATTSI)
daryllackey
Offline Send Email
Sep 4, 2008
4:02 pm
43627
Coldfusion doesn't like anything that ends in "_Date" if I remember correctly. I would try setting that as PayDate. Only time you need to worry about filling...
Casey Dougall
casey_dougall
Offline Send Email
Sep 4, 2008
4:08 pm
43628
That's what I'm looking at now, but I'm not a javascript person. Do you have an example? BTW, I'm using fusebox, so this form passes info to the fbx_switch...
Sherry
szeiss
Offline Send Email
Sep 4, 2008
4:08 pm
43629
I may have misread/misunderstood your question so I wanted to try again. ... In your post, you said "this is at the top of the form." Do you mean on the form...
LACKEY, DARYL (ATTSI)
daryllackey
Offline Send Email
Sep 4, 2008
4:11 pm
43630
Are you wanting to populate the hidden field with default text or dynamic text? - If default, just put the default text on the action page. - If dynamic...
LACKEY, DARYL (ATTSI)
daryllackey
Offline Send Email
Sep 4, 2008
4:16 pm
43631
I have a form for the user to select parameters from. There are radio buttons on that form <tr> <td class="formTitle" align="right">Select By:</td> <td...
Sherry
szeiss
Offline Send Email
Sep 4, 2008
4:23 pm
43632
Wow, FuseBox, talking about jumping into CF with both feet! OPTION A On your FORM page use: <cfset pay_date = "XXX"> Then on your action page, you can write: ...
LACKEY, DARYL (ATTSI)
daryllackey
Offline Send Email
Sep 4, 2008
5:31 pm
43633
Fusebox is much easier than understanding another developer's spaghetti code. As for option A, setting a variables scope variable on the form page won't do you...
Greg Luce
cf_greg
Offline Send Email
Sep 4, 2008
6:06 pm
43634
Thank you, thank you! I ended up with the following: <cfif not StructKeyExists(attributes,"pay_date")> <cfset attributes.pay_date = "X"> </cfif> which does...
Sherry
szeiss
Offline Send Email
Sep 4, 2008
6:59 pm
43635
Sherry, Not being proficient with FB, I dont know if this will work but you can verify the sql statement like this: <cfoutput> <cfsavecontent variable="sql"> ...
LACKEY, DARYL (ATTSI)
daryllackey
Offline Send Email
Sep 4, 2008
7:11 pm
43636
Please post more code. Are you talking about the query to populate the select list? The first thing I do is a cfdump of the query at the top of the display ...
Greg Luce
cf_greg
Offline Send Email
Sep 4, 2008
7:53 pm
43637
Here is code from my cfc: <cffunction name="loadCivilServiceOT" access="public" returntype="void" output="no"> <cfargument name="DEPT_CD" type="string" ...
Sherry
szeiss
Offline Send Email
Sep 4, 2008
7:56 pm
43638
forgot to post error: Error Executing Database Query. [Macromedia][Oracle JDBC Driver][Oracle]ORA-01843: not a valid month ORA-06512: at...
Sherry
szeiss
Offline Send Email
Sep 4, 2008
7:57 pm
43639
OK, your stored procedure is expecting a date. I can't tell from here how you are doing it. I would need to see the fbx_switch, the cfc, and the dsp page. If...
Greg Luce
cf_greg
Offline Send Email
Sep 4, 2008
9:06 pm
43640
Thanks, I've sent you the relavent portions. Sherry ... From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On Behalf Of Greg Luce...
Zeiss, Sherry
szeiss
Offline Send Email
Sep 5, 2008
12:08 pm
43641
Hi Can someone please tell me what I have done wrong below. I keep getting an error. Thanks! ... Error Executing Database Query. Syntax error in INSERT INTO...
Elsinore
elsinore4u
Online Now Send Email
Sep 6, 2008
11:21 am
43642
First of all PLEASE use cfqueryparams. We would probably need to know the datatypes for all of the columns in the insert statement to be of help if that's all...
Greg Luce
cf_greg
Offline Send Email
Sep 6, 2008
12:22 pm
43643
If you use CFQUERYPARAM you don't need to worry much about Syntax, but I think your error is stemming from your use of CreateODBCDateTime. That should be in...
Mark Bureau
bu9418
Offline Send Email
Sep 6, 2008
12:40 pm
43644
Nope, you don't put quotes around CreateODBCDate or CreateODBCDateTime. OP: If you're getting an error, it's always good to let us know what error you are...
John Bartlett
wyntermoonwolf
Offline Send Email
Sep 6, 2008
5:21 pm
43645
Thanks for the responses I copied and pasted the error when I sent the first email I will experiment with the CFQUERYPARAM suggested by the others. Error...
Elsinore
elsinore4u
Online Now Send Email
Sep 6, 2008
7:21 pm
43646
In the error message, it should give you the SQL it tried to execute. What does that say? Try using a different field name than "Password" and/or "Type". It...
John Bartlett
wyntermoonwolf
Offline Send Email
Sep 6, 2008
10:28 pm
43647
If UserID is your primary key and you have autoincrement turned on in your database, then you don't send the userID in an insert, the database will autocreate...
Marty Marbach
marbachma
Offline Send Email
Sep 7, 2008
1:14 am
43648
Much Thanks Marty! Your suggestion fixed the problem. Best Regards Elsinore ... From: Marty Marbach <marty@...> To: coldfusion-howto@yahoogroups.com ...
Elsinore
elsinore4u
Online Now Send Email
Sep 7, 2008
4:56 pm
43649
Thanks John! I did as you suggested and renamed those 2 columns and also removed the UserID entry like Marty suggested and it worked ... From: John Bartlett...
Elsinore
elsinore4u
Online Now Send Email
Sep 7, 2008
5:18 pm
Messages 43620 - 43649 of 44526   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help