RE: British Pound symbol in a .txt upload file

2002-05-01 Thread Rich Wild
I wouldn't worry too much, we'll be using Euros (EUR) in not too long a time now course, you'll have to deal with that then too! -Original Message- From: Casey C Cook [mailto:[EMAIL PROTECTED]] Sent: 30 April 2002 21:19 To: CF-Talk Subject: RE: British Pound symbol in a .txt

RE: web hosts

2002-05-01 Thread Eric J Hoffman
www.Cfdynamics.com All the support and solutions you'll need. Clients have switched and been oh, so happy. :-) Regards, Eric J. Hoffman Director of Internet Development DataStream Connexion, LLC (formerly Small Dog Design) -Original Message- From: Jennifer Larkin [mailto:[EMAIL

Re: web hosts

2002-05-01 Thread Tim Painter
Jennifer, I have a shared host at Crystaltech for over a year now and I have never had a problem with them. I only had to email support once about something and they had responded back within an hour. Whenever any maintenance work or scheduled downtime needs to be done, they inform you

Html to PDF, Excel, Word formats

2002-05-01 Thread YC Nyon
Hi, What are the options of converting a html file on the fly to PDF, Excel and Word using CF ? Thanks. Nyon __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

RE: Html to PDF, Excel, Word formats

2002-05-01 Thread Erika L Walker-Arnold
www.cfcomet.com will give you boundless options. Macromedia's Developer's Exchange is another source of options. Erika | -Original Message- | From: YC Nyon [mailto:[EMAIL PROTECTED]] | | Hi, | | What are the options of

help with unsubscribing

2002-05-01 Thread Judy Mardar
Can someone please tell me how to unsubscribe to this list? I have tried everything but it won't let me. I have sent a message with the following in the body of the message: unsubscribe cf-talk [EMAIL PROTECTED] I have sent a message with the following in the body: unsubscribe cf-talk

RE: help with unsubscribing

2002-05-01 Thread Erika L Walker-Arnold
There's a link at the bottom of every message: http://www.houseoffusion.com/index.cfm?sidebar=lists Going to the CF-Talk page gets you this: http://www.houseoffusion.com/hof/lists/CF_Talk.cfm Choose the unsubscribe option, enter in the email address you are subscribed with, and away you go.

Re: web hosts

2002-05-01 Thread Thane Sherrington
At 10:01 PM 30/04/02 -0700, Jennifer Larkin wrote: One of my clients is trying to decide upon a new webhost. The two that we're looking at are media3 and CrystalTech. We've heard good things about I'm very happy with CrystalTech. Their techs reply to e-mails within the hour (and normally

Re: help with unsubscribing

2002-05-01 Thread tomo cf_talk
this was at the bottom of your mail: __ 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/

RE: web hosts

2002-05-01 Thread Ryan Pieszak
I have to second this opinion. I'm with HostMySite, and I've been extremely satisfied with their support. Very helpful. -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 2:06 AM To: CF-Talk Subject: Re: web hosts I know it is not on your

Re: Dollarformat -vs- Numberformat

2002-05-01 Thread Hatton Humphrey
Thanks for the reply, I ended up finding the cluprit in a difference of SQL statements... one page had select round(line.price * line.rec_qty) and another had just sum(line.price * line.rec_qty)... the difference ended up being on the SQL site of things. Thanks again! Hatton Bud wrote: On

Re: web hosts

2002-05-01 Thread Paul Giesenhagen
Yes, we run on a dedicated server with them but with our other clients accounts on shared systems with them and dealing with their tech support it is still CRYSTALTECH period. :) Paul Giesenhagen QuillDesign http://ww.quilldesign.com SiteDirector Commerce Builder - Original Message -

RE: MX and CustomTags again

2002-05-01 Thread Shawn McKee
Server Details Server Product Neo Version 6,0,0,42977 Edition Enterprise Serial Number Operating System UNIX OS Version 2.4.9-21 -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 5:25 PM

sql query

