Re:SQL Help - Correct Post

2003-10-09 Thread ColdFusion Programmer
The log file stores a log of what the user has been searching on the site search. For example if the user searches for the keyword "Fusion", the log file stores the information like this: I want to display the top 5 or 10 search keywords that users regularly search for and because this is logged

Re:Looping through a list, setting each listItem to a column

2003-10-09 Thread ColdFusion Programmer
>   // find matching pattern >   matchStruct = REFindNoCase(pattern,line,1,true); >   if(matchStruct.pos[1] AND j LE ListLen(columns)){ >    field = Mid(line,matchStruct.pos[2],matchStruct.len[2]); >    WriteOutput("#i#.#j#:|#field#|"); >    QuerySetCell(qTmp,ListG

Re:Looping through a list, setting each listItem to a column

2003-10-09 Thread ColdFusion Programmer
cript wasn't meant to give you a regexp to replace the commas. It >does the entire job of creating the query and takes the " as a >qualifier into consideration. Replace your script by mine and it >should work. > > -Oorspronkelijk bericht- > Van: ColdFusion P

Re:Help with Regular Expressions

2003-10-08 Thread ColdFusion Programmer
Thanks Ben, the problem with that script is that because I'm reading a log file with 300 plus rows of data, the execution time suffers. Is there a way to only run your code if somewhere in the string there is a comma inside double quotes? >Try this: > > > > string = string & ","; > first = find('"

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
T exit){    >// find matching pattern    >matchStruct = REFindNoCase(pattern,line,1,true);    >if(matchStruct.pos[1] AND j LE ListLen(columns)){     >field = Mid(line,matchStruct.pos[2],matchStruct.len[2]);     >QuerySetCell(qTmp,ListGetAt(columns,j),field);     >if(matchStruct.len[1])

Re:Help with Regular Expressions

2003-10-08 Thread ColdFusion Programmer
Hi Ben Actually if you take a look at this thread you will get a better idea of what I'm trying to do. I'll appreciate your help http://www.houseoffusion.com/cf_lists/index.cfm/method=messages&threadid=27743&forumid=4 Thanks >The problem is in defining "between quotation marks" because technica

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
>I'm no regex expert and that would take me quite a while to figure out, >maybe later if youre still stuck. > >Good luck. > > -Original Message- > From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] > > Sent: 08 October 2003 12:55 > To: CF-Talk > Su

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
Document", listGetAt(fileLine,3)); >  tmp=QuerySetCell(qTmp,"Status", listGetAt(fileLine,4)); >   > > > >That should ignore any invalid lines too. > > -Original Message- > From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] > > Sent: 08 Oc

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
"Document", listGetAt(lIndex,3)); >  tmp=QuerySetCell(qTmp,"Status", listGetAt(lIndex,4)); >   > > > > -Original Message- > From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] > > Sent: 08 October 2003 11:32 > To: CF-Talk > Subject: Re:L

Re:Looping through a list, setting each listItem to a column

2003-10-08 Thread ColdFusion Programmer
Craig, I tried running your code and get this error, Invalid list index 2.   In function ListGetAt(list, index [, delimiters]), the value of index, 2, is not a valid as the first argument (this list has 1 elements). Valid indexes are in the range 1 through the number of elements in the list.   An

RE: [ OT] Special security Alert!

