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...
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.

Messages

  Messages Help
Advanced
Messages 35113 - 35142 of 42948   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
35113
With the following script I intend to verify that a username "starts with a letter, contains letters, numbers and underscore only, and has a length of between...
Walter Conti
contiw
Offline Send Email
Oct 2, 2005
12:03 am
35114
ColdFusion Hosting Providers ColdFusion Hosting Providers' List brought to you by *** ColdFusion-HowTo: Yahoo's No. 1 and the biggest group for ColdFusion...
coldfusion-howto@yaho...
Send Email
Oct 2, 2005
1:38 am
35115
The CreateTimeSpan should only be passed in positive values. Negative values may cause an error in future releases. The CachedWithin only takes affect if the...
Bartlett, John
wyntermoonwolf
Offline Send Email
Oct 2, 2005
2:49 am
35116
Can someone help me How to get some values using CFHTTP? tnx. THIS IS THE URL. <cfhttp url="http://www.lme.com/dataprices_daily_metal.asp> <CFOUTPUT> ...
noel ilagan
fourth_noel
Offline Send Email
Oct 2, 2005
10:54 am
35117
you need to search on google for screen scraping. Basically, the idea is that you have to use regular expressions to scrape the data that you want from...
Ken Auenson, II
kja2
Offline Send Email
Oct 2, 2005
1:05 pm
35118
... Have a look at CF_REextract. It has been developed especially for this kind of job. It can even CFHTTP the file for you. See ...
Claude Schneegans
schneeca
Offline Send Email
Oct 2, 2005
2:27 pm
35119
When you define a Regexp as a string, you need to escape backslashes: var usernameReg = "^[a-zA-Z]\\w{3,9}$"; -- _______________________________________ REUSE...
Claude Schneegans
schneeca
Offline Send Email
Oct 2, 2005
2:38 pm
35120
[Walter Conti] Thank You Claude When you define a Regexp as a string, you need to escape backslashes: var usernameReg = "^[a-zA-Z]\\w{3,9}$"; [Non-text...
Walter Conti
contiw
Offline Send Email
Oct 2, 2005
5:37 pm
35121
I do this kind of thing all the time from gathering balance sheet statistics to miles from this or that location. You can use the full API of any java class in...
Dan Plesse
empiricallys...
Offline Send Email
Oct 2, 2005
6:34 pm
35122
Hi group, I'm just starting to learn CF and this is my first post, although I've been receiving the listings for some time. Anyway, I'd like to create a...
Randy
rrobinsonav
Offline Send Email
Oct 2, 2005
10:34 pm
35123
Check out the CFTREE tag, it may provide you with what you need. -John ... From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On...
Bartlett, John
wyntermoonwolf
Offline Send Email
Oct 3, 2005
1:38 am
35124
Have you though about a DHTML menu generated on the fly from data in a SQL db? JoAnn Schlosser Web Consultant ASI Consulting Advanced Solutions International,...
JoAnn Schlosser
jojo_super77
Offline Send Email
Oct 3, 2005
5:55 pm
35125
No, I haven't thought about that. Any good references to some reading material? Thanks, Randy ... From: coldfusion-howto@yahoogroups.com ...
Randy
rrobinsonav
Offline Send Email
Oct 3, 2005
8:51 pm
35126
I have an interface between us and SalesForce that works great on mx6. We are currently testing our code on mx7 and the SalesForce interface fails. I am...
ltleshaver
Offline Send Email
Oct 3, 2005
9:45 pm
35127
Try Sothink's DHTML Menu. It's very easy to use and can be generated on the fly with CF. http://www.sothink.com/product/dhtmlmenu/index.htm ColdFusion tutorial...
Sam Mitchell
stoked744
Offline Send Email
Oct 4, 2005
12:45 am
35128
Thanks for the links Sam. I'll spend some time looking this over, it has great promise. Randy ... From: coldfusion-howto@yahoogroups.com ...
Randy
rrobinsonav
Offline Send Email
Oct 4, 2005
12:57 am
35129
In the MX admin, there is a code Validator. Try running it against your source code directory. -John ... From: coldfusion-howto@yahoogroups.com ...
Bartlett, John
wyntermoonwolf
Offline Send Email
Oct 4, 2005
4:44 am
35130
I would like to upgrade my MX6.1 server to an MX 7 multi-server. The current server is not currently setup for multi and I am wondering if this is even...
Edward H. Putt
techgeek27
Offline Send Email
Oct 4, 2005
12:58 pm
35131
Has anyone successfully pulled up a report using CR XI/ CE XI? The old view source trick no longer works and I'm able to talk directly to the object, just...
Alex
tlmalexgro
Offline Send Email
Oct 4, 2005
3:44 pm
35132
Any version of ColdFusion supports multiple servers. For MX, you can locate the different connectors in the CFusionMX\bin directory for configuring a web...
Bartlett, John
wyntermoonwolf
Offline Send Email
Oct 4, 2005
5:45 pm
35133
Thank you but I want to UPGRADE from a CFMX6.1 non-multi server to a CFMX7.0 Multiserver and not have to do all my Cold Fusion setting by uninstalling and...
Edward H. Putt
techgeek27
Offline Send Email
Oct 4, 2005
5:52 pm
35134
Is it possible to "force feed" data into a query after the query has run? For instance: <cfquery name="q1" datasource="dsn"> select column1, column2 from...
Ali, Hakim
hakimcf
Offline Send Email
Oct 4, 2005
5:55 pm
35135
Look at QueryAddRow and QuerySetCell. -John ... From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On Behalf Of Ali, Hakim Is it...
Bartlett, John
wyntermoonwolf
Offline Send Email
Oct 4, 2005
5:58 pm
35136
Anyone know what the equivalent Request, Response, and Session Objects in ASP are for ColdFusion? I tried using this: #GetPageContext().getRequest()#, etc. But...
Alex
tlmalexgro
Offline Send Email
Oct 4, 2005
8:40 pm
35137
Thanks a ton John, that worked. Hakim ... From: coldfusion-howto@yahoogroups.com [mailto:coldfusion-howto@yahoogroups.com] On Behalf Of Bartlett, John Sent:...
Ali, Hakim
hakimcf
Offline Send Email
Oct 4, 2005
8:58 pm
35138
I'm trying to run a sql update statement but seem to have a syntax problem. I am passing an ID with a url to this code: <cfquery datasource="connection"...
trevormorrislyman
trevormorris...
Offline Send Email
Oct 4, 2005
9:15 pm
35139
"done" is a text string and should be wrapped with single quotes. UPDATE Table1 SET Var1= 1, Var2= 'done' WHERE ResourceID =#url.ResourceID#; ... From:...
Bartlett, John
wyntermoonwolf
Offline Send Email
Oct 4, 2005
9:18 pm
35140
Try remove the ";" from the query Gilles ... From: trevormorrislyman To: coldfusion-howto@yahoogroups.com Sent: Tuesday, October 04, 2005 5:13 PM Subject:...
Gilles Tanguay
alphazero_gi...
Offline Send Email
Oct 4, 2005
9:18 pm
35141
Thanks.. but that wasn't it. It's still not working. I'm getting an http 500 Internal Server error if that helps. ... syntax ... ASP.NET, Access, MySQL, PHP,...
trevormorrislyman
trevormorris...
Offline Send Email
Oct 4, 2005
9:25 pm
35142
Randy, first, a menu is a menu. CF and its dynamic part is the next step. A menu can be written in HTML/CSS/Javascript, either coded manually, or using desktop...
Rizal Firmansyah
masswork
Online Now Send Email
Oct 4, 2005
9:36 pm
Messages 35113 - 35142 of 42948   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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