Search the web
Sign In
New User? Sign Up
CFTalk · ColdFusion Talk (CFTalk) List archives
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 142279 - 142308 of 154346   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
142279
... Thanks Jochem and others, It was something like that I was looking for - but why does it return "no" when I do a...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
8:44 am
142280
because http:/host/testobject.cfc?method=testfunction request is NOT invoking a web service. Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ ... ...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
9:28 am
142281
The problem I was trying to solve was to be able to prompt the user before changing tabs whenever there is dirty data on the current tab. My first approach was...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
10:02 am
142282
... The process must be running as some user or other... -- Tom Chiverton Helping to conveniently strategize high-yield customized unique user-centric ...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
11:24 am
142283
... If you say so. OOI, what is wrong with Vista that it wont let you delete files ? -- Tom Chiverton Helping to appropriately reinvent second-generation...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
11:26 am
142284
... It will certainly let you do that. You may have to pass through a UAC prompt, however, or if you're doing it from a command prompt, you may have to run...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
1:14 pm
142285
SQL server 2000. I have two columns - startdate and enddate, why would this not return a record if the startdate and enddate are the same. ex. 12/01/2008 for...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
2:20 pm
142286
Because GETDATE() will return the current date *and time* and I'll bet that your start/end dates are coming back as 12/1/2008 12:00 AM. ... ...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
2:28 pm
142287
Would an established framework like Model Glue or Mach II work well with an all AJAX app? From what I've heard those frameworks store lots of stuff in the app,...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
2:33 pm
142288
... Ahhh yes! That makes sense. Thanks John! Will ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
2:35 pm
142289
... Thought so, cheers Dave ! -- Tom Chiverton Helping to seamlessly synergize unique high-yield enterprise-class principle-centered partnerships ...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
2:38 pm
142290
Try this: AND GETDATE() >= '#couponstartdate# 00:00:00' and GETDATE() <= '#couponenddate# 23:59:59' ... From: Will Tomlinson [mailto:will@...] Sent:...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
2:41 pm
142291
If you are using MS SQL... SELECT CAST(FLOOR(CAST(GETDATE() AS float)) AS datetime) This will remove any time part from a datetime field. Mike ... From: Will...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
2:44 pm
142292
... Except the values I want to match them against are the value in a column - not a couponstartdate or couponenddate variable. Thanks! Will ...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
3:06 pm
142293
... So then I write it like this? AND datetime >= couponstartdate and datetime <= couponenddate Thanks! Will ...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
3:07 pm
142294
I would do something like: WHERE datetime BETWEEN CAST(FLOOR(CAST(couponstartdate AS float)) AS datetime) AND CAST(FLOOR(CAST(couponenddate AS float)) AS...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
3:11 pm
142295
Another CFMLish option: couponstartdate <= #CreateODBCDateTime(CreateDateTime(DatePart("yyyy", Now()), DatePart("m", Now()), DatePart("d", Now()), 23, 59,...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
3:32 pm
142296
... Every process runs with some set of credentials. If Verity is running as a service, the user account can be found in the Services control panel. If it's...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
3:33 pm
142297
Hello Guys, Looking for the first time in ages to getting up and running with processing credit card payments using PayPal. I have myself a PayPal Payments Pro...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
3:47 pm
142298
Although this will work perfectly, if provided with CF variables. However, I think Will's dates were already in the database where he would need to stick to...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
3:49 pm
142299
We rolled our own using PayPal's HTTP request/response solution. It was pretty easy to do. Mike ... From: Robert Rawlins...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
3:50 pm
142300
Mike, Thanks. Was this website payments pro? And this was using the SOAP web services, correct? At the moment my requirements are very simple, I'm simply...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
3:57 pm
142301
There are a couple of CFC's on RiaForge. Both are v 0.1 but it may shorten your learning curve. http://cfpayflowpro.riaforge.org/ ...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
5:02 pm
142302
We use Payflow Pro and simple HTTP requests. No SOAP or nuttin fancy. Other than setting some params for amount, credit card number, etc, the HTTP request...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
5:19 pm
142303
Yep. If anything, the extensive use of the application scope would speed up your ajax calls. Using the app scope is otherwise unrelated to the fact that your...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
5:35 pm
142304
Mike, Thanks for this, someone mailed me off list with code very similar to this which looks as if it'll do the job I want. The real challenge right now is...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
5:53 pm
142305
... I'm remote right now, but will give it a whirl tonight. Thanks for your help! Will ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| ...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
6:13 pm
142306
We have recently migrated all of our applications to a new MS 2003 server. Ever since the applications kept going down even though the server was still up and...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
6:50 pm
142307
I don't know about MS 2003 too much, but in 2008 the app pools have two related "Rapid-fail protection" settings that we had to tweak: the "maximum failures"...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
7:58 pm
142308
Hello Experts, This is more of a curiosity rather than a technical problem. We have a CF powered site hosted under IIS/JRun server on Win 2K 64-bit. This site...
archive@...
mdinowit
Offline Send Email
Dec 1, 2008
8:14 pm
Messages 142279 - 142308 of 154346   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