2003-09-23 Thread ColdFusion Developer
I was one of the few who was getting slammed with those emails from the SWEN.A worm. Now today I am happy once again to say I am still using Microsoft Outlook 2002 and am no longer receiving them. What I did was the following: Updated Windows with all updates ( ht

Re:?id=23

2003-09-12 Thread coldfusion . developer
Edge Systems Group Inc. >t. 250.920.8830 >e. [EMAIL PROTECTED] > >- >Macromedia Associate Partner >www.macromedia.com >----- >Vancouver Island ColdFusion Users Grou

?id=23

2003-09-12 Thread coldfusion . developer
All, I have an application that passes an id value through a hyperlink that the user clicks on in an e-mail. The id feeds the page and extracts information and populates the form fields with the user's information. THE PROBLEM: If a user is viewing their customized information with their user

Error when trying to create a datasource from the CFMX Administrator

2003-09-04 Thread ColdFusion Programmer
yes I have recently upgraded to 6.1 from updater 3. I entered a new datasource name, selected "Microsoft SQL Server" from the driver drop-down, entered the database, server, login, password details and on hitting the submit button I get the error. I did what you asked me to, deleting all the cla

Error when trying to create a datasource from the CFMX Administrator

2003-09-03 Thread ColdFusion Programmer
ription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Special Characters - Display Issue - CF 5

2003-08-29 Thread ColdFusion Programmer
no I can't change the charset in LDAP. I've had a look. >ColdFusion Programmer wrote: > >> You suggested in your previous thread that I should be using the >charset ISO-88659-15 and not utf-8. I did what you said and added this >line of code in my application.cfm

Special Characters - Display Issue - CF 5

2003-08-29 Thread ColdFusion Programmer
the output seen on the browser is not right. I am dependent on your help, kindly help. >ColdFusion Programmer wrote: > >> I'm not sure mate, probably utf-8 > >We already established that. But can you change it? > >Jochem > > > ~~~

Special Characters - Display Issue - CF 5

2003-08-28 Thread ColdFusion Programmer
I'm not sure mate, probably utf-8 >ColdFusion Programmer wrote: > >> here is what I want to do. I have the users in an LDAP Server. > >Can you specify the charset the LDAP server uses? > >Jochem > > > ~~~

Special Characters - Display Issue - CF 5

2003-08-28 Thread ColdFusion Programmer
here is what I want to do. I have the users in an LDAP Server. If I create an organisation with a special character say é, when displayed on the web page I see the funny charactes. I have now understood that adding the meta tag with utf charset in the application.cfm file can lead to unexpected

Special Characters - Display Issue - CF 5

2003-08-28 Thread ColdFusion Programmer
te http://www.webapper.com >Blog http://www.webapper.net > >Webapper > >-----Original Message- >From: ColdFusion Programmer [mailto:[EMAIL PROTECTED] >Sent: Thursday, August 28, 2003 9:08 AM >To: CF-Talk >Subject: Special Characters - Display Issue - CF 5 > >

Special Characters - Display Issue - CF 5

2003-08-28 Thread ColdFusion Programmer
my client does not want to migrate ot MX just yet. I don't know another way to display french/foreign characters in CF5 other then using the meta tag. If I don't use the meta tag the content screws up or in other words the foreign characters get displayed. But when I view the source on the brows

Special Characters - Display Issue - CF 5

2003-08-28 Thread ColdFusion Programmer
4 This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. http://www.cfhosting.com

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
s.cfm?link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. http://www.cfhosting.com

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
I can't get to the ColdFusion Administrator, I have clearly mentioned in my previous posts, I can't browse coldfusion pages. I just see a blank page. ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscrip

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
hen I view the source I see this: Just found this thread on the Macromedia Forums which dates back to 19 Dec 2002. http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3&threadid=517462&highlight_key=y&keyword1=blank%20page&keyword2=browser The p

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
I was having this problem with CFMX with Updater 3 installed, I updated to CFMX 6.1 (Redsky) and still see a blank page when I run a .cfm file on a browser. This is what I'm trying to do: .cfm file - This is a test #myName# -- When I run this file on the browser I see a blank page.

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
page. When I view the source I see this: Just found this thread on the Macromedia Forums which dates back to 19 Dec 2002. "http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3&threadid=517462&highlight_key=y&keyword1=blank%20page&keyword2=browser&quo

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
page. When I view the source I see this: Just found this thread on the Macromedia Forums which dates back to 19 Dec 2002. http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3&threadid=517462&highlight_key=y&keyword1=blank%20page&keyword2=browser The p

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
page. When I view the source I see this: Just found this thread on the Macromedia Forums which dates back to 19 Dec 2002. http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3&threadid=517462&highlight_key=y&keyword1=blank%20page&keyword2=browser The p

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
yes I've checked all coldfusion app mappings are there in the IIS Default website. ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe:

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
No, this is not the file I'm trying to execute. I see this code on every coldfusion page. If I run the coldfusion administrator (http://127.0.0.1/cfide/administrator/index.cfm), I see a blank page and this code when I view the source. I see this code for each and every coldfusion file I t

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
yes it is still running, I've even restarted my services a couple of times, it doesn't seem to parse the coldfusion code or anything for that matter. ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscrip

See a blank page when I run a .cfm file

2003-08-18 Thread ColdFusion Programmer
Can somebody please tell me how to fix this? >I have this strange problem. I'm running coldfusion MX >on my Win2k server and IIS 5.0. For some reason when I >run a .cfm file on my localhost: >http://localhost/test.cfm, all I see is a BLANK Page. >When I view th

[cftalk] calculating the date and time.

2003-07-30 Thread ColdFusion Programmer
s just a matter of paying with the individual time values to get >what you need. >The hour is always 59 minutes past the current hour minus 1. > > >Hour(DateAdd("H",-1,Now()))>),59,0)> > > > > >- Original Message - >From: ColdFusi

