RE: Val :: IncrementValue by 01 NOT 1? how?

2001-10-30 Thread Pascal Peters
If you are sure the number you increment contains 2 characters (Less then 100) you can use this code. This can have any number of dots in the project number. cfscript firstnum = ListDeleteAt(form.proj_num,ListLen(form.proj_num,.),.); lastnum = ListLast(form.proj_num,.); lastnum = lastnum + 1;

RE: Subdomain of a domain

2001-10-30 Thread Kola Oyedeji
I'm kinda interested in this as well anyone have any resources where I can read up on this? Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]]

RE: Delaying template execution

2001-10-30 Thread Michiel Boland
On Mon, 29 Oct 2001, Rick Osborne [Mojo] wrote: Date: Mon, 29 Oct 2001 18:05:35 -0500 From: Rick Osborne [Mojo] [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: Delaying template execution Brian Ferrigno said: the code does work by creating a

RE: Subdomain of a domain

2001-10-30 Thread Joseph DeVore
Are you interested in doing this on Windows/IIS? It's easy if you run your own DNS. I can tell you how to do it in less than 5 minutes. Let me know if you want to know how. Joseph DeVore VeloxWeb Technologies -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] Sent:

RE: IVR solutions and voice interfaces onto web applications

2001-10-30 Thread Nick Betts
Cheers Eric. It appears the States are much furtehr forward with this technology than us Brits... Thanks for the links I will keep my ear to the ground ; ) nick -Original Message- From: Eric Dawson [mailto:[EMAIL PROTECTED]] Sent: 29 October 2001 16:20 To: CF-Talk Subject: Re: IVR

Re: Val :: manipulating strings as numbers

2001-10-30 Thread Stephen Moretti
CFSET Proj_Num2 = (#firstnumber#.#lastnumber#) cfset Proj_Num2 = Val(firstnumber.lastnumber) ;o) Regards Stephen ~~ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

Abject Apologies

2001-10-30 Thread Philip Arnold - ASP
I have to apologise to everybody who sent email to Talk and Community while I was at the DevCon and received an Out Of Office message from me I left instructions that my machine was under no circumstances was to have an OOO auto-responder set-up, but one of the girls here was being a bit

Re: Dynamically inserting text into Flash via Cold Fusion

2001-10-30 Thread Bud
On 10/29/01, [EMAIL PROTECTED] penned: I looked there, but none of the samples sufficiently explain the process or methodology behind how this process works. They offer ready made examples, but now the expo. on how it works. Any addl. pointers would be appreciated. It's pretty easy once you do

Re: Val :: IncrementValue by 01 NOT 1? how?

2001-10-30 Thread Stephen Moretti
Paul, Can you explain from start to finish exactly what it is that you are trying to do, please? I've seen various posts for different bits of this problem on various lists and I'm not sure how the whole thing fits together. If you could describe exactly what it is that you have and what you

Re: *** Complicated SQL riddle

2001-10-30 Thread Stephen Moretti
Jason, NTM is the better method, but if you're looking for a quick and dirty solution then write yourself a recursive tag. Just be careful not to get stuck in a loop and bring your server down tho. ;o) What you do is write a tag that you can pass a parent ID to. In the tag you : 1) do a

Using CFCONTENT with Office XP

2001-10-30 Thread A . Little
Hi All, Has anyone else come across the following problem... I'm using cfcontent to display a powerpoint presentation in the browser. This method has worked fine so far, but we recently tried it on a W2K machine with Office XP installed and instead of displaying the presentation, a presentation

RE: cf excel formatting problem

2001-10-30 Thread Nathan Shaw
This is all being done dynamically. Yes, if I bring it in manually into Excel, it is not a problem at all. What I need to know is: 1) how to tell Excel to treat the zip code as a text field OR 2) how to trick Excel into thinking the zip code is a text field. Nate

RE: *** Complicated SQL riddle