2002-05-01 Thread Joshua Tipton
I would like to run an update query to take a 9 digit social security number and place the dashes in the correct spots. IE.. 999-99-. Can anyone help me with this? Joshua Tipton __ Structure your ColdFusion code with

RE: Html to PDF, Excel, Word formats

2002-05-01 Thread Jeff Brown
I recommend checking out CF_HTML2PDF3 (can be found in the DevEx), a free Custom Tag that generates PDF files. Tried and tested, and very easy to implement. This tag utilizes HTMLDOC.EXE, and you must have CFEXECUTE access on your server. My only gripe is that it does not support CSS. v/r,

Re: sql query

2002-05-01 Thread BEN MORRIS
All you need is the Insert() function, something like: SSN = Insert(-, SSN, 3); SSN = Insert(-, SSN, 6); Joshua Tipton [EMAIL PROTECTED] 05/01/02 09:14AM I would like to run an update query to take a 9 digit social security number and place the dashes in the correct spots. IE.. 999-99-.

RE: sql query

2002-05-01 Thread Jeff Brown
The example below seems easier, but you could also: cfset ssn_formatted = Left(ssn, 3)-Mid(ssn, 4, 2)-Right(ssn, 3) v/r, Jeff -Original Message- From: BEN MORRIS [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 9:20 AM To: CF-Talk Subject: Re: sql query All you need is the

IsDefined and Form[testvar] question

2002-05-01 Thread Thane Sherrington
If I'm using code like this: cfloop index=QuestionNumber from=1 to=#Form.TotalQuestions# step=1 CFSET Form.NumericAnswer=Form[QuestionQuestionNumber] /CFLOOP Is there a way to use IsDefined to check to see if the form variable has been defined? I tried CFIF

SQL Server permission question

2002-05-01 Thread Tony_Petruzzi
does nayone know of a way to allow a user to only have permission to execute stored procedures in sql server and not select, update, insert, delete permissions directly? i want people to only be able to access the data in my database from a sp and not directly using select, update, insert,

RE: SQL Server permission question

2002-05-01 Thread Andy Ewings
Yup - in SQL server you want to create a user that only has permissions to execute SP's. The DSN you set up that the webser uses needs to login using this user. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: 01 May 2002 14:37 To: CF-Talk Subject: SQL Server

Re: SQL Server permission question

2002-05-01 Thread Bruce Sorge
If you are doing this via the web, then you can use the CF Administrator to do this. Select the DSN that you want to execute only teh Sp, make sure that you chek the Stored Procedures check box. If you are talking about using enterprise manager, then you would need to create a login for the

RE: IsDefined and Form[testvar] question

2002-05-01 Thread Raymond Camden
You can either do: isDefined(form.question#questionnumber#) or structKeyExists(form,question#questionnumber#) I prefer the first method. === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email:

RE: SQL Server permission question

2002-05-01 Thread Andy Ewings
Oh - forgot to mention - every SP you create you then need to put a Grant Execute. to that user (or group) -Original Message- From: Andy Ewings Sent: 01 May 2002 14:44 To: '[EMAIL PROTECTED]' Subject: RE: SQL Server permission question Yup - in SQL server you want to create a user

RE: IsDefined and Form[testvar] question

2002-05-01 Thread Thane Sherrington
At 09:44 AM 01/05/02 -0400, Raymond Camden wrote: You can either do: isDefined(form.question#questionnumber#) or structKeyExists(form,question#questionnumber#) I prefer the first method. Thanks Raymond. You are saving me from using evaluate again. I really appreciate all your help. T

Repost + more info -cfsets and activepdf

2002-05-01 Thread Janine Jakim
REPOST PART I have a page with hundreds of cfsets in it--we are using it to kick out report cards for elementary schools. Each grade card will have over 250 boxes that need filled in using ActivePDF. Unfortunately, when we run a batch for a class or grade level the cold fusion server cpu hits

installing application on a linux box

2002-05-01 Thread Steven Dworman
I only have limited experience with Coldfusion on a Unix/Linux platform. The network department at a client site has CF installed on their webserver, so that side is settled. Is there a checklist out there of what I should test and/or change in my code so that the application can be installed

Re: Html to PDF, Excel, Word formats

2002-05-01 Thread Alex
I take it you already searched on google? On Wed, 1 May 2002, YC Nyon wrote: Hi, What are the options of converting a html file on the fly to PDF, Excel and Word using CF ? Thanks. Nyon __ Get the mailserver

Re: sql query

2002-05-01 Thread Alex
this has nothing to do with sql. you have to parse the 9 digit number and set it equal to your reformatted number. Use left() or substring On Wed, 1 May 2002, Joshua Tipton wrote: I would like to run an update query to take a 9 digit social security number and place the dashes in the correct

RE: sql query

2002-05-01 Thread Joshua Tipton
Thanks everyone. -Original Message- From: Jeff Brown [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 9:28 AM To: CF-Talk Subject: RE: sql query The example below seems easier, but you could also: cfset ssn_formatted = Left(ssn, 3)-Mid(ssn, 4, 2)-Right(ssn, 3) v/r, Jeff

Re: installing application on a linux box

2002-05-01 Thread Pete Ruckelshaus
No direct experience, but I remember reading that Applicaiton.cfm and OnRequestEnd.cfm must be capitalized in a certain way. Pete - Original Message - From: Steven Dworman [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, May 01, 2002 10:12 AM Subject: installing

RE: IsDefined and Form[testvar] question

2002-05-01 Thread Raymond Camden
One more reason to not use Evaluate... in CFMX. Variables is now a real structure. So, instead of: cfset x = 1 cfset theVar = x cfoutput x is #evaluate(theVar)#/cfoutput You can do: cfset x= 1 cfset theVar = x cfoutputx is #Variables[x]#/cfoutput You can also dump all your local vars:

Re: Html to PDF, Excel, Word formats

2002-05-01 Thread Jerry Johnson
And try CFComet.com. They are pretty smart. Jerry Johnson [EMAIL PROTECTED] 05/01/02 09:51AM I take it you already searched on google? On Wed, 1 May 2002, YC Nyon wrote: Hi, What are the options of converting a html file on the fly to PDF, Excel and Word using CF ? Thanks. Nyon

CFDJ subscription

2002-05-01 Thread Ryan Pieszak
Does anybody here know where I can subscribe to the CFDJ online. I tried this link: http://www.sys-con.com/coldfusion/subscribe/SubscribeForm.cfm but it's giving me a 404 error. Anybody know where I can subscribe? Thanks. Ryan J. Pieszak Applications Engineer Marker Systems, Inc. Ziphany, LLC.

RE: IsDefined and Form[testvar] question

2002-05-01 Thread Thane Sherrington
At 10:15 AM 01/05/02 -0400, Raymond Camden wrote: You can do: cfset x= 1 cfset theVar = x cfoutputx is #Variables[x]#/cfoutput You can also dump all your local vars: cfdump var=#variables# label=My Local Crap Well that's really cool. I guess I'll have to move to CFMX soon. T

RE: sql query

2002-05-01 Thread BillyC
You could do it in SQL, just like you said: DECLARE @oldSsn char(9) SET @oldSsn = '#ssn#' DECLARE @newSsn char(11) SET @newSsn = SUBSTRING(@oldSsn, 1, 3) + '-' + SUBSTRING(@oldSsn, 4, 5) + '-' + SUBSTRING(@oldSsn, 6, 9) INSERT INTO myTable (ssn) VALUES (@newSsn) --- Billy Cravens

RE: Html to PDF, Excel, Word formats

2002-05-01 Thread BillyC
You should be very cautious about invoking HTMLDOC on the server - it has a habit of leaving its thread running. So, a few hundred PDF's could bring your server to its knees. One of my past gigs used it by writing a wrapper ActiveX DLL that used the Win32 API to kill the thread (after n

RE: IsDefined and Form[testvar] question

2002-05-01 Thread jeff tapper
dont forget, you can also use isdefined(form.question questionnumber) as in this example: cfparam name=form.question4 default=why did the chicken cross the road cfloop from=1 to=10 index=i cfoutput#i#:/cfoutput cfif isDefined(form.question i) cfoutputit

RE: MX and CustomTags again

2002-05-01 Thread Matt Liotta
It must be a bug then because I am running the same version without issue. I would submit the bug and then possible reinstall beta 3 to get the custom tag path back. If you don't want to reinstall beta 3, rc 1 should be available soon. -Matt -Original Message- From: Shawn McKee

RE: states - counties - zip codes database?

2002-05-01 Thread Cantrell, Adam
Bump, can anyone help me out with this? This has to be a common question. Anyone know of an updated database as mentioned in the subject line - preferably one that stores the relationships between counties - zip codes?

RE: states - counties - zip codes database?

2002-05-01 Thread BillyC
Zipinfo.com --- Billy Cravens -Original Message- From: Cantrell, Adam [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 9:49 AM To: CF-Talk Subject: RE: states - counties - zip codes database? Bump, can anyone help me out with this? This has to be a common question.

RE: states - counties - zip codes database?

2002-05-01 Thread Craig Thomas
Bump, can anyone help me out with this? This has to be a common question. Anyone know of an updated database as mentioned in the subject line - preferably one that stores the relationships between counties - zip codes?

Re: installing application on a linux box

2002-05-01 Thread Alex
Aside from case-sensitivity If your code is not doing anything with the OS then you do not have to change anything. Write once run anywhere On Wed, 1 May 2002, Steven Dworman wrote: I only have limited experience with Coldfusion on a Unix/Linux platform. The network department at a client

Re: CFDJ subscription

2002-05-01 Thread Dave Carabetta
Does anybody here know where I can subscribe to the CFDJ online. I tried this link: http://www.sys-con.com/coldfusion/subscribe/SubscribeForm.cfm but it's giving me a 404 error. Anybody know where I can subscribe? Thanks. To be perfectly honest with you, I think that their site is one of the

RE: states - counties - zip codes database?

2002-05-01 Thread Sam Roach
For just city and state: http://www.usps.com/ncsc/lookups/lookup_ctystzip.html -- sam -Original Message- From: Craig Thomas [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 8:11 AM To: CF-Talk Subject: RE: states - counties - zip codes database? Bump, can anyone help me out

RE: CFDJ subscription

2002-05-01 Thread Craig Thomas
1-800-513-7111 -Craig Thomas __ 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:

sql Stored Proc

2002-05-01 Thread Joshua Tipton
The red protion works and I can output the variable my problem is the blue highlighted part. Is it possible to create that part of the query from what is in a variable? CREATE PROCEDURE sp_ctmdatacorp corp char(4) = null, reg_no char(4) =null, dis_no char(4) =null, date1 varchar(4), date2

RE: CFDJ subscription

2002-05-01 Thread BillyC
No kidding. Slow, too many ads, broken functionality. Kinda like hiring a painter whose house is chipping and cracking... --- Billy Cravens -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 10:14 AM To: CF-Talk Subject: Re: CFDJ

RE: states - counties - zip codes database?

2002-05-01 Thread BillyC
Yeah, but I bet they're looking for a database, not an interactive form. (And USPS states that they have the right to restrict access, for all those geniuses that want to steal someone else's bandwidth with CFHTTP) --- Billy Cravens -Original Message- From: Sam Roach [mailto:[EMAIL

RE: IsDefined and Form[testvar] question

2002-05-01 Thread Philip Arnold - ASP
cfparam name=form.question4 default=why did the chicken cross the road cfloop from=1 to=10 index=i cfoutput#i#:/cfoutput cfif isDefined(form.question i) cfoutputit existsbr#form[question i]#br/cfoutput cfelse cfoutputno

Need NT Authentication Tag for CFMX

2002-05-01 Thread Frank Mamone
Since CFMX no longer supports Advanced Security, we can no longer authenticate against an NT Domain. The philosophy for our Intranet is that we use the same login as the PC to login to specific protected resources ouf our Intranet. We use NT groups to centrally manage these protected areas and

RE: IsDefined and Form[testvar] question

2002-05-01 Thread Raymond Camden
My 2 cents - not a MACR official position: Not using cfparam because it is slower than if(isdefined...) doesn't make much sense. If your application is at the level where it does matter, fine, but this won't account for more than 0.001% of the sites out there. To me, this is like the argument

Re: Need NT Authentication Tag for CFMX

2002-05-01 Thread Frank Mamone
I think I found it! Must be blind:) - Original Message - From: Frank Mamone [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, May 01, 2002 11:42 AM Subject: Need NT Authentication Tag for CFMX Since CFMX no longer supports Advanced Security, we can no longer

RE: sql Stored Proc

2002-05-01 Thread Joshua Tipton
If the colors didnt come across the declare and set all work fine the part that is giving me a problem is the @col when I try to use it in the query. Does anyone know how to make this work correctly? Joshua TIpton -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent:

RE: sql Stored Proc

2002-05-01 Thread Costas Piliotis
You missed the word AS in the declare statement: DECLARE @col AS nvarchar(30) -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 9:00 AM To: CF-Talk Subject: RE: sql Stored Proc If the colors didnt come across the declare and set all

RE: sql Stored Proc

2002-05-01 Thread Costas Piliotis
Oops... My Bad... Tested after... Not needed... -Original Message- From: Costas Piliotis Sent: Wednesday, May 01, 2002 9:00 AM To: CF-Talk Subject: RE: sql Stored Proc You missed the word AS in the declare statement: DECLARE @col AS nvarchar(30) -Original Message- From:

RE: MX and CustomTags again

2002-05-01 Thread Shawn McKee
Well I tried but the bug submittal blew up. I sent them an e-mail about that and will try later. -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 9:48 AM To: CF-Talk Subject: RE: MX and CustomTags again It must be a bug then because I am

RE: sql Stored Proc

2002-05-01 Thread Andy Ewings
you don't need it.. -Original Message- From: Costas Piliotis [mailto:[EMAIL PROTECTED]] Sent: 01 May 2002 17:00 To: CF-Talk Subject: RE: sql Stored Proc You missed the word AS in the declare statement: DECLARE @col AS nvarchar(30) -Original Message- From: Joshua

RE: sql Stored Proc

2002-05-01 Thread Joshua Tipton
I recieve an error incorrect synatx near the keyword and. declare @col as varchar(500) if(@rpttype) = 'Missing' begin set @col = ([desc] Like '%Missing%' OR [DESC] IS NULL) end set nocount on if (@corp is not null and @reg_no is null and @dis_no is null and @date1 is not null and

RE: states - counties - zip codes database?

2002-05-01 Thread Sam Roach
http://www.speedkeys.com/download.htm There is a text file on this site with zip, city, and area code. This may be helpful. -- Sam -Original Message- From: Sam Roach [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 8:15 AM To: CF-Talk Subject: RE: states - counties - zip

RE: Calling server code without reloading

2002-05-01 Thread Justin Greene
I just went through a few days of trying to figure this out and found that the only two ways were using a javascript to load a .gif and passing the parameters or using a hidden frame and dynamically changing the frame src. If you have control over the page you are submitting and can cause it

RE: IsDefined and Form[testvar] question

2002-05-01 Thread jeff tapper
the cfparam was just a quick add in, so that the form element existed for the test, but would still exist if a real form element were sent At 04:40 PM 5/1/2002 +0100, you wrote: cfparam name=form.question4 default=why did the chicken cross the road cfloop from=1 to=10 index=i

Re: Where's Advanced Security?

2002-05-01 Thread Jochem van Dieten
Dave Watts wrote: Well, that should save some work. Sandbox Security appears to be Enterprise Edition only, so we will simply leave the CF hosting business because there is no way to justify such an investment :( Yeah, that's a tough break. However, it seems like the big thing you lose

Distributing self-contained CFMX apps

2002-05-01 Thread Dick Applebaum
Not really a question, just some thoughts and musings... One of the neatest (and understated) features of the Neo beta and the Preview CFMX release is the inclusion of a standalone web server (along with the jvm jre). This allows MM customers to download and install a complete, operational

CF Wishlist

2002-05-01 Thread David Schmidt
Ok, Have carefully considered what I want from CF, the most striking feature I want to see is... Stop treating empty list items as null. That is a list of 3,5,,,3,2,2 should have a length of 7, instead of 5. Doing this would nearly eliminate the need for any field names like name=cost_#i#,

RE: CF Wishlist

2002-05-01 Thread Wallick, Mike
Oh, man! That would be great. -Original Message- From: David Schmidt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 11:42 AM To: CF-Talk Subject: CF Wishlist Ok, Have carefully considered what I want from CF, the most striking feature I want to see is... Stop treating

Re: CFMX = Neo ?

2002-05-01 Thread Mike Bruce
Since Dreamweaver is one of the most extensible programs out there and it has its own DOM, read the help files and write the code to close all open documents yourself. Then share it with everyone. I glad you can finally print the source code. :-) Mike - Original Message - From: Shawn

RE: sql Stored Proc

2002-05-01 Thread Joshua Tipton
Can anyone else give me any insight on this? -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 12:08 PM To: CF-Talk Subject: RE: sql Stored Proc I recieve an error incorrect synatx near the keyword and. declare @col as varchar(500)

Re: Calling server code without reloading

2002-05-01 Thread Dick Applebaum
You can do this with Flash, also. Flash has some very nice client/server form interaction (in addition to all the sizzle). Dick On Wednesday, May 1, 2002, at 09:20 AM, Justin Greene wrote: I just went through a few days of trying to figure this out and found that the only two ways were

RE: CF Wishlist

2002-05-01 Thread Shawn McKee
Amen!!! Shawn McKee -Original Message- From: David Schmidt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 11:42 AM To: CF-Talk Subject: CF Wishlist Ok, Have carefully considered what I want from CF, the most striking feature I want to see is... Stop treating empty list

Re: CFStudio DWMX hiccups

2002-05-01 Thread Mike Bruce
You ought to read the hlp files on that one. - Find you snippets you want to share - Copy those to a network drive - Tell whomever to copy them to there machine - They can now change them Not really shared are they? Also, no way to create shortcut keys for snippets. Bummer. I noticed that any

CFNORTH nearly sold out!

2002-05-01 Thread Michael Smith
** -- CFNORTH IS IN 3 DAYS -- Register now, or you might miss it! http://www.CFNorth.com/ Price: $230.00 (Canadian) or $145.00 (American). ** The organizers and the

RE: CF Wishlist

2002-05-01 Thread David Schmidt
In the meantime, let me contribute this method... cfloop condition=IsDefined('form.cost_#i#') EQ true !--- Your process goes here. --- /cfloop It's not perfect, but it works... -Original Message- From: David Schmidt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 9:42

RE: CF Wishlist

2002-05-01 Thread Dan G. Switzer, II
David, Depending on the context of the data, you can simulate the required behavior by replacing instances of double commas with a comma followed by a space (or any character you desire) followed by another comma. For example: Replace(3,5,,,3,2,2, ,,, , ,, ALL) You could also use a RegEx

RE: CF Wishlist

2002-05-01 Thread Lee Fuller
Have asked for that about 500 times. Hope we get it!! ;) | -Original Message- | From: David Schmidt [mailto:[EMAIL PROTECTED]] | Sent: Tuesday, April 30, 2002 9:42 AM | To: CF-Talk | Subject: CF Wishlist | | | Ok, | | Have carefully considered what I want from CF, the most |

RE: CF Wishlist

2002-05-01 Thread David Schmidt
Whoops, here it is, correctly... cfset i = 1 cfloop condition=IsDefined('form.cost_#i#') EQ true !--- Your process goes here. --- cfset i=i+1 /cfloop -Original Message- From: David Schmidt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 30, 2002 9:53 AM To: CF-Talk Subject:

Quick question...

2002-05-01 Thread Ian Lurie
Anyone remember the CHR code for a tab? I'm having a senior moment and I'm not event 35 yet... Portent Interactive Helping clients build customer relationships on the web since 1995 Consulting, design, development, measurement http://www.portentinteractive.com Talk with us:

RE: Quick question...

2002-05-01 Thread BillyC
Chr(9) --- Billy Cravens -Original Message- From: Ian Lurie [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 11:56 AM To: CF-Talk Subject: Quick question... Anyone remember the CHR code for a tab? I'm having a senior moment and I'm not event 35 yet... Portent Interactive

Re: Quick question...

2002-05-01 Thread Critz
oi Ian!! 9 -- Critz Certified Adv. ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion Wednesday, May 1, 2002, 12:56:16 PM, you wrote: IL Anyone remember the CHR code for a tab? I'm having a senior moment and I'm IL not event

RE: Quick question...

2002-05-01 Thread Bryan Love
char 9 +---+ Bryan Love Macromedia Certified Professional Internet Application Developer Database Analyst Telecommunication Systems [EMAIL PROTECTED] +---+ ...'If there must be trouble, let it be in my

Re: Quick question...

2002-05-01 Thread Mk
I believe it's 9 (chr(9)) - Original Message - From: Ian Lurie [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, May 01, 2002 11:56 AM Subject: Quick question... Anyone remember the CHR code for a tab? I'm having a senior moment and I'm not event 35 yet... Portent

Re: Quick question...

2002-05-01 Thread Dick Applebaum
9 On Wednesday, May 1, 2002, at 09:56 AM, Ian Lurie wrote: Anyone remember the CHR code for a tab? I'm having a senior moment and I'm not event 35 yet... Portent Interactive Helping clients build customer relationships on the web since 1995 Consulting, design, development, measurement

RE: Distributing self-contained CFMX apps

2002-05-01 Thread Craig Thomas
Is the stand alone CFMX server using some one else's web server, or does the embedded JRun server act as a web server? Can it serve .htm(l) pages? -Craig Thomas __ Signup for the Fusion Authority news alert and keep up with

RE: Where's Advanced Security?

2002-05-01 Thread Christine Lawson
Technically with Pro, the same set of resource permissions is given to all the templates, no matter how many CF applications you host. Christine -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 12:22 PM To: CF-Talk Subject: Re: Where's

Re: Distributing self-contained CFMX apps

2002-05-01 Thread Dick Applebaum
AFAIK, JRun is the Web Appliication server, the Standalone web server is used in lieu of a web server such as IIS, Apache, etc. As such, the standalone server serves html. Dick On Wednesday, May 1, 2002, at 10:25 AM, Craig Thomas wrote: Is the stand alone CFMX server using some one else's

Re: Distributing self-contained CFMX apps

2002-05-01 Thread BILL BROWN
The only downside being that the CFMX license will make the cost of the software prohibitive. Imagine tacking on thousands of dollars to the price of your development. It's possible, though not likely. Bill [EMAIL PROTECTED] 5/1/02 9:26 AM Not really a question, just some thoughts and

RE: Distributing self-contained CFMX apps

2002-05-01 Thread Craig Thomas
The only downside being that the CFMX license will make the cost of the software prohibitive. Imagine tacking on thousands of dollars to the price of your development. Wouldn't 'cost prohibitive' depend on the client? If they are running their own server (or even using a dedicated host) they

RE: Distributing self-contained CFMX apps

2002-05-01 Thread BillyC
Yeah, but self-contained apps would require one license per app, as opposed to one application server running multiple apps. Not to mention resolution of the issue that arises when you have a client that already has CFMX (hardly a brain-bender, but an issue nonetheless if you adopt the

RE: Distributing self-contained CFMX apps

2002-05-01 Thread Craig Thomas
Yeah, but self-contained apps would require one license per app, as opposed to one application server running multiple apps. Very good point. -Craig __ Structure your ColdFusion code with Fusebox. Get the official book at

JavaScript - Validation of Date - 3 Drop down lits

2002-05-01 Thread Chakka, Sudheer
Hi, Does any body have Javascript code snippet that validates the date. I have a 3 drop lists (Year- 02 format , Month - 01 format, day - 01 format) I have to check the date selected by the user is greater or equal to today's date . I am combining all the three values I am stuck

RE: Distributing self-contained CFMX apps

2002-05-01 Thread Matthew R. Small
If the CF templates are compiled into classes, could you then run them on any ol' servlet web server? Would that violate the license agreement? - Matt Small -Original Message- From: Craig Thomas [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 1:58 PM To: CF-Talk Subject: RE:

Re: Distributing self-contained CFMX apps

2002-05-01 Thread Mk
Matt, It doesn't work quite that way. because the class files are actually a collection of callse to Java classes that are a part ofthe CFMX installation, they will NOT run without the CFMX run time. Mark - Original Message - From: Matthew R. Small [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: Distributing self-contained CFMX apps

2002-05-01 Thread BillyC
Just b/c they're compiled into classes, doesn't mean that they aren't calling classes proprietary to CFMX but external to the application. --- Billy Cravens -Original Message- From: Matthew R. Small [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 1:06 PM To: CF-Talk Subject:

RE: Distributing self-contained CFMX apps

2002-05-01 Thread Timothy Heald
You are going to need a copy of CFMX running. However MM is as usual thinking the same way we are. They recently released this: http://www.macromedia.com/macromedia/proom/pr/2002/server_integration.html Tim Heald ACP/CCFD :) Application Development www.schoollink.net -Original

RE: Distributing self-contained CFMX apps

2002-05-01 Thread Matthew R. Small
Yeah, I was thinking that. But as a point of curiosity, you could just take the CF classes and your template classes after compilation and run them on any java server, right? Or am I missing something? - Matt Small -Original Message- From: Mk [mailto:[EMAIL PROTECTED]] Sent:

Re: Calling server code without reloading

2002-05-01 Thread Jon Hall
Well there are two different ways to do it that I know of. The easiest would be the xmlhttp objects available in IE5+ and Mozilla. Sending url parameters, and getting back your data in a parseable format. I haven't done this but in theory it is very easy. Some code... try { // for Mozilla req

RE: Distributing self-contained CFMX apps

2002-05-01 Thread Craig Thomas
AFAIK, JRun is the Web Appliication server, the Standalone web server is used in lieu of a web server such as IIS, Apache, etc. As such, the standalone server serves html. Dick What is 'AFAIK'? -Craig Thomas __ Get the

RE: CF Wishlist

2002-05-01 Thread Raymond Camden
Lists behave the same way in MX as they do in CF5. You can download a ListFix UDF from cflib.org. It will replace null entries w/ a character of your chosing. === Raymond Camden, Principal Spectra Compliance Engineer for

RE: Distributing self-contained CFMX apps

2002-05-01 Thread Jeff Brown
as far as i know -Original Message- From: Craig Thomas [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 01, 2002 2:17 PM To: CF-Talk Subject: RE: Distributing self-contained CFMX apps AFAIK, JRun is the Web Appliication server, the Standalone web server is used in lieu of a web server

RE: JavaScript - Validation of Date - 3 Drop down lits

2002-05-01 Thread BillyC
Use the Date object in JS: (Haven't tested this, coding off the cuff): objFrmDate = new Date(frm.year.value,frm.month.value,frm.days.value); objToday = new Date(); // getTime method converts to ms since 1/1/70, allowing for absolute date comparison numFrmDate = objFrmDate.getTime(); numToday

RE: Distributing self-contained CFMX apps

2002-05-01 Thread Ron Hornbaker
What is 'AFAIK'? http://www.acronymfinder.com/af-query.asp?Acronym=AFAIK -Ron BOOKS JUST WANNA BE FREE! http://BookCrossing.com __ Signup for the Fusion Authority news alert and keep up with the latest news in

  1   2   3   >