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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 148323 - 148352 of 154390   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
148323
None at all. I think its great and does the job well. Unfortunately, without hearing from Howie, I have to find solutions for people who want to use the ...
archive@...
mdinowit
Offline Send Email
May 1, 2009
7:20 am
148324
Another option is to store the secret question/answer in the AD object, itself. You can easily create new attributes for user objects and then limit access to...
archive@...
mdinowit
Offline Send Email
May 1, 2009
1:46 pm
148325
Hey all.. I have a ColdFusion list of orderIDs generated from a query.. The list drives a pair of hrefs (next and previous) The user will click on a link from...
archive@...
mdinowit
Offline Send Email
May 1, 2009
2:14 pm
148326
Scott, How are you maintaining the list from page to page? Are you caching it somewhere? Or passing is via the URLs? -- Ben Nadel Adobe Community Expert Adobe...
archive@...
mdinowit
Offline Send Email
May 1, 2009
2:19 pm
148327
listFind() perchance. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and...
archive@...
mdinowit
Offline Send Email
May 1, 2009
2:22 pm
148328
<cfset listLoc = listFind(orderIDList, url.orderID) /> <cfif listLoc eq 1> <cfset prevOrderID = "" /> <cfelse> <cfset prevOrderID = listGetAt(orderIDList,...
archive@...
mdinowit
Offline Send Email
May 1, 2009
2:22 pm
148329
You could pass the current item id and set nextquery WHERE ID > CURID or WHERE ID < CURID; or you could use startrow ...
archive@...
mdinowit
Offline Send Email
May 1, 2009
2:22 pm
148330
If I recall ListFind will return the numeric location of the list (if found). Using that numeric you can do a ListGetAt to get the next and previous. <cfset...
archive@...
mdinowit
Offline Send Email
May 1, 2009
2:24 pm
148331
If I recall ListFind will return the numeric location of the list (if found). Using that numeric you can do a ListGetAt to get the next and previous. <cfset...
archive@...
mdinowit
Offline Send Email
May 1, 2009
2:28 pm
148332
Jason, This worked like a champ... Thanks sas -- Scott Stewart ColdFusion Developer 4405 Oakshyre Way Raleigh, NC 27616 (h) 919.874.6229 (c) 703.220.2835 ... ...
archive@...
mdinowit
Offline Send Email
May 1, 2009
2:42 pm
148333
Session vars -- Scott Stewart ColdFusion Developer 4405 Oakshyre Way Raleigh, NC 27616 (h) 919.874.6229 (c) 703.220.2835 ... From: Ben Nadel...
archive@...
mdinowit
Offline Send Email
May 1, 2009
2:46 pm
148334
Scott, If you are storing the list in session vars, I would suggest storing it as an Array since array index access is MUCH faster than list index access. The ...
archive@...
mdinowit
Offline Send Email
May 1, 2009
2:50 pm
148335
I see you haven't been on this board for a while, but I thought I would give you a try. I am having some issues parsing the result set coming back from from a...
archive@...
mdinowit
Offline Send Email
May 1, 2009
4:03 pm
148336
Gary, I see you haven't been on this board for a while, but I thought I would give you a try. I am having some issues parsing the result set coming back from...
archive@...
mdinowit
Offline Send Email
May 1, 2009
4:04 pm
148337
Gary, I see you haven't been on this board for a while, but I thought I would give you a try. I am having some issues parsing the result set coming back from...
archive@...
mdinowit
Offline Send Email
May 1, 2009
4:04 pm
148338
Cool! I also like Ben's suggestion of the arrays ... if your list of orderIDs is very long, you'll definitely want to explore using arrays instead of lists...
archive@...
mdinowit
Offline Send Email
May 1, 2009
5:32 pm
148339
I am hoping someone can shine some light on a problem I am having with serving an image through cfcontent on a web page. I am using a CF5 server (all hotfixes...
archive@...
mdinowit
Offline Send Email
May 1, 2009
5:59 pm
148340
If you want to access the cfc as a web server you just have to add wsdl to the in of the call: http://www.mydomain.com/services.reportservice.cfc?wsdl and make...
archive@...
mdinowit
Offline Send Email
May 1, 2009
6:50 pm
148341
reset="true" is always a good parameter to have when doing this kind of work. It helps even more to keep arrant whitespace from before the <cfcontent...> tag...
archive@...
mdinowit
Offline Send Email
May 1, 2009
6:52 pm
148342
I think you mentioned you are using ajax, correct. Ajax is processing with out knowledge of the application space. To get around this I created a cfc that...
archive@...
mdinowit
Offline Send Email
May 1, 2009
6:58 pm
148343
... I agree but Reset=yes is the default and I have tried yes and no and even removed everything from the image.cfm file but the cfcontent tag and still there...
archive@...
mdinowit
Offline Send Email
May 1, 2009
7:28 pm
148344
Sounds like a good idea, Lance. I'll have to read up on the "extends" functionality...haven't used that, yet. Thanks! Rick ... ...
archive@...
mdinowit
Offline Send Email
May 1, 2009
8:05 pm
148345
Mike, Did you ever find solutions to this? I too am interested. ... From: Michael Dinowitz [mailto:mdinowit@...] Sent: Thursday, April 30, 2009...
archive@...
mdinowit
Offline Send Email
May 1, 2009
8:54 pm
148346
As long as the AJAX requests are being made to a file under the web root - and how could they not? - then there is no need to duplicate the <cfapplication> tag...
archive@...
mdinowit
Offline Send Email
May 1, 2009
9:50 pm
148347
So I'm setting up a new event gateway instance. I created jobsentry.cfg and jobsentry.cfc and started up the instance. I edited a file in the directory and...
archive@...
mdinowit
Offline Send Email
May 1, 2009
10:08 pm
148348
Perhaps Lance's suggestion assumes my CFC's are outside the webroot? They're all under the same application.cfc in this app. ... ...
archive@...
mdinowit
Offline Send Email
May 1, 2009
10:14 pm
148349
Hello, Does anyone use a Mailbagging / Backup MX service? I was looking at dyndns.org, but I wanted to see if anyone on the list would recommend a provider. I...
archive@...
mdinowit
Offline Send Email
May 1, 2009
10:32 pm
148350
if your CFCs are outside the web root, you would not be able to access them via AJAX ... ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|...
archive@...
mdinowit
Offline Send Email
May 1, 2009
11:22 pm
148351
... Have you considered ditching your mail server altogether for a hosted service like Google Apps for your Domain? I'm very happy with that, myself. The...
archive@...
mdinowit
Offline Send Email
May 1, 2009
11:26 pm
148352
Thanks Dave. I currently use that for my family's domain, since the standard edition is free. What about for MS Exchange users? I know that they wouldn't...
archive@...
mdinowit
Offline Send Email
May 2, 2009
12:13 am
Messages 148323 - 148352 of 154390   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