2001-10-30 Thread Jason Blum
Am going to try to pick up a copy of Celko's book. Not sure how, but I think I have something that works: Had to include a column in the table called level, which then allows me to accordingly indent each row that is outputted from this query: select * from TBL_EMPLOYEE

RE: Subdomain of a domain

2001-10-30 Thread Kola Oyedeji
Joseph please. My boss explained it to me and showed it to me recently but it all didnt click with me. Thanks Kola Oyedeji Web developer Macromedia Certified Advanced ColdFusion 5 Developer http://www.Alexandermark.com (+44)020-8429-7300 -Original Message- From: Joseph DeVore

Re: *** Complicated SQL riddle

2001-10-30 Thread Deanna Schneider
Anyone care to work on porting these stored procedures to Oracle? I'm willing to work on it, but would love some help. -Deanna Deanna Schneider Interactive Media Developer [EMAIL PROTECTED] ~~ Get the mailserver that powers this list at

RE: cf excel formatting problem

2001-10-30 Thread Daniel Lancelot
Hi are you creating a csv? If so, enclosing the field in double quotes works fine... e.g. HouseNum,ZIP,Telephone 123,01234,01234 567890 HTH Dan -Original Message- From: Nathan Shaw [mailto:[EMAIL PROTECTED]] Sent: 30 October 2001 13:07 To: CF-Talk Subject: RE: cf excel formatting

Re: Running Requests?

2001-10-30 Thread Chris Norloff
You can turn on debugging and see which templates processed for each request. I'm not sure if you can monitor this from the server side. Chris Norloff -- Original Message -- from: Tony Schreiber [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] date: Fri,

Re: Macromedia becoming another Microsoft

2001-10-30 Thread Alexis Maldonado
Capitalism gets bad when they let companies like MS get away with monopoly just because they are the lead software provider and provides ALOT of income plus other UNKNOWN goverment issues. like uhmm maybe their source code is s secret because uhmn.. maybe they can put whatever they want in it

Re: *** Complicated SQL riddle

2001-10-30 Thread Deanna Schneider
Jason, It looks like you're using Oracle, and if so, you don't need to have a level column in the table, as level is a psuedo-column available to you when you use connect by...prior. However, you'll discover that using connect by...prior only works if your data in the table is already correctly

RE: cf excel formatting problem

2001-10-30 Thread cf refactoring
Are you on an IE-only platform? If yes, you can try try sending an HTML table to Excel instead of a .csv. Excel will read in an HTML table and preserve formatting information so you can get really fancy if you want. --- Nathan Shaw [EMAIL PROTECTED] wrote: This is all being done dynamically.

RE: Val :: IncrementValue by 01 NOT 1? how?

2001-10-30 Thread Paul Ihrig
sure. you can view a test here http://www.columbus.nbbj.com/Project_Set_Up/Default.CFM select: ihrig paul then 2030 then select at the bottom the rasdio for Billable (Sub No. to Existing Project) and select a number to append i think i have it worked out now though. thank you all -paul

RE: cf excel formatting problem

2001-10-30 Thread Aaron Rouse
This also works in Netscape, we do it with NS 4.7x all the time. I think you can transfer more styles(CSS) via IE over NS. If you do it, one thing we have run into is when you include your style sheets via a link tag, for whatever reason NS 4.7x on Win2k will first post a error msg to the style

RE: *** Complicated SQL riddle

2001-10-30 Thread Jason Blum
Hey Deanna, I know - I was really disappointed when I found I couldn't order by in the select statement. But then I remembered the QoQ feature in CF 5 So I do a prior query ordering the entire table alphabetically and then run this second query on it. It works beautifully! -J --

CFGRAPH???

2001-10-30 Thread Kelly Matthews
Ok has anyone had problems with CFGRAPH? Here is what's happening. We have a DEV and production server. CFGRAPH works like a charm on DEV, yet on production it just hangs and eventually times out. The service is running on both servers. Has anyone run into this? If so any suggestions?

Re: *** Complicated SQL riddle

