RE: Invalid parser construct eror

2002-02-20 Thread James Curran
truct eror No actually, keep the single quotes. > -Original Message- > From: James Curran [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, February 20, 2002 14:12 > To: CF-Talk > Subject: RE: Invalid parser construct eror > > > And the single quotes. >

RE: Invalid parser construct eror

2002-02-20 Thread James Curran
And the single quotes. #Evaluate(SumTotals.RegTotal + SumTotals.OTTotal)# - j -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 20, 2002 5:06 PM To: CF-Talk Subject: Re: Invalid parser construct eror Get rid of the ## inside the evaluate. Jer

RE: Force Pop-Up Window

2002-02-19 Thread James Curran
Use javascript in the popup to set the field value of a hidden field and don't give them an option to enter into a text field. - j -Original Message- From: James Taavon [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 19, 2002 10:31 AM To: CF-Talk Subject: OT: Force Pop-Up Window I a

RE: RGB / HEX color

2002-02-18 Thread James Curran
Can you send an example of your RGB color value items in your list? - j -Original Message- From: chris.alvarado [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 12:39 PM To: CF-Talk Subject: RGB / HEX color working on something and I need to figure out a way to convert a list

RE: Dynamic Images Using Coldfusion

2002-02-18 Thread James Curran
Forgot about the twice-a-day part. And screwed up the function: Try This: Just name your files: monday_morn.cfm monday_eve.cfm tuesday_morn.cfm etc. - j -Original Message- From: James Curran [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 11:33 AM To: CF-Talk

RE: Dynamic Images Using Coldfusion

2002-02-18 Thread James Curran
Try this: - j -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 11:26 AM To: CF-Talk Subject: Dynamic Images Using Coldfusion Hi I have the following script that changes an imagemap for each day of the week, however I would like it to

Color Coding Scheme in Studio

2002-02-15 Thread James Curran
(proper subject this time) Hey.. Anyone here know if it is possible to add an "element" to the Color Coding Schemes in CF Studio? Thanks. - j __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER

RE: Deleting Row from Array

2002-02-15 Thread James Curran
Hey.. Anyone here know if it is possible to add an "element" to the Color Coding Schemes in CF Studio? Thanks. - j -Original Message- From: Douglas Jordon [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 4:23 PM To: CF-Talk Subject: Re: Deleting Row from Array > Anyway, tha

RE: Loop Logic Question

2002-02-15 Thread James Curran
You can loop over the ads and insert the ad_ID into a array based on the weight. So in this case ad_1 is inserted 4 times, ad 2 three times etc. Then choose a random number between 1 and arrayLen(ad_array) The random selection will now output the weighted results. - j jim.curran technical.di

RE: page break when printing

2002-02-15 Thread James Curran
This is fairly straight-forward as well: - j jim.curran technical.director nylon.technology [EMAIL PROTECTED] -Original Message- From: BEN MORRIS [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 2:26 PM To: CF-Talk Subject: RE: page break when printing At the DC CFUG, thi

RE: CF/Flash Integration problem in NS 6

2002-02-08 Thread James Curran
Try using: flashfile.swf?var1=1&var2=2 etc. Just like CF. It works well. - j jim.curran technical.director nylon.technology six.west.fourteenth.street new.york.ny.10011 212.691.1134 [EMAIL PROTECTED] -Original Message- From: Scott Brady [mailto:[EMAIL PROTECTED]] Sent: Friday, Febru

RE: Color Pallette

2002-02-08 Thread James Curran
You'll need a in there too somewhere... -Original Message- From: James Curran [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 12:46 PM To: CF-Talk Subject: RE: Color Pallette If you want to use the 216 Web pallate, you can loop over the following HEX list: 00, 33

RE: Color Pallette

2002-02-08 Thread James Curran
If you want to use the 216 Web pallate, you can loop over the following HEX list: 00, 33, 66, 99, CC, FF With three Nested loops: #r##g##b#, - j . jim.curran technical.director nylon.technology six.west.fourteenth.street new.york.ny.10011 212.691.1134 [EMAIL PROTECTED] ...

RE: Access to SQL Server

2002-02-08 Thread James Curran
You need the: "Insert Into TABLENAME" Part -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Friday, February 08, 2002 11:53 AM To: CF-Talk Subject: Re: Access to SQL Server Thanks for your help. I have another question. Normally this query works (in Access)

RE: I need to do a sum on a secondary (left outer join) table...

2002-02-08 Thread James Curran
Here's an example i use: The table names don't make sense, but the logic is there SELECT master.master_ID, SUM(sub_table.cost) AS total FROMmaster INNER JOIN sub_table ON master.master_ID = sub_table.m

RE: How to Find Hidden Characters -- maybe related to whitesp...

2002-02-07 Thread James Curran
Try Searching for the following: chr(13) & chr(10) or any combo of the two. - j . jim.curran technical.director nylon.technology six.west.fourteenth.street new.york.ny.10011 212.691.1134 [EMAIL PROTECTED] .. -Original Message- From: Carol Bluestein [mailto

RE: CFMAIL missing messages

2002-02-07 Thread James Curran
Did you try examining the unsent messages in c:\CFUSION\MAIL\UNDELIVR? Compare those with the mail log in Cfadministrator.. Usually there are some smtp restictions at play here, such as malformed email addys or relay restrictions. I usually get around this by running SMTP server on the windows m

RE: CF-based DNS Manager software beta

2002-02-07 Thread James Curran
Are you building your own DNS server too or are you just building the CF to integrate with Windows 2k's built in DNS? - j -Original Message- From: Bill Davidson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 11:39 PM To: CF-Talk Subject: CF-based DNS Manager software beta

RE: looping inside cfquery - brain on vacation

2002-02-06 Thread James Curran
Are there -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 8:01 PM To: CF-Talk Try taking out the tags and output the loop to the screen surrounded with Then just check your SQL statements... It's usually standing out like a sore th

RE: Formatting a Date in MS SQL Access Query...Try Again

2002-02-06 Thread James Curran
you can store the time/date data in one field and make a view/query breaking out the separate parts into 2 new fields.. - j -Original Message- From: Bruce Holm [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 6:32 PM To: CF-Talk Subject: Re: Formatting a Date in MS SQL Acces

RE: CF Server / SQL 2K / IIS

2002-02-06 Thread James Curran
Nope. - j -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 06, 2002 4:52 PM To: CF-Talk Subject: Re: CF Server / SQL 2K / IIS > Is it necessary for IIS to be running on the SQL Server if our webserver is > a totally separate machine? No _

RE: Advanced CFCATCH Exception Types

2002-02-06 Thread James Curran
Try this: The only problem is that the file must complete the upload process, which could be a pain... - j . jim.curran technical.director nylon.technology six.west.fourteenth.street new.york.ny.10011 212.691.1134 [EMAIL PROTECTED] .. -