Re: cfsqltype question with Access database

2004-10-25 Thread Jim McAtee
- Original Message - From: "Dave Watts" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, October 25, 2004 12:45 PM Subject: RE: cfsqltype question with Access database >> I have a tag input that needs cfsqltype for a given field. >> Would be CF_SQL_VARCHAR or CF_SQL_NU

RE: cfsqltype question with Access database

2004-10-25 Thread Pascal Peters
I think that depends on the version of CF you are using: CF5 => LONGVARCHAR, CFMX => CLOB (but I'm not a 100% certain) Pascal > -Original Message- > From: Scott Brady [mailto:[EMAIL PROTECTED] > Sent: 25 October 2004 20:46 > To: CF-Talk > Subject: Re: cfsqltype question with Access databa

RE: OT: Local MS SQL Server

2004-10-25 Thread Rodger
This brings up another question: Is there a way to install my copy of MS SQL Server onto my XP machine to be used for dev? When I try, it only allows me to install the client stuff (Enterprise Manager and Query Analyzer). Rodger -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PR

RE: Survey Creation Application

2004-10-25 Thread dave
flas ~| Sams Teach Yourself Regular Expressions in 10 Minutes by Ben Forta http://www.houseoffusion.com/banners/view.cfm?bannerid=40 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:1

Re: SOT: A neat Morph NON QUICKTIME format

2004-10-25 Thread dave
personally i cant imagine looking at that ugly mug for 4 yrs! http://www.jamwerx.com/ugly/ugly.html -- Original Message -- From: Dick Applebaum <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date: Mon, 25 Oct 2004 19:59:50 -0700 >Trying to be as apoliti

RE: A neat Morph

2004-10-25 Thread Jim Davis
That takes me back... I used to be quite a hand with VideoCraft and Elastic Reality. ;^) You don't hear much about "old fashioned" morphing any longer, do you? Jim Davis -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 11:00 PM To: CF-Tal

RE: A neat Morph

2004-10-25 Thread Ewok
Ha! not bad, thanks. Now I'm just going to picture him jumping up and down in a temper tantrum when he doesn’t get his way like Herman Munster always did. -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 11:00 PM To: CF-Talk Subject: SOT: A

Re: Query -looping through a list

2004-10-25 Thread Tony Weeg
i guess, why do it like that, when you can just let sql server do all the work simply by passing it a string. it works fast and fine with the string just like that, and you get away from unnecessary cfml code in your sql server code. furthermore...and upon further inspection :), i think your way

RE: A neat Morph

2004-10-25 Thread Ewok
The page cannot be displayed -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 11:00 PM To: CF-Talk Subject: SOT: A neat Morph Trying to be as apolitical as possible... you can consider this as: 1) two heros 2) two faces 3) whatever you des

SOT: A neat Morph

2004-10-25 Thread Dick Applebaum
Trying to be as apolitical as possible... you can consider this as: 1) two heros 2) two faces 3) whatever you desire but it is a really well done morph & I hope it will bring a smile to your lips, http://67.124.145.42/plastic_surgery.mpg If you have QuickTime you can set it to loop back & f

RE: Survey Creation Application

2004-10-25 Thread Ewok
I've built a survey app. It really was a lot easier than it sounded when my project manager laid it out (but we all know how that goes). Since the final app is sitting in a paid members only section of a site, I can only show you the first ROUGH draft. It's basically the same app but not sitting in

Re: strange error (help!)

2004-10-25 Thread Rick Root
Jeff Fongemie wrote: >>Verify that the query works without using CFQUERYPARAM > > It does work without the CFQUERYPARAM. Why is that??? Maybe MS Access doesn't like the "DECIMAL" sql type. That's why I suggested trying another sql type. I only suggested you try it without the cfqueryparam to p

Re: Query -looping through a list

2004-10-25 Thread Jeff Fongemie
Further, It's the "or" in my loop. It always ends up at the end of my SQL statement with nothing after it so I get an error. ? ~| The annual ColdFusion User Conference is being held Sat 6/26 - Sun 6/27/04 8am-5pm in the Washi

Re: inetinfo.exe Memory Leak After 6.1 Updater