2001-10-30 Thread Deanna Schneider
Good point. We're still using 4.5. Unlucky us. -d Deanna Schneider Interactive Media Developer [EMAIL PROTECTED] ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community.

RE: CF Return Symbol

2001-10-30 Thread Aidan Whitehall
Would anyone here happen to know about how I can insert a return into a document with CF without using P or BR? I'm sending out a newsletter via email, but it's not in HTML format so I have to strip out all the P's and BR's which I've done. However I don't know what to replace them with.

Re: CFGRAPH???

2001-10-30 Thread Howie Hamlin
What web server? I'm asking because I had to make a workaround for WebSite. Regards, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server Find out how iMS Stacks up to the

RE: CFGRAPH???

2001-10-30 Thread Kelly Matthews
IIS just like our Dev server. -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 10:32 AM To: CF-Talk Subject: Re: CFGRAPH??? What web server? I'm asking because I had to make a workaround for WebSite. Regards, Howie Hamlin - inFusion

RE: cf excel formatting problem

2001-10-30 Thread Stephen Hait
FWIW, we create Excel spreadsheets by sending table data and it works fine in NS4.7, too. The main difference is that in IE, Excel opens in the browser whereas in NS the user is prompted to either save or view it. If they choose to view it, a new instance of Excel is opened and the

RE: CFGRAPH???