[cftalk] calculating the date and time.

2003-07-30 Thread ColdFusion Programmer
not quite as I was expecting. Take the current time, its 11:55 am GMT, I want the result to be (29 Jul 2003 11:00 - 30 Jul 2003 10:59) > >0)> > > > >- Original Message - >From: ColdFusion Programmer >To: CF-Talk >Sent: Wed

[cftalk] calculating the date and time.

2003-07-30 Thread ColdFusion Programmer
small errors but something like >this?? >- Original Message - >From: ColdFusion Programmer >To: CF-Talk >Sent: Wednesday, July 30, 2003 12:24 PM >Subject: [cftalk] calculating the date and time. > > >How do I get the calculate the from time to s

calculating the date and time.

2003-07-30 Thread ColdFusion Programmer
Look into DateAdd() - you can add any amount of time to a date, from >seconds to years > >If you want to remove 7 days, you can just do DateAdd("d", -7, Now()) > >Hope this helps > > > ~| Archive

cf-talk@houseoffusion.com

2003-07-25 Thread coldfusion . developer
~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Get the mailserver that powers this list at http://www.coolfusion.com Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

cf-talk@houseoffusion.com

2003-07-25 Thread coldfusion . developer
//www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

cf-talk@houseoffusion.com

2003-07-25 Thread coldfusion . developer
http://www.thenetprofits.co.uk/coldfusion/faq This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. http://www.cfhosting.com Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

CFMAIL within A CFLOOP -

2003-07-24 Thread coldfusion . developer
| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Your ad could be here. Monies from ads go to support these lists and provide more resources

A scope problem ???

2003-07-23 Thread coldfusion . developer
~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

A scope problem ???

2003-07-23 Thread coldfusion . developer
=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
olution is to use the cfauthenticate coldfusion tag. The script calls the tag and returns a success or failure message. However, I've noticed that even after stopping the SiteMinder services(s), the status message does not change to "failed", that's because coldfusion cache

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
Can you paste the code that works for you (tList.cfm)? >ColdFusion Programmer wrote: > >> I installed the support tools from the win2k CD. Passed the correct >path to the cfexecute tag. >> >> >> > timeout="2"> >> >> #proces

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
yes I do get the right output when I run it from the command line. I don't know why I don't see any output when I run the code. >ColdFusion Programmer wrote: > >> I installed the support tools from the win2k CD. Passed the correct >path to the cfexecute tag.

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
Dieten wrote: >> ColdFusion Programmer wrote: >> >>>Thanks Jochem for the code, however I can't find the file "list.exe" >or the folder "resource kit". I've got W2K Server installed on my pc. >Any ideas? >> >> Sorry, should be t

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
Thanks Jochem for the code, however I can't find the file "list.exe" or the folder "resource kit". I've got W2K Server installed on my pc. Any ideas? >ColdFusion Programmer wrote: > >> Can you please provide mor

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
even after stopping the services >> ColdFusion thinks SiteMinder is still running, I guess >> because coldfusion caches the SiteMinder policy. >> >> I want my ColdFusion script to be able to correctly >> display the SiteMinder service status. Is there a way >>

SiteMinder Service Status

2003-07-22 Thread ColdFusion Programmer
Can you please provide more details? >Allan Clarke wrote: >> Does anyone know how to programatically test if the >> SiteMinder Authentication/Authorization service is >> running. I'm currently using the cfauthenticate tag to >> do this but even after stopping t

How to Flush ColdFusion and Security Server Caches Programatically?

2003-07-21 Thread ColdFusion Programmer
Can somebody please show me how to do this? >Hi all, > >I'm using ColdFusion 5 and Advanced Security. I want >to be able to flush the SiteMinder Authorization and >Authentication Caches. The way I do it now is by going >to the CF Admin -> Security Configuration and the