2004-10-25 Thread Alex DeMarco
> Hi Alex, > > It's standalone, using IIS 5.0. Exactly which file did you copy from > a fresh install? jrunsvc.exe itself is not having any issues (steady > at 36K, 2 threads), but I guess it is related? Hmm not sure about standalone. We have Jrun with cfmx deployed as a j2ee application,

Re: Query -looping through a list

2004-10-25 Thread Joe Rinehart
Tony and Matt are right on target...I've seen a lot of people store zips / postal codes as non-numeric types (nvarchar, etc) to account for non-us postal codes, in which case you'll want to do something like this: dealer_zip in (#listQualify(returnedZIPs, "'")#) -joe On Mon, 25 Oct 2004 21:18:

Re: Buying Studio MX

2004-10-25 Thread Josh
http://froogle.google.com/froogle?q=studio+mx -- Exciteworks, Inc Expert Hosting for less! *Ask for a free 30 day trial!* http://exciteworks.com Plans starting at -$12.95- including MS SQL Server! Mickael wrote: >Hi All, > >Is there anyone on this list can point me to a place where I can buy

Re: Query -looping through a list

2004-10-25 Thread Tony Weeg
:) its alright. you cant do what your trying to do... not like that... however you could do something like this... Select * from DealersWhere dealer_zip in (#ReturnedZIPs#) hth tony On Mon, 25 Oct 2004 20:53:28 -0400, Jeff Fongemie <[EMAIL PROTECTED]> wrote: > What's w

RE: Query -looping through a list

2004-10-25 Thread Matthew Walker
Is it the "OR" dangling off the end of the last zip code? If so, you could add 1=0 after the or use something more elegant like ... dealer_zip IN () > -Original Message- > From: Jeff Fongemie [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 26 October 2004 1:53 p.m. > To: CF-Talk > Subject: Q

Class File Location

2004-10-25 Thread Michael T. Tangorre
Which file can be edited to change the class file storage location in CFMX 6.1? Thanks, Mike ~| Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF community. http://www.houseoffusion.com/banner

Query -looping through a list

2004-10-25 Thread Jeff Fongemie
What's wrong with this code? Select * from Dealers Where dealer_zip ='#zip#' or I get a list of zipcodes. I need to get all the dealers that have match any one of zipcodes from my list. I must be missing something simple! -Jeff ~~

Re: strange error (help!)

2004-10-25 Thread Jeff Fongemie
>Verify that the query works without using CFQUERYPARAM > It does work without the CFQUERYPARAM. Why is that??? -Jeff ~| Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF community. http://www.

Re: strange error (help!)

2004-10-25 Thread Rick Root
Verify that the query works without using CFQUERYPARAM Then, try using a different SQL Type. - Rick Jeff Fongemie wrote: > I'm getting an error that I've not seen, and I can't seem to see what the cause is. > > This is the error: > > Error Executing Database Query. > [Macromedia][SequeLin

strange error (help!)

2004-10-25 Thread Jeff Fongemie
I'm getting an error that I've not seen, and I can't seem to see what the cause is. This is the error: Error Executing Database Query. [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver]Optional feature not implemented 125 : SELECT

Re: OT: sound fx website , other than flashkit

2004-10-25 Thread Claude Schneegans
Try this one: http://members.tripod.com/~buggerluggs/ie/wav-dir184.htm -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks. ~

Re: Survey Creation Application

2004-10-25 Thread Graham Pearson
We have created this such item and it can be viewed at http://alumni.niesc.org which is being used by K-12 School Corporations to survey High School Students before graduation and after a period of time. At 02:50 PM 10/25/2004, you wrote: >We're looking to make our own application that lets peop

Re: site size utility?

2004-10-25 Thread Jochem van Dieten
Ray Champagne wrote: > Does anyone know if there is a utility out there to find out the estimated > total size of a site without having the FTP info? > > We are trying to estimate hosting prices for a potential client, and the > size of the site will be a determining factor. Do you have a shell

RE: Getting 4 results where there should be only 2

2004-10-25 Thread dave
i have had that and if i remember right is was lack of having single quotes dont forget cfqueryparam!!! SELECT * FROM contacts,ImageList WHERE contacts.ContactID = -- Original Message -- From: "Phillip Perry" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROT

RE: site size utility?

2004-10-25 Thread djones
I agree on both. But if this is all you have to determine size then... Also even if it is dynamic content this would give you a better idea of how much bandwidth the site will generate. Just looking at the size of code wont tell you how big it is to the website user. David -Original Messa

Re: site size utility?

2004-10-25 Thread Umer Farooq
Wouldn't these utils inflate the size of the site.. if the site got lot of dynamic content.. Also.. when you can get a 1GB of space for 9.95 a month.. I hope.. the web space is not that huge of a factor in your pricing.. [EMAIL PROTECTED] wrote: > Cant you whack it? You could whack it then jus

Re: About Rss

2004-10-25 Thread Massimo, Tiziana e Federica
> We have a company with several branches over the whole country ..I'd like to > implement in our Main Intranet Site some blog(RSS) ... We use a free blog > application named SharpReader in order to add many sites but also we would > like to add our rss. Then I need to know the standard xml structu

Re: Survey Creation Application

2004-10-25 Thread Umer Farooq
for building of the questions... look into the db layout of Miva Marchent attributes.. and where attribute templates could represent.. pages.. also for some inspiration.. checkout.. http://www.inviewsion.com/ Jason Lemahieu wrote: > We're looking to make our own application that lets pe

Re: Getting 4 results where there should be only 2

2004-10-25 Thread Deanna Schneider
Here's what I'd do - go into access and use the query builder to build the query. You may have to use the inner join syntax instead of the where syntax. I don't use access, but it's something like: SELECT * FROMcontacts INNER JOIN imagelist ON contacts.contactid = Imagelist.contactid -

RE: Calling a dot Net Executable

2004-10-25 Thread Guy Rish
Dave, Can you be more specific about your intent? Are you talking about passing data to a .EXE (that just so happened to be constructed in .NET) or shuffling data into an existing instance of a .NET runtime host? There are numerous ways of doing this depending upon your goal - and some are easier

Re: Calling a dot Net Executable

2004-10-25 Thread Kwang Suh
As in a .exe file? If it's truly an executable, then just use cfexecute. >Has anyone placed variables in a dot Net executable from a form? Any >help would be appreciated. > >Dave Clay >Trusjoist.com ~| Sams Teach Yourself Regul

RE: Survey Creation Application

2004-10-25 Thread CFDEV
Hi, When I was working at the university with knid of developped our own survey/questionnaire builder.. It was always a mess since they always wanted more options.. The database was a bit complex but not that hard to design.. Our main problem was security... I still have the code and plan to us

Calling a dot Net Executable

2004-10-25 Thread Dave Clay
Has anyone placed variables in a dot Net executable from a form? Any help would be appreciated. Dave Clay Trusjoist.com ~| Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF community. http://w

About Rss

2004-10-25 Thread Hassan Arteaga Rodriguez
Hi all... We have a company with several branches over the whole country ..I'd like to implement in our Main Intranet Site some blog(RSS) ... We use a free blog application named SharpReader in order to add many sites but also we would like to add our rss. Then I need to know the standard xml str

Re: site size utility? - SOLVED

2004-10-25 Thread Ray Champagne
Cool, that should be enough to get me where I need to be. Thanks! Ray At 03:49 PM 10/25/2004, you wrote: >You could always spider the site. Here's a good free utility: > >http://www.httrack.com/ > > > > >On Mon, 25 Oct 2004 14:59:12 -0400, Ray Champagne <[EMAIL PROTECTED]> wrote: > > Does anyon

Re: site size utility?

2004-10-25 Thread Marlon Moyer
You could always spider the site. Here's a good free utility: http://www.httrack.com/ On Mon, 25 Oct 2004 14:59:12 -0400, Ray Champagne <[EMAIL PROTECTED]> wrote: > Does anyone know if there is a utility out there to find out the estimated > total size of a site without having the FTP info? >

RE: SOLVED Getting 4 results where there should be only 2

2004-10-25 Thread Phillip Perry
Dont know if this is common but, using MS Access, the ContactID foreign key is spelled differently when looked at in "design view" as opposed to its regular display. When I switched the spelling it worked out. Thanks for the help Phil -Original Message- From: Phillip Perry [mailto:[EMAIL

Survey Creation Application

2004-10-25 Thread Jason Lemahieu
We're looking to make our own application that lets people create surveys - similar to Zoomerang (ww.zoomerang.com). We've played around with possible DB schemas and it just seems to get more and more complicated. I was wondering if any of you have tried implementing such an application, or if

Re: cfsqltype question with Access database

2004-10-25 Thread Scott Brady
On Mon, 25 Oct 2004 14:45:30 -0400, Dave Watts wrote: > You should use CF_SQL_VARCHAR for a text field in Access. I would guess that > you want to use CF_SQL_CLOB for a memo field. My version of Homesite+ 5.5 doesn't list "CF_SQL_CLOB" as one of the options. Is that undocumented? For memo fields

RE: site size utility?

2004-10-25 Thread djones
Cant you whack it? You could whack it then just look at the folder properties for the size. There are utilities that will go through an entire site following all the links downloading all the results. We have used these tools in the past when a competitor wont release a clients files. Here is o

RE: Getting 4 results where there should be only 2

2004-10-25 Thread Phillip Perry
Yes I adjusted it for my purpose and I even spelled out every single fieldname in the select clause, but doing that just gave me the same error except now its missing 3 parameters instead of 2. Here is the code as it was adjusted per your code example.. SELECT * FROM contacts,ImageList WHERE cont

Re: Getting 4 results where there should be only 2

2004-10-25 Thread Deanna Schneider
Um, that was totally pseudocode. You did modify it for your table structure, right? It might help to actually post the table structure. - Original Message - From: "Phillip Perry" >I tried this and I'm getting an error saying too few parameters expecting >2. > Dont know what that means t

Re: using cfabort in an include....

2004-10-25 Thread Scott Brady
On Mon, 25 Oct 2004 18:00:40 +0100, Bert Dawson wrote: > In a custom tag you could use cfexit, but since you're in a cfinclude I just did a test on an include (in MX 6.1), and a cfexit does exit out of the cfinclude file and continue on with the rest of the enveloping file. I'm not sure about ea

OT: sound fx website , other than flashkit

2004-10-25 Thread Katz, Dov B (IT)
does anyone have a good sound FX (wav files prefered) website, other than flashkit where I can get some sound effects? Thanks in advance -dbk NOTICE: If received in error, please destroy and notify sender. Sender does not waive confide

Re: Getting 4 results where there should be only 2

2004-10-25 Thread Ian Sheridan
You need to join the data: select * from table1, table2 where table1.id = table2.FKid table2 should hold the ID of the record it belongs to in table1. or vice versa Ian On Mon, 25 Oct 2004 14:51:58 -0400, Ewok <[EMAIL PROTECTED]> wrote: > You could try grouping by something distinct or select

RE: Getting 4 results where there should be only 2

2004-10-25 Thread Phillip Perry
I tried this and I'm getting an error saying too few parameters expecting 2. Dont know what that means though. -Original Message- From: Deanna Schneider [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 2:59 PM To: CF-Talk Subject: Re: Getting 4 results where there should be only 2

Re: modifying '...could not connect to JRun Server' message

2004-10-25 Thread Douglas Knudsen
yeah, this too http://www.macromedia.com/support/jrun/ts/documents/tn17468.htm mentions \inetpub\scripts\jrun.ini which does not exist. I couldn't get this to work at all. Doug On Mon, 25 Oct 2004 11:38:34 -0400, Howie Hamlin <[EMAIL PROTECTED]> wrote: > http://www.fusionauthority.com/Articl

Re: inetinfo.exe Memory Leak After 6.1 Updater

2004-10-25 Thread Sung Woo
Hi Alex, It's standalone, using IIS 5.0. Exactly which file did you copy from a fresh install? jrunsvc.exe itself is not having any issues (steady at 36K, 2 threads), but I guess it is related? ~| This list and all House of F

RE: OT: Local MS SQL Server

2004-10-25 Thread djones
Thanks, that's what I was hoping. David -Original Message- From: Kwang Suh [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 2:44 PM To: CF-Talk Subject: Re: OT: Local MS SQL Server No, there is no difference. They work exactly the same, as you are literally getting the same pro

site size utility?

2004-10-25 Thread Ray Champagne
Does anyone know if there is a utility out there to find out the estimated total size of a site without having the FTP info? We are trying to estimate hosting prices for a potential client, and the size of the site will be a determining factor. GO SOX!!! (and Patriots!) Thanks, Ray

Re: Getting 4 results where there should be only 2

2004-10-25 Thread Deanna Schneider
You need to join the two tables on whatever value they share: SELECTt1.* from FROM table1 t1, table2 t2 WHEREt1.primarykey = t2.foreignkey - Original Message - From: "Phillip Perry" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, October 25, 2004 1:45 PM S

RE: using cfabort in an include....

2004-10-25 Thread Phillip Perry
thanks I went with cfexit. I'm using the code as a custom tag so this works great. I just didnt know there were other types of abort type tags. Phil -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 2:59 PM To: CF-Talk Subject: RE: using c

RE: using cfabort in an include....

2004-10-25 Thread Tangorre, Michael
> From: Bert Dawson [mailto:[EMAIL PROTECTED] > In a custom tag you could use cfexit, but since you're in a > cfinclude you'll need to put everything in a cfelse: > > some code... > > more code > Read here: http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/tags-p26.htm#wp10

RE: Getting 4 results where there should be only 2

2004-10-25 Thread Ewok
You could try grouping by something distinct or selecting distinct -Original Message- From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 2:45 PM To: CF-Talk Subject: Getting 4 results where there should be only 2 When I do something like this... SELECT * FROM

RE: Cffile issue...

2004-10-25 Thread Ewok
Just a thought, but check your disk quotas if there are any. -Original Message- From: Jeff Waris [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 9:58 AM To: CF-Talk Subject: RE: Cffile issue... No one with any ideas?? I'm still pretty much stumped over this one. > -Origi

Re: using cfabort in an include....

2004-10-25 Thread Bert Dawson
In a custom tag you could use cfexit, but since you're in a cfinclude you'll need to put everything in a cfelse: some code... more code HTH Bert On Mon, 25 Oct 2004 12:23:45 -0400, Phillip Perry <[EMAIL PROTECTED]> wrote: > I'm using cfinclude. inside the included file that has so

Getting 4 results where there should be only 2

2004-10-25 Thread Phillip Perry
When I do something like this... SELECT * FROM Table1,Table2 and there are only 2 records to show, the output shows those 2 records twice. I'm assuming that its becuase there are 2 tables so it shows it twice. How do I get around this? This page is independant and has no variables passed to it

Re: OT: Local MS SQL Server

2004-10-25 Thread Kwang Suh
No, there is no difference. They work exactly the same, as you are literally getting the same product, just with a different license key. What they may be talking about is the OS they installed it on. Non server OSs will have a limit on the number of simultaneous network connections, which wil

Re: cfsqltype question with Access database

2004-10-25 Thread Charlie Griefer
cf_sql_char should work. On Mon, 25 Oct 2004 14:30:53 -0400, Jeffrey Fongemie <[EMAIL PROTECTED]> wrote: > Hi everyone, > > I have a tag input that needs cfsqltype for a given field. Would be CF_SQL_VARCHAR > or CF_SQL_NUMERIC but I'm using Access database and the field in question is just a >

RE: cfsqltype question with Access database

2004-10-25 Thread Dave Watts
> I have a tag input that needs cfsqltype for a given field. > Would be CF_SQL_VARCHAR or CF_SQL_NUMERIC but I'm using > Access database and the field in question is just a simple > text field. Is there such ting as a CFSQLTYPE for an Access > field? You should use CF_SQL_VARCHAR for a text f

cfsqltype question with Access database

2004-10-25 Thread Jeffrey Fongemie
Hi everyone, I have a tag input that needs cfsqltype for a given field. Would be CF_SQL_VARCHAR or CF_SQL_NUMERIC but I'm using Access database and the field in question is just a simple text field. Is there such ting as a CFSQLTYPE for an Access field? -Jeff ~~

Re: inetinfo.exe Memory Leak After 6.1 Updater

2004-10-25 Thread Alex DeMarco
> I'm still having a rather nasty issue after installing the 6.1 Updater > (and the 3 recommended hotfixes -- hf55681_61, hf56991.611, > navserver_611) on my W2K box (SP4, 2GB of RAM). What's happening is > that there's a slow but steady memory leak in inetinfo.exe. inetinfo > hardly ever use

Re: CFObject Error

2004-10-25 Thread David Manriquez
>genius :-) > >WG > >> Ok , readed and applied everythink on this but i have the same problem I have 4 coldfusion servers , and i tried just over one of them Coldfusion and Jrun separated Config. Error : An exception occurred when instantiating a Com object. The cause of this exception was

RE: Odd date behaviour, September has 31 days?

2004-10-25 Thread Adrian Lynch
What do you get if you do... #Month(Now())# #MonthAsString(Month(Now()))# ..? -Original Message- From: James Smith [mailto:[EMAIL PROTECTED] Sent: 25 October 2004 16:38 To: CF-Talk Subject: Odd date behaviour, September has 31 days? OK, I am sure I am doing something st

Re: Has anyone done this?

2004-10-25 Thread Marc Campeau
The problem you will face is that often when users click the back button, the page is not reloaded from the server but from their cached copy. So basically, you'll have to use client side scripting to make this happen. When you generate a page you will have to create a unique token which is used o

Re: using cfabort in an include....

2004-10-25 Thread Scott Brady
On Mon, 25 Oct 2004 12:23:45 -0400, Phillip Perry wrote: > But the problem is that the cfabort not only stops that code in the include > file its stopping the code in the calling template. Is there a way to > confine the abort to the included file only and leave the template thats > calling it alon

RE: using cfabort in an include....

2004-10-25 Thread John Stanley
... some code... more code -Original Message- From: Phillip Perry [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004 12:24 PM To: CF-Talk Subject: using cfabort in an include I'm using cfinclude. inside the included file that has some code

Re: using cfabort in an include....

2004-10-25 Thread Howie Hamlin
Try CFEXIT instead. HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server PrismAV - Virus scanning for ColdFusion applications >>> Find out how iMS Stacks up to the competition: >

using cfabort in an include....

2004-10-25 Thread Phillip Perry
I'm using cfinclude. inside the included file that has some code that I want to stop being processed if there is an error. Like this, some code... more code But the problem is that the cfabort not only stops that code in the include file its stopping the code in the calling templat

Re: Qn regarding multiple submit buttons on one page

2004-10-25 Thread Damien McKenna
Dave Watts wrote: >Why not just put the submit button first? That's how most interfaces work, >anyway - the "ok" button precedes the "cancel" button. > > Because most of the pages have a "back" button, which I thought would be more logical to have on the left. Maybe I should do it as "Continue

Re: Odd date behaviour, September has 31 days?

2004-10-25 Thread Charlie Griefer
daysInMonth() takes a -full- date variable value...not just an integer (month) value. Feb will have different days in it depending on the year. try #daysinmonth(dateadd("m",-1,now()))# On Mon, 25 Oct 2004 16:38:13 +0100, James Smith <[EMAIL PROTECTED]> wrote: > OK, I am sure I am doing somethin

Re: modifying '...could not connect to JRun Server' message

2004-10-25 Thread Douglas Knudsen
tried that just now, no workie. I tested by shutting teh CFusion server off. When IIS can't connect, it seems the error below is generated by JRun somehow, not IIS. Doug On Mon, 25 Oct 2004 11:47:22 -0400, Dave Watts <[EMAIL PROTECTED]> wrote: > > Server Error > > The server encountered an int

Re: Odd date behaviour, September has 31 days?

2004-10-25 Thread Scott Brady
On Mon, 25 Oct 2004 16:38:13 +0100, James Smith wrote: > OK, I am sure I am doing something stupid here, but if I simply output the > following to the browser, it displays 31... > > #daysinmonth(month(dateadd("m",-1,now(# > > Last time I checked September only had 30 days. If I output >

Re: OT: Qn regarding multiple submit buttons on one page

2004-10-25 Thread Scott Brady
On Fri, 22 Oct 2004 15:03:37 -0400, Damien McKenna wrote: > Both buttons are actually image input tags as I use custom images rather > than simply the generic buttons. The default action (e.g. when you hit > Enter while editing a field) goes to the cancel button. I'd like the > submit button to b

RE: modifying '...could not connect to JRun Server' message

2004-10-25 Thread Dave Watts
> Server Error > The server encountered an internal error and was unable to > complete your request. > Could not connect to JRun Server. > > > Anyone know where I can mod this message? I grepped the > JRun4 dir and found nada. I assume its in some XML file > somewheres. I think you ca

Re: modifying '...could not connect to JRun Server' message

2004-10-25 Thread Howie Hamlin
http://www.fusionauthority.com/Article1.cfm/ArticleID=4275 HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server PrismAV - Virus scanning for ColdFusion applications >>> Find out h

Odd date behaviour, September has 31 days?

2004-10-25 Thread James Smith
OK, I am sure I am doing something stupid here, but if I simply output the following to the browser, it displays 31... #daysinmonth(month(dateadd("m",-1,now(# Last time I checked September only had 30 days. If I output #month(dateadd("m",-1,now()))# It displays 9, so I know it is using

modifying '...could not connect to JRun Server' message

2004-10-25 Thread Douglas Knudsen
Server Error The server encountered an internal error and was unable to complete your request. Could not connect to JRun Server. Anyone know where I can mod this message? I grepped the JRun4 dir and found nada. I assume its in some XML file somewheres. -- Douglas Knudsen http://www.cub

Re: Odd errors - only sometimes

2004-10-25 Thread Stephen Moretti (cfmaster)
Foye Troute wrote: >Thanks Stephen, you were right on. I must have read thru that a dozens times and >never saw it. > >That solved I can now go back and clean up some of the code and do a few tweaks. > >Thanks again. > > No problem. Fresh eyes alway help. Just so you know. The javascript fun

Buying Studio MX

2004-10-25 Thread Mickael
Hi All, Is there anyone on this list can point me to a place where I can buy a Boxed version of Studio MX with Flash Pro cheaper than I can from the Macromedia site? I am in Toronto Canada Sorry for being OT Mike ~| The ann

RE: CF Blog Aggregator

2004-10-25 Thread Jillian Koskie
James, Looks like a good start! I'd love to get a copy of your code ([EMAIL PROTECTED]) --in return when I finish mine, I'd be happy to send you a copy of mine! Thanks! -- Jillian -Original Message- From: James Edmunds [mailto:[EMAIL PROTECTED] Sent: October 25, 2004 7:22 AM To: CF-Ta

RE: OT: Local MS SQL Server

2004-10-25 Thread djones
I have a question about this... Are there ANY differences between the DEV and the PROD versions or SQL Server 2000? I have heard many people say different things but I cant find anything on Microsoft's site. I have heard that there is a concurrent user limitation. I have heard 5,10 and 15 users

Re: OT: Local MS SQL Server

2004-10-25 Thread Kwang Suh
You can get the Developer Edition of SQL Server 2000 for $49. Fully featured SQL Server, only stipulation is that you can use it only for non-production purposes. >I use a local web and cfm server on my dev machine, but I use the MS SQL >Server on my hosted account on the internet. >Is there a w

Re: Odd errors - only sometimes

2004-10-25 Thread Foye Troute
>Foye Troute wrote: > >The problem is your CFFORM. > > > >You have the action in the name field of the form and no action. > >You don't actually make use any of the benefits of CFFORM, so I would >suggest changing your cfform to an ordinary form tag and any CFINPUTs to >ordinary INPUT tags. > >Th

RE: Cffile issue...

2004-10-25 Thread Mark A Kruger
Jeff, Here's 1. Perhaps the request is timing out with the file handle still open and not terminating correctly. Try setting the "requesttimeout" parameter (use ) to something quite high. -Mark -Original Message- From: Jeff Waris [mailto:[EMAIL PROTECTED] Sent: Monday, October 25, 2004

RE: Cffile issue...

2004-10-25 Thread Jeff Waris
No one with any ideas?? I'm still pretty much stumped over this one. > -Original Message- > From: Jeff Waris [mailto:[EMAIL PROTECTED] > Sent: Wednesday, October 20, 2004 2:17 PM > To: CF-Talk > Subject: Cffile issue... > > > "An error occurred when performing a file operation Append

RE: Has anyone done this?

2004-10-25 Thread Jeff Waris
It's actually a compliance issue for an audit. Annoying for users I would wholeheartedly agree. I've actually seen something like what I am asking working on another website, although whatever the technique being used ONLY works with IE. I can easily go back using firefox.. Jeff > -Original

Re: Odd errors - only sometimes

2004-10-25 Thread Stephen Moretti (cfmaster)
Foye Troute wrote: > I am working on some new pages and am getting very odd errors. Odd because >they seem to be browser dependant. On my development system (XP ProSP2 with >CFMX.)I don't see the error. On a laptop with XPHomeSP2 I don't see the >error. On a laptop with Win2000 I see the errors.

Re: CF Blog Aggregator

2004-10-25 Thread James Edmunds
Jillian, I built one for myself strictly for learning purposes. If it interests you, I'll send you the code. It is not a CFC, just a few templates, and no admin interface.. I might have made it into a CFC and added some features, etc., if there weren't quite a few others floating around! Doing it

inetinfo.exe Memory Leak After 6.1 Updater

2004-10-25 Thread Sung Woo
I'm still having a rather nasty issue after installing the 6.1 Updater (and the 3 recommended hotfixes -- hf55681_61, hf56991.611, navserver_611) on my W2K box (SP4, 2GB of RAM). What's happening is that there's a slow but steady memory leak in inetinfo.exe. inetinfo hardly ever used to go ove

Odd errors - only sometimes

2004-10-25 Thread Foye Troute
I am working on some new pages and am getting very odd errors. Odd because they seem to be browser dependant. On my development system (XP ProSP2 with CFMX.)I don't see the error. On a laptop with XPHomeSP2 I don't see the error. On a laptop with Win2000 I see the errors. The page is on a produ

RE: AOL and spam filtering

2004-10-25 Thread James Smith
I had great success adding a static route to our internal mail server. [EMAIL PROTECTED] gets routed to our ISP's SMTP server and everything else is delivered direct. I haven't had a single problem since. -- Jay > -Original Message- > From: Gavin Brook [mailto:[EMAIL PROTECTED] > Sent:

Re: German characters

2004-10-25 Thread Paul Hastings
Bram Plessers wrote: >>at the top of each page: >> > > > I set up this application.cfm has to go on each cf page. won't do you any good in application.cfm > > tag at the top of the test.cfm page. that can go in application.cfm along w/the setEncoding functions. > Is something simular possi

Re: German characters

2004-10-25 Thread Bram Plessers
what ver of cf are you using? > cfmx 6.1 do you know what char encoding you're using? > I allready included cfprocessing in my cfc I use a cfc to connect to my db >in application.cfm > (if your host allows) > > > >at the top of each page: > I set up this application.cfm When I dump the data

Re: German characters

2004-10-25 Thread Bram Plessers
I'll try those tips ! tnx ~| Get the mailserver that powers this list at http://www.houseoffusion.com/banners/view.cfm?bannerid=17 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182480 Archives: http://www.houseoffusi

RE: AOL and spam filtering

2004-10-25 Thread Gavin Brook
I've recently had to go through the whole AOL white listing process. Our mail server was experiencing a temporary block at AOL's mail servers. I phoned AOL and they explained that this temporary block was due to the fact that a certain percentage of the mail we were sending was being reported as sp

Re: German characters

2004-10-25 Thread Paul Hastings
Bram Plessers wrote: > I don't have access to cfadmin. i guess ask your host to handle this. what ver of cf are you using? do you know what char encoding you're using? not quite sure how you're acessing your db. if its via cf then you should also include: in application.cfm (if your host allo

  1   2   >