2001-10-30 Thread Tim Stadinski
are your configurations the same on both machines? i would verify that first before worrying about workarounds. just my 2 bits tim -Original Message- From: Kelly Matthews [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 10:35 AM To: CF-Talk Subject: RE: CFGRAPH??? IIS just

*RESOLVED* - RE: Subdomain of a domain

2001-10-30 Thread Larry Juncker
Thanks to all who responded. I have gotten this resolved and working perfectly. Larry Juncker Senior Cold Fusion Developer Heartland Communications Group, Inc. [EMAIL PROTECTED] -Original Message- From: Kola Oyedeji [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 7:27 AM To:

RE: CFGRAPH???

2001-10-30 Thread Kelly Matthews
Yep already did that. -Original Message- From: Tim Stadinski [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 10:40 AM To: CF-Talk Subject: RE: CFGRAPH??? are your configurations the same on both machines? i would verify that first before worrying about workarounds. just

Re: CFGRAPH???

2001-10-30 Thread Howie Hamlin
Do you have your server set to make sure that files exist before calling CF? If so, try turning that off. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - The Intelligent Mail Server Find out how iMS

Stats and Uptime Monitoring

2001-10-30 Thread Duane Boudreau
Hi All, Can anyone suggest a good stats analyzer and uptime monitoring tool? TIA, ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

SQL Server 2000 desktop version.

2001-10-30 Thread Bosky, Dave
Do you need a license to install the desktop version of SQL Server 2000? Thanks. Dave ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community.

RE: Stats and Uptime Monitoring

2001-10-30 Thread Duane Boudreau
I should have added this will be going on a Win2k box -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 11:11 AM To: CF-Talk Subject: Stats and Uptime Monitoring Hi All, Can anyone suggest a good stats analyzer and uptime monitoring

Re: *RESOLVED* - RE: Subdomain of a domain

2001-10-30 Thread Matt Robertson
Not me, I'm not smart enough ;D. I do my own dns and can set up a subdomain easily on that side. However it looks to me like the entry in IIS is in one of two places. Came up empty looking thru the MS KB, although I'm sure its in there I just couldn't find it. A quickee example would be much

RE: *RESOLVED* - RE: Subdomain of a domain

2001-10-30 Thread Larry Juncker
In IIS, I had an existing domain called aljcompserv.com This is accessible as www. or just the domain name I created a new website in IIS called LionsDistrict9x7.aljcompserv.com and pointed the home directory for this site to my folder where this domain existed. Then click on Advanced in

RE: Stats and Uptime Monitoring

2001-10-30 Thread Scott Mulholland
check out cricket. -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 11:11 AM To: CF-Talk Subject: Stats and Uptime Monitoring Hi All, Can anyone suggest a good stats analyzer and uptime monitoring tool? TIA,

LT Function

2001-10-30 Thread John McCosker
Has anyone noticed that the LT function seems to not work sometimes in cf 5.0 I'm checking values coming from a query and doing a certain procedure if true compared to a given value, and guess what its not working. Anyone had this problem? ~~

Re: LT Function

2001-10-30 Thread Critz
oi John!! are you sure that your values are as you expect them? We use LT for many situations and have run into no problems. -- Critter, MMCP Certified ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion - Tuesday, October

RE: Stats and Uptime Monitoring

2001-10-30 Thread Duane Boudreau
Do you have a link? -Original Message- From: Scott Mulholland [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 11:43 AM To: CF-Talk Subject: RE: Stats and Uptime Monitoring check out cricket. -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent:

RE: Stats and Uptime Monitoring

2001-10-30 Thread Larry Juncker
We use LiveStats from Freshwater, and it seems to work great. Been using it for 2 years and are just now starting our system upgrades to Win2K, however Freshwater maintains that the system will work fine. http://www.freshwater.com Larry Juncker Senior Cold Fusion Developer Heartland

RE: LT Function

2001-10-30 Thread John McCosker
The values I am checking are int Datatypes, this is exactly what I'm doing CFIF checkDay EQ day(q_createRecordSet.dt) CFIF q_createRecordSet.INFLOW NEQ CFSET mnInf=rtrim(q_createRecordSet.INFLOW) CFSET mnInfDt=q_createRecordSet.dt

RE: LT Function

2001-10-30 Thread John McCosker
I should have also mentioned that this is inside a Query loop -Original Message- From: John McCosker [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 5:02 PM To: CF-Talk Subject: RE: LT Function The values I am checking are int Datatypes, this is exactly what I'm doing CFIF

Re: Stats and Uptime Monitoring

2001-10-30 Thread Alex
what platform? what are you monitoring? On Tue, 30 Oct 2001, Duane Boudreau wrote: Hi All, Can anyone suggest a good stats analyzer and uptime monitoring tool? TIA, ~~ Get the mailserver that powers this list at http://www.coolfusion.com

Re: LT Function

2001-10-30 Thread Stephen Moretti
John, [snip] CFSET mnInf=rtrim(q_createRecordSet.INFLOW) [snip] CFIF rtrim(q_createRecordSet.INFLOW) LT mnInf You realise that rtrim(q_createRecordSet.INFLOW) will always be equal to mnInf??? Regards Stephen ~~ Get the mailserver that

Strange error in CF 5

2001-10-30 Thread Bill Killillay
-2147417848 (0x80010108) Of late I have started getting that on one or two sites. Never at the same time, only one site, but it takes a reboot to clear it. Any ideas what's causing it and how to fix it? Thanks, Bill K. ~~ Your ad could be here.

RE: LT Function

2001-10-30 Thread John McCosker
Stephen I could not see the woods for the trees, thank you.. -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 5:17 PM To: CF-Talk Subject: Re: LT Function John, [snip] CFSET mnInf=rtrim(q_createRecordSet.INFLOW) [snip] CFIF

Format for creating a one-off schedule

2001-10-30 Thread Aidan Whitehall
Does anyone know the syntax for creating a one-off scheduled event? If you create an event via the ColdFusion Administrator, it's possible to set it up as one-off, but I need to be able to do this programmatically. Also, any idea why this code isn't creating a scheduled event? It doesn't throw

RE: cf excel formatting problem

2001-10-30 Thread Eric Dawson
I am going for lunch... but will continue playing after. http://139.142.208.132/test_2001/ExcelTest/ I see your woes ... Eric Dawson From: Nathan Shaw [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: cf excel formatting problem Date: Tue, 30 Oct 2001

LDAP and username/password

2001-10-30 Thread scooter pie
Hi I'm trying to do an ldap lookup to authenticate a user. I am using the username/password attributes in the ldap query but I get the error: CFLDAP Strong authentication required So then I tried adding in the SECURE attribute with CFSSL_BASIC but I don't know what to use for the

RE: LT Function

2001-10-30 Thread Dave Watts
The values I am checking are int Datatypes, this is exactly what I'm doing CFIF checkDay EQ day(q_createRecordSet.dt) CFIF q_createRecordSet.INFLOW NEQ CFSET mnInf=rtrim(q_createRecordSet.INFLOW) CFSET mnInfDt=q_createRecordSet.dt

RE: LT Function

2001-10-30 Thread Dunwiddie, Bruce
q_createRecordSet.INFLOW NEQ dunno about the rest, but this should be NOT q_createRecordSet.INFLOW IS -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 12:36 PM To: CF-Talk Subject: RE: LT Function The values I am checking are int

RE: SQL Server 2000 desktop version.

2001-10-30 Thread Mike Craig
There is a desktop version? -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 11:10 AM To: CF-Talk Subject: SQL Server 2000 desktop version. Do you need a license to install the desktop version of SQL Server 2000? Thanks. Dave

RE: *** Complicated SQL riddle

2001-10-30 Thread Jeremy Allen
These are known Oracle tree extensions. They will work well, but it is NOT portable. Also connect by prior is a kind of limited hack for working with trees. It will work as long as you stick with oracle. This subject is elaborated upon some in the Celko book. (I just like the book, don't take

RE: SQL Server 2000 desktop version.

2001-10-30 Thread krisch
Yes, it's actually called Personal Edition. I'm not sure of the licencing issues. I would guess that there is at least one licence included since it comes with the server edition. FWIW, Kristine C. Hege [EMAIL PROTECTED] Database Applications SpecialistPhone: (802)

RE: SQL Server 2000 desktop version.

2001-10-30 Thread Costas Piliotis
It's called msde. It comes with Office 2000/XP. Not Really a desktop edition but rather a scaled down implementation of SQL Server. As far as I know, if you have an Office 2000/XP licence, you have a MSDE licence as well. -Original Message- From: Mike Craig [mailto:[EMAIL PROTECTED]]

Why Is and not NEQ [Was: LT Function]

2001-10-30 Thread Critz
oi Bruce!! dunno about the rest, but this should be NOT q_createRecordSet.INFLOW IS why should it be like that? I was under the impression the IS has been deprecated, and that it is similar to a like and thus has a longer processing time as opposed to EQ and NEQ (and yes I do realise that

RE: SQL Server 2000 desktop version.

2001-10-30 Thread Dave Watts
It's called msde. It comes with Office 2000/XP. Not Really a desktop edition but rather a scaled down implementation of SQL Server. As far as I know, if you have an Office 2000/XP licence, you have a MSDE licence as well. MSDE isn't the same as SQL Server Desktop Edition. With SQL

RE: Why Is and not NEQ [Was: LT Function]

2001-10-30 Thread Dave Watts
why should it be like that? I was under the impression the IS has been deprecated, and that it is similar to a like and thus has a longer processing time as opposed to EQ and NEQ (and yes I do realise that it is only milliseconds...) Neither operator is deprecated, and to the best of

PRINTING-SOME WORDS DROP

2001-10-30 Thread jgrubb
I have an application which dynamically generates a web page, based on form inputs and queries. Some of the viewable words on the page, which happen to be variables like CFOUTPUT#var#/CFOUTPUT, show up fine on the displayed page in both IE and NS, but disappear when printed on SOME printers.

RE: Why Is and not NEQ [Was: LT Function]

2001-10-30 Thread John Cummings
I tend to agree that NEQ if fine. Just my two cents. J. -Original Message- From: Critz [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 1:58 PM To: CF-Talk Subject: Why Is and not NEQ [Was: LT Function] oi Bruce!! dunno about the rest, but this should be NOT

RE: SQL Server 2000 desktop version.

2001-10-30 Thread Mike Craig
oh...i've seen the msde stuff...not real impressed but a good desktop mechanism...I was hoping for a full blown version of the database server for a workstation like they used to have with 6.5 and 7.0. -Original Message- From: Costas Piliotis [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

RE: SQL Server 2000 desktop version.

2001-10-30 Thread Dave Watts
oh...i've seen the msde stuff...not real impressed but a good desktop mechanism...I was hoping for a full blown version of the database server for a workstation like they used to have with 6.5 and 7.0. Well, they do have that. If you just want to install SQL Server on your workstation for

Re: Why Is and not NEQ [Was: LT Function]

2001-10-30 Thread Stephen Moretti
Critz, dunno about the rest, but this should be NOT q_createRecordSet.INFLOW IS why should it be like that? I was under the impression the IS has been deprecated, and that it is similar to a like and thus has a longer processing time as opposed to EQ and NEQ (and yes I do realise that

RE: LT Function

2001-10-30 Thread Dave Watts
q_createRecordSet.INFLOW NEQ dunno about the rest, but this should be NOT q_createRecordSet.INFLOW IS The two are identical, and the usual operator syntax would be IS NOT, rather than NOT ... IS. These statements would all perform the same test: cfif a NEQ b cfif a IS NOT b cfif NOT a

RE: SQL Server 2000 desktop version.

2001-10-30 Thread Mike Craig
Ok...let's say I believe you...where is the developers edition? If you try installing 2000 on a Windows 2000 machine the first thing it tells you is that you cannot install it on workstation. Oh...and so no one thinks this is an off-topic post...boy do I love that ColdFusion stuff...especially

Upgrading to XP?

2001-10-30 Thread Michael Bruce
Just thought I would share something with everyone.. I just upgraded to Windows XP Home edition (because I'm cheap) from Win98 and while installing I actually read the 10 page manual (only because I was bored) and it said that PWS is no longer available and if you want a web server you need

UDF's are GREAT

2001-10-30 Thread Kelly Matthews
Ok first time I used a UDF... I had written a program a while back for the company I work for. We survey airports to get their yearly rates charges, over 200 questions all Numerical figures. Anyway in the report I built last year a page spit out the Standard Deviation, median and mean of all the

Re: Upgrading to XP?

2001-10-30 Thread Trishan Singh
Yep... I found the same thing out after installing XP Home Fortunately we are a MS Solution Provider errr something so we have both Home and Pro just a matter of installing one or the other. Im sorry man.. I wish i could of told ya that before. Trishan Singh MMCP/ACP/CCFD Paracom

Really delayed evaluation

2001-10-30 Thread Won Lee
Hi guys. Was hoping that someone might know how to do this. I have a survey-scoring module. They want the ability for the scores to be dynamically displayed (meaning the overall scores should not be scored). Everything is ok except this. Each survey has several categories. Each category has a

RE: SQL Server 2000 desktop version.

2001-10-30 Thread Dave Watts
Ok...let's say I believe you...where is the developers edition? If you try installing 2000 on a Windows 2000 machine the first thing it tells you is that you cannot install it on workstation. Uh, you have to BUY it. It's a separate product, to the best of my knowledge. If you're an MSDN

RE: UDF's are GREAT

2001-10-30 Thread Raymond Camden
CF_ShamelessPlug I assume you have visited www.cflib.org?? /CF_ShamelessPlug -Raymond Camden Ok first time I used a UDF... I had written a program a while back for the company I work for. We survey airports to get their yearly rates charges, over 200 questions all Numerical figures.

PRINTING-SOME WORDS DROP

2001-10-30 Thread jgrubb
I have an application which dynamically generates a web page, based on form inputs and queries. Some of the viewable words on the page, which happen to be variables like CFOUTPUT#var#/CFOUTPUT, show up fine on the displayed page in both IE and NS, but disappear when printed on SOME printers.

RE: UDF's are GREAT

2001-10-30 Thread Kelly Matthews
Of course I did :) -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 2:51 PM To: CF-Talk Subject: RE: UDF's are GREAT CF_ShamelessPlug I assume you have visited www.cflib.org?? /CF_ShamelessPlug -Raymond Camden Ok first time I used

RE: Really delayed evaluation

2001-10-30 Thread Dave Watts
I have a survey-scoring module. They want the ability for the scores to be dynamically displayed (meaning the overall scores should not be scored). Everything is ok except this. Each survey has several categories. Each category has a score that I calculate. They also want the overall score

Re: UDF's are GREAT

2001-10-30 Thread Craig Fisher
umm... I believe the syntax is: #ShamelessPlugFormat(I assume you have visited www.cflib.org??)# - Original Message - From: Raymond Camden [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 30, 2001 1:50 PM Subject: RE: UDF's are GREAT CF_ShamelessPlug I assume

RE: UDF's are GREAT

2001-10-30 Thread Raymond Camden
Heh, good one. On a serious note, for anyone who is interested, CFLIB.org now has over 250 UDFs released. All are guaranteed as bugfree as WinXP! -RC From: Craig Fisher [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 3:03 PM To: CF-Talk Subject: Re: UDF's are GREAT umm... I

RE: Really delayed evaluation

2001-10-30 Thread Rick Osborne [Mojo]
How are you summing the data? Is it coming from a query? One of the hacks I use quote a bit is basically a one-line QuerySum() function: CFSET Total=ArraySum(ListToArray(ValueList(Query.Column))) I tend to find it takes a fraction of the time that looping over the query does. If your

CFSchedule - Ideas?

2001-10-30 Thread ccook22
All - A better question might be, when using SSL or an HTTPS request how have you scheduled templates to auto-execute in the middle of the night. Thank, CC -- Forwarded by Casey C Cook/TMG/CSC on 10/30/2001 02:17 PM --- Casey C Cook/TMG/CSC

Version Control Tip

2001-10-30 Thread Brunt, Michael
From time to time there have been posts on CFTalk regarding version control products. Just thought I'd let everyone know that we started using MKS http://www.mks.com/ it integrates very tightly with CFStudio. Without any prompting we got a CFStudio Icon on the MKS Toolbar. Just thought this

RE: SQL Server 2000 desktop version.

2001-10-30 Thread Costas Piliotis
Ahhh... Ooops... I stand corrected. There's a first for everything =) Here's Microsoft's link to a comparison: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/architec/8_ ar_sa2_9gz4.asp -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

RE: UDF's are GREAT

2001-10-30 Thread Jay Sudowski - Handy Networks LLC
LOL. Bug free as XP. That makes me worry ;-) - Jay -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 3:07 PM To: CF-Talk Subject: RE: UDF's are GREAT Heh, good one. On a serious note, for anyone who is interested, CFLIB.org now has

Re: UDF's are GREAT

2001-10-30 Thread Michael T. Tangorre
thats scary... I managed to bring XP Pro to its knees about 5 times in the last three days. :-) - Original Message - From: Jay Sudowski - Handy Networks LLC [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 30, 2001 3:59 PM Subject: RE: UDF's are GREAT LOL. Bug

cfservlet problem -- server local.properties in JRun overwritten

2001-10-30 Thread Nick Gompper
I've been experimenting with the CFSERVLET tag and have successfully enabled CF to run servlets from an external machine within the default application of JRun's default server. In order to make this connection, I modified the local.properties file of the default server to specify

RE: cfservlet problem -- server local.properties in JRun overwrit ten

2001-10-30 Thread Dave Watts
After changing this line in local.properties, the CFSERVLET tag worked, but in two occasions since then JRun has chosen to overwrite the line with the original default version. It is not clear to me why this has occurred. I'm pretty ignorant about most JRun issues, so this is a shot in the

RE: SQL Server 2000 desktop version.

2001-10-30 Thread Jeffry Houser
I have one more thing to add to all of this. ( It is in-line) At 12:55 PM 10/30/2001 -0800, you wrote: Ahhh... Ooops... I stand corrected. There's a first for everything =) Here's Microsoft's link to a comparison:

Re: Command Line CF?

2001-10-30 Thread Neil H.
Can you pass URL variables? Thanks, Neil - Original Message - From: Dave Watts [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, October 15, 2001 10:35 AM Subject: RE: Command Line CF? C:\CFUSION\BIN\CFML.EXE is a cmd line engine that runs coldfusion templates. It's

RE: SQL Server 2000 desktop version.

2001-10-30 Thread Costas Piliotis
And for the most part, it looks like MSDE and Personal Edition are the same except the Desktop Edition comes with the Tools (EM, QA, Profiler). Desktop Engine is just the database. So I don't stand corrected :-) -Original Message- From: Costas Piliotis Sent: Tuesday, October 30,

RE: SQL Server 2000 desktop version.

2001-10-30 Thread Mike Craig
Dave Watts of figleaf was correct in two things. You can get the developers edition via an MSDN subscription or go to http://www.pparadise.com/ and search for SQL Server Developer Edition...there are actually a couple of them. Thanks Dave! -Original Message- From: Jeffry Houser

RE: Command Line CF?

2001-10-30 Thread Dave Watts
Can you pass URL variables? Yes: SET QUERY_STRING=var1=Foovar2=Bar SET CF_TEMPLATE_PATH=c:\inetpub\wwwroot\myfile.cfm C:\CFUSION\BIN\CFML.EXE Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ~~

Studio 5 Install

2001-10-30 Thread Matthew Fusfield
Has anyone successfully installed Studio 5? We purchased it from the Macromedia online store. It downloaded successfully, however, the installer insists that I need to acquire a license and opens a webpage on ziplock.macromedia.com - however, the page returns a 404 Not Found and the installer

RE: LT Function

2001-10-30 Thread John McCosker
Cheers all..!! I'm writing my first simple custom tag that is tailored to our products. I'm going to post the code on the list later so it can be ridiculed, if you want to that is. Its helpful seeing were you can improve.. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]]

RE: SQL Server 2000 desktop version.

2001-10-30 Thread Dave Watts
SQL Server 2000 will not install on Windows 9x. You must have either NT or 2000. You can install the client tools, such as Enterprise Manager and Query Analyzer. But, the Server portion will not work. SQL Server 97 worked great. 2000 was a no go. Au contraire:

RE: Studio 5 Install

2001-10-30 Thread Matthew Fusfield
Did you get it from the Macromedia store? Did it open a IE window during the install? Thanks, Matt -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 30, 2001 4:26 PM To: CF-Talk Subject: Re: Studio 5 Install I have successfully installed it

learning about SQL Server

2001-10-30 Thread Seamus Campbell
I need to learn how to use SQL Server for a website I am building. Do I need to buy the SQL Server Developer Edition, or is there another way. I know you can upgrade an access database (well I vaguely remember reading that you can do this somewhere) but I presumed it would be better to

Re: Studio 5 Install

2001-10-30 Thread Michael T. Tangorre
yes and no. We downloaded from there, and the installer initialized and after a box or two we were prompted for the serial. - Original Message - From: Matthew Fusfield [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 30, 2001 4:23 PM Subject: RE: Studio 5 Install

RE: *RESOLVED* - RE: Subdomain of a domain

2001-10-30 Thread Joseph DeVore
Matt, I'm not sure if you got the answer you needed. If you already have DNS setup correctly all you need to do now is create the virtual domain in IIS 1. Create a new website in IIS as you normally would 2. Right click the new website and go to properties 3. On the website tab, in the

Re: learning about SQL Server

2001-10-30 Thread Michael T. Tangorre
I was in your same boat... I bought a few books and read away, and when I saved the money up I bought the cheapest addition (whatever that was)... and applied my readings.. - Original Message - From: Seamus Campbell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October

  1   2   >