Sorry Quick SQL

2003-07-16 Thread coldfusion . developer
~~~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. http://www.cfhosting.com Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Sorry Quick SQL

2003-07-16 Thread coldfusion . developer
n_events = 1 OR ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This list and

String help

2003-07-09 Thread coldfusion . developer
ks D ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Signup for the Fusion

Coldfusion MX installer problem - Please help

2003-07-02 Thread ColdFusion Programmer
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Get the mailserver that powers this list at http://www.coolfusion.com Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Coldfusion MX installer problem - Please help

2003-07-02 Thread ColdFusion Programmer
Win 2000 Server ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion

Coldfusion MX installer problem - Please help

2003-07-02 Thread ColdFusion Programmer
I modified the CFMX_Upgraded key in the registry HKEY_LOCAL_MACHINE/SOFTWARE/Allaire/Install Data/ColdFusion 5.0/CFMX_Upgraded and set the value to "no". I can now see the message window giving me the option to co-exist or upgrade. I want to upgrade to MX. After selecting the upgrade

Re: Sharing login state among applications in Intranet

2003-06-18 Thread coldfusion . developer
o go to the applications he wants. > ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk

Sharing Central Applications - Advice?

2003-06-18 Thread coldfusion . developer
/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. http://www

RE: CFLOOP, almost there

2003-06-04 Thread coldfusion . developer
anks. > > > > > ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofi

CFLOOP, almost there

2003-06-04 Thread coldfusion . developer
ion: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Host with the leader in ColdFusion hosting. Voted #1 ColdFusion host by CF Developers. Offering shared and dedicated hosting options. www.cfxhosting.com/defaul

CFLOOP, almost there

2003-06-04 Thread coldfusion . developer
/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Get the mailserver that powers this list at http://www.coolfusion.com Unsubscribe:

CFLOOP, almost there

2003-06-04 Thread coldfusion . developer
/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Host with the leader in ColdFusion hosting. Voted #1 ColdFusion host by CF Developers. Offering shared and dedicated hos

CFLOOP, through list, delimiters help

2003-06-04 Thread coldfusion . developer
alues ( '#fred1#' ) ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofi

Block Competitors from Web site

2003-05-27 Thread coldfusion . developer
s. D ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Host with the leader in ColdFusion hosting. Voted #1 ColdFusion h

Client Management ???

2003-03-21 Thread coldfusion . developer
gt; > > > #QueryAry[2]["Field4"][i]# > #QueryAry[2]["Field5"][i]# > #QueryAry[2]["Field6"][i]# > > > > > > > I would be interested in any comments on this behavior by others in the CF > community, as well as Macromed

hyperlink

2002-11-19 Thread coldfusion . developer
ethod=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Re: Ramdomizing output of elements in a LIST

2002-11-15 Thread coldfusion . developer
gt; > > > > > > > > > > > > > and ... > > > > > > > > #ListElement# > > > > > > D > > > ~~~~~| Archives: http://www.houseoffu

RE: Ramdomizing elements in a LIST

2002-11-15 Thread coldfusion . developer
~~~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Signup for the F

Ramdomizing output of elements in a LIST

2002-11-15 Thread coldfusion . developer
tprofits.co.uk/coldfusion/faq This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting.

Ramdomizing elements in a LIST

2002-11-15 Thread coldfusion . developer
?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4 FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm

Re: OT: RE: Cumulative Patch for SQL Server (Q316333) Crtical for 200 0

2002-10-04 Thread ColdFusion MX
than be raped by Bill every day" ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Structure y

Re: desktop recording software

2002-10-04 Thread ColdFusion MX
>> not >> sure. >> >> > > Ryan > > I mussed of missed that OS X feature -- can you elaborate? > > TIA > > Dick > > > ~| Archives: http://www.houseoffusion.com/cf_lists/index.c

CFCONTENT and file downloads

2002-09-26 Thread ColdFusion (CFTalk)
ignup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.c

Re: IDE for the Mac...?

2002-09-23 Thread ColdFusion MX
m. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Re: Query Values in CFLOOP thanks!

2002-08-19 Thread coldfusion . developer
> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > #srf_companyname# > > #srf_approv_eng# > >

Re: Query Values in CFLOOP _sex

2002-08-19 Thread coldfusion . developer
> #srf_approv_eng# > #srf_frn_pn# > #srf_q1_date# > #srf_q1_qnty# > #srf_q2_qnty_sex# > #srf_q3_qnty# > #srf_q4_qnty# > #srf_q5_qnty# > #srf_q6_qnty# > > > > > >

Query Values in CFLOOP _sex

2002-08-19 Thread coldfusion . developer
____ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

STUMPED! help

2002-08-18 Thread coldfusion . developer
CUSTOM***TAG***REFERENCE** THANKS D- __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://ww

Passing Variables to Custom Tags, Thanks

2002-08-16 Thread coldfusion . developer
- __ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail

cflocation with submit name value

2002-07-31 Thread coldfusion . developer
cation D- __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubsc

Re: ISAPI Error

2002-07-02 Thread Captain ColdFusion
Sorry that's not very helpful with your problem, but maybe it'll it'll give > you something to think on. > > Regards > > Stephen > > - Original Message - > From: "Captain ColdFusion" <[EMAIL PROTECTED]> > To: "CF-Talk" <[EMAI

ISAPI Error

2002-07-02 Thread Captain ColdFusion
r." "Error","TID=179","07/02/02","06:01:12","Windows NT error number 1460 occurred." Any help would be appreciated Cheers Kev __ Your ad could be here. Monies from ads go

cf-talk@houseoffusion.com

2002-06-24 Thread coldfusion . developer
t and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

RE: No Answers yet

2002-06-14 Thread coldfusion . developer
;6">Something Else > > > > Question 3: Why is Steve so > successful? > > > >SELECTED>Select an Answer > Good > Looks >value="3&

No Answers yet

2002-06-13 Thread coldfusion . developer
Product Knowledge All of the Above D- __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/c

cf-talk@houseoffusion.com

2002-05-21 Thread coldfusion . developer
.Hostmysite.com ... ? www.InterMedia.net ... ? www.primushost.com ... 2nd place, average support Thanks in advance. D- __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hos

help

2002-05-02 Thread coldfusion . developer
KS! > > D- > > ______ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

solution

2002-05-02 Thread coldfusion . developer
value is ?test=2002,05,01,14,31,32 > > > #CreateODBCDateTime(mydate)# > > WHAT AM I DOIGN WRONG HERE? > > THANKS! > > D- > > ______ Get the mailserver that powers this list at http://www.coolfusion

cf-talk@houseoffusion.com

2002-05-02 Thread coldfusion . developer
S! D- __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/inde

cf-talk@houseoffusion.com

2002-04-18 Thread coldfusion . developer
? An Array? Make Sense? D- __ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/fa

cf-talk@houseoffusion.com

2002-04-16 Thread coldfusion . developer
s all! coldfusion.developer __ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusio

cf-talk@houseoffusion.com

2002-04-02 Thread coldfusion . developer
load.att.net/webtag __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusi

RE: Q: Looping through a CSV File

2002-03-21 Thread coldfusion . developer
ntent into a database, and I am > > not sure how to do this. Any help our guidance would help? > > > > Thanks > > Jason > > > > > > > > > > __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

RE: SQL Error, I know

2002-03-19 Thread coldfusion . developer
ver Driver][SQL > > > > Server]Could not allocate space for > > > > object 'Tmp_samp_request' in database 'hititte4_db' > > > > because the 'PRIMARY' filegroup is full. > > > > > > is that db set to grow? if so, your disk is probabl

RE: SQL Error, I know

2002-03-19 Thread coldfusion . developer
t, allow it to grow... > > > > > > > > ______ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

RE: SQL Error, I know

2002-03-19 Thread coldfusion . developer
; > ______ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

RE: SQL Error, I know

2002-03-19 Thread coldfusion . developer
is full. > > is that db set to grow? if so, your disk is probably filled. if > not, allow it to grow... > > > __ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://

SQL Error, I know

2002-03-19 Thread coldfusion . developer
rs this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

cf-talk@houseoffusion.com

2002-03-15 Thread coldfusion . developer
/ 20 GB MO/XFER Instant Activation · $99/Month · Free Setup http://www.pennyhost.com/redirect.cfm?adcode=coldfusiona FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

<    3   4   5   6   7   8   9   >