RE: Enterprise Manager connection to SQL Server

2001-06-20 Thread Costas Piliotis
To check the port in the client network utility, on the General Tab, make sure TCP/IP is an enabled protocol and click the properties button. The only option there is port number. Also, for each connection in the client network utility, You're mapping a server alias to the server's address.

Re: CF 5 scheduling

2001-06-20 Thread Michael Dinowitz
There's a setting on the scheduled task page to set a timeout for that task alone. You can set it there for 75 (I've got one running at 300). You can also set the url to have a requesttimeout=75 on it as a variable which will over-ride the default http://127.0.0.1/index.cfm?requesttimeout=75 The

Re: CFMAIL problem

2001-06-20 Thread Howie Hamlin
Check the CFMAIL log under cfusion\mail\logs. Is there anything in there or in the UNDELIVR folder? 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 - Original

RE: CF 5 scheduling

2001-06-20 Thread Dylan Bromby
Scheduling in the betas was buggy too. Hope the production release didn't carry those over. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 5:31 AM To: CF-Talk Subject: CF 5 scheduling Has anyone had any problems with the scheduling in

Re: CF 5 scheduling

2001-06-20 Thread Jeffry Houser
At 08:31 AM 06/18/2001 -0400, you wrote: Has anyone had any problems with the scheduling in CF 5? I've had CF 4.5.2 and earlier scheduled events running like a champ but 5 doesn't seem to want to budge. Anyone else with this experience? I've had bad luck with 4.5.2. But never used scheduling

Data Validation

2001-06-20 Thread Jerry Staple
Greetings I am designing a form that has a numeric field that has to have a number between a Min Max range.I Know about the CFFORM and min max validation,also the dreamweaver validat form behaviour,Are there any Other ways? Regards Jerry Staple Web Applications Developer Biznet

RE: XML with ColdFusion

2001-06-20 Thread ibtoad
I am glad you brought up this tag. I am curently playing around with it. I have no problem getting xml from a query using cf2xml, my question is how can I add a style sheet to the output to display html. I keep getting errors. Is this even possible? Rich -Original Message- From:

Re: XML with ColdFusion

2001-06-20 Thread Edward Smith
CFOBJECT TYPE=COM NAME=xml CLASS=MSXML2.FreeThreadedDOMDocument ACTION=CREATE cfset xml.async = false CFSET OK = xml.load(d:\inetpub\wwwroot\myfile.xml) CFOBJECT TYPE=COM NAME=xsl CLASS=MSXML2.FreeThreadedDOMDocument ACTION=CREATE cfset xsl.async = false CFSET OK =

Re: Foreign Key Constraint

2001-06-20 Thread Dick Applebaum
Why not put the foreign key in Appt_2, then SELECT ... FROM Appt_1 LEFT OUTER JOIN Appt_2 ON Appt_1.DEcisionID = Appt_2 YourForeignKey From the way you described the application, appt_2 is an extension (or child) of appt_1 The above is a clean wau to handle that

Re: OT: Coldfusion vs. ASP

2001-06-20 Thread Nathan Chen
I can see the Chinese with my NJ Star Chinese viewer except the second character under the column SQL LEFT 5 and CF LEFT 5 becomes ?? mark. It might be because my viewer doesn't work well, but give you an feedback. Nathan Chen Paul Hastings wrote: I've had to learn ASP to compliment my

RE: Data Validation

2001-06-20 Thread Garza, Jeff
Yes, validate on the server using CF. I always include server side validation to ward off those that turn off javascript (Opera/Netscape). CFIF (IsNumeric(form.yourfield)) AND (form.yourfield GT min) AND (form.yourfield LT max) Process form... CFELSE You must enter a number betweeen #min# and

CF Memory Spike

2001-06-20 Thread Lewis Steven
What would cause the CF Memory to all of a sudden spike? Steven Lewis ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

Re: CF Memory Spike

2001-06-20 Thread Michael Dinowitz
Lots of nested loops, file upload, most big data hits, etc. Try thinking like the server and say what am I doing and how many steps does it take or how big is the thing I'm working with. What would cause the CF Memory to all of a sudden spike? Steven Lewis

Re: CF Memory Spike

2001-06-20 Thread Chad Gray
As far as i know, no one has figured this out. It happens every once and a while. Some people say clean out the undelivered mail in the mail folder under the cfusion directory, and reboot the machine. At 12:00 PM 6/19/2001 -0400, you wrote: What would cause the CF Memory to all of a sudden

Re: CF Memory Spike

2001-06-20 Thread Michael Dinowitz
Actually, yesterday I had a big spike on a development machine. It turned out that I was calling a custom tag that did not exist. The machine must have been searching for it and trying everything it could to find it. After a little time the spike went down. As far as i know, no one has figured

Re: XML with ColdFusion

2001-06-20 Thread David Hannum
With SOXML, you can output just like any other query, thus, you can add style sheets. Dave - Original Message - From: ibtoad [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, June 19, 2001 11:49 AM Subject: RE: XML with ColdFusion I am glad you brought up this tag. I

CFEXECUTE and buffers?

2001-06-20 Thread Larry W. Virden
We encountered a rather bizarre situation where we were executing a shell command from cfexecute and were getting back only a portion of the output produced, followed by a timeout - regardless of how long we set the timeout value. Only when we had the shell write to a file, and then had

Shoping cart code

2001-06-20 Thread Rick Johnson
Hi Guys, Can you please tell me the sites where I can find Robust Shopping cart code in Coldfusion.. Many Thanks, Rick ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

query

2001-06-20 Thread Jones, Becky
the query i wrote below gives me a list of users that are assigned to an application. my question is, how do i get the list of 400 or so users that ARE NOT assigned to that application to display somewhere else on the page so i could then check a box to add them? i quess i could write a second

Re: CF Memory Spike

2001-06-20 Thread tom muck
Have you installed anything recently? Some older versions of MDAC will cause the CF server to go haywire. This turned out to be the problem on our machine. After installing the latest CF update to the server, the MDAC was modified in the process and wreaked havoc on the machine. I just

How to connect to PDF file

2001-06-20 Thread George Dong
Hi, I want draw some data from database with CF, and then put the data to PDF file, is this possible? If anyone can help me, I will very appreciate. thanks. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Re: How to connect to PDF file

2001-06-20 Thread Tobe Goldfinger
George, Here's the basic idea in a nutshell that we've used successfully. --- You need a real working version of Adobe Acrobat (not necessarily on the server, just on your desktop where you're working). Instead of creating the usual pdf file. create that file as what THEY call a

OT: synchronizing servers

2001-06-20 Thread Michael Lugassy
I'm trying to synchronize about 14,000 directories and over 500,000 files between two server. 10% of the files are changed daily, the rest are changed each 2, 3 or 5 days. anyone know a good program that does this? ~~ Structure your ColdFusion

RDS Service

2001-06-20 Thread Nick McClure
When the RDS Service is disabled, the CF Executive service still tries to start it. Is there anyway to keep the Executive from trying to start the RDS Service. It tries to start it every 2 seconds and this quickly fills up the log file. -- Nick McClure TransDigital Solutions

Re: CF 5 scheduling

2001-06-20 Thread Philip Brashear
I've had trouble with 5 and schedule routines too. I can run 'em fine manually, but when the time comes for the server to run 'em, the time just comes ... and goes. Nothing. Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

Re: CF 5 scheduling

2001-06-20 Thread Michael Dinowitz
Did you import the old keys from the registry? You may have over-written the HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Schedule\Scrip t key. This is the script to be run for a scheduled event. I've had trouble with 5 and schedule routines too. I can run 'em fine manually,

null paddedtrings and OLEDB

2001-06-20 Thread Don Vawter
cfprocparam cfsqltype=CF_SQL_INTEGER dbvarname=client_id value=#request.client_id# type=In cfprocparam cfsqltype=CF_SQL_VARCHAR dbvarname=appname variable=request.appname type=Out /cfstoredproc The above call returns the OUT variable (request.appname) padded with nulls when I use an

RE: CF 5 scheduling

2001-06-20 Thread Mark W. Breneman
Please tell me that it is not so. Please :-0. Anyone else having problems with CF5 scheduling? Scheduling is not some thing I can have run most of the time. Mark W. Breneman -Cold Fusion Developer -Network Administrator Vivid Media [EMAIL PROTECTED] www.vividmedia.com 608.270.9770

Re: FYI - host switched to CF5

2001-06-20 Thread Massimo Foti
Glad to see CrystalTech upgraded (I host an important site there and I am very happy about the service). Anyway, www.chicagowebs.com already had CF 5 since a few weeks even if it's not stated on their website, their are a newcomer with CF, but have a great reputation on NT hosting Massimo

Re: RDS Service

2001-06-20 Thread Chris Norloff
-- Original Message -- From: Nick McClure [EMAIL PROTECTED] When the RDS Service is disabled, the CF Executive service still tries to start it. Is there anyway to keep the Executive from trying to start the RDS Service. It tries to start it every 2

Sending something secure from one server to another.

2001-06-20 Thread Chad McCue
Hello people, I am currently looking for some good ideas for sending information from one server to another securely from cfscheduler. Someone mentioned cfhttp but I didn't think I was able to send things across servers via this method. If there is any good suggestions, I would love to

IsNumeric weirdness - can someone explain this?

2001-06-20 Thread Evan Lavidor
Here's the test code: - cfset myvariable = 3D1 cfoutput p#IsNumeric('3D1')#/p p#myvariable#/p p#IsNumeric(myvariable)#/p /cfoutput This returns: Yes 3D1 Yes - WTF?!? Shouldn't I be

RE: Ambed another application within browser window

2001-06-20 Thread phumes1
Hi, Would anyone know if it's possible using CF to run another application (UltraEdit-32) within a browser window? Am I making sense? ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Server Log

2001-06-20 Thread Chris Jenkins
I have set in the CF administrator to timeout request over 120 seconds. However, in my logs i see Warning,TID=482,06/19/01,11:13:10,Template: d:\Inetpub\wwwroot\channel_products.htm, Ran: 335 seconds. Why is this?? Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

RE: Thumbnail creation from Quark/Illustrator/Freehand

2001-06-20 Thread Bill Poff
-Original Message- From: Chad Gray [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 11:58 AM To: CF-Talk Subject: Thumbnail creation from Quark/Illustrator/Freehand Has anyone see an application that can create a thumbnail from Quark/Illustrator/Freehand documents? I have an

RE: Thumbnail creation from Quark/Illustrator/Freehand

2001-06-20 Thread Bill Poff
Chad, You can use ImageRobot from JASC which will read .AI and .EPS files (as well as a zillion others) and output a number of different graphic formats. You can control image size on the fly. I doubt you will find anything that will parse a Quark or Freehand native document. --Bill

Re: Unicode ( was OT: Coldfusion vs. ASP)

2001-06-20 Thread sebastian palmigiani
on 6/18/01 11:58 PM, Kay Smoljak at [EMAIL PROTECTED] wrote: I'd be really interested in finding out about these workarounds... are there any online resources? Anything to keep me away from ASP! One of the work arounds that I have used is to use the URLEncodedFormat() around the unicode

Is it possible to break out the code in a table from a file that is read in

2001-06-20 Thread Larry Juncker
I have a file that has the code in it for a table. Is there a way that I can break out this table code into say q query or something that can be used? I only want parts of the table code. For instance: TABLE TR TDHeader/TD TDCode1/TD TDCode2/TD /TR /TABLE I wan to be able to

CF's handling of queued emails

2001-06-20 Thread W Luke
Hi, This is something I'll take up with my hosters tomorrow morning, but it brought up another question that cf-talk will probably know better. Several emails generated from cfmail today weren't sent, for some reason - either they have failed, or they're in the queue. It's been an hour or more

CFMail - Question: Sending to a different mail server

2001-06-20 Thread Larry Juncker
I currently am set up on mail.server1.com I would like any emails that I send out to appear ss being sent from mail.server2.com How do I make my email messaage in the tools, options area to show mail.server2..com instead of mail.server1.com? Any quick help on this would be greatly appreciated

Re: IIF vs if,else

2001-06-20 Thread Michael Dinowitz
IIF is much slower than a standard CFIF. 'nuff said. Ok, after a bit of testing... can anyone tell me what the advantage of IIF over if (cfif or if () {}), else (cfelse or else {}). I tested a simple block of code using IIF and cfifcfelse/cfif IIF ran twice as slow... I can't see any major

Re: Desperate for Hosting URGENT WARNING URGENT

2001-06-20 Thread phumes1
I use http://www.media3.net/ and I find them excellent. At 02:06 AM 6/20/2001 +0100, you wrote: Dear Heidi: IF YOU or MICHAEL LUGASSY or ANYONE ELSE ON THIS LIST are customers of CIHOST, be afraid, be VERY afraid. Maybe you've seen CIHOST listed on a Top Hosting Lists website? If so, go

Re: CFX_Excel Tag not working with CF 5.0

2001-06-20 Thread Jim Watkins
The CFX_Excel is in the tag gallery and allows you to populate an Excel template stored on your server with information from a SELECT statement. The Excel template is then downloaded to the clients computer and can be saved or opened in Excel. Jim - Original Message - From: Paul Smith

Re: CF 5 scheduling

2001-06-20 Thread Jim Watkins
No problem here with scheduling after installing CF 5 pro subscription upgrade. - Original Message - From: Michael Dinowitz [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, June 18, 2001 8:31 AM Subject: CF 5 scheduling Has anyone had any problems with the scheduling in

RE: pdfs, fds oh my

2001-06-20 Thread David Shadovitz
You are populating GradesForPDF in a query loop, so CurrentRow is available. But are you filling in the FDF in a loop? Can't tell from your code snippet, but you should be doing something like this: CFLOOP FROM=1 TO=#GetGrades.RecordCount# INDEX=i /FDF /Fields [ /V (#GradesForPDF[i][1]#)/T

Oracel Error 604 ?

2001-06-20 Thread JAIME HOI
hi did anyone encounter this error in CF before? Oracle Error Code = 604 ORA-00604: error occurred at recursive SQL level 1 ORA-01000: maximum open cursors exceeded i did not use any cursor in my CF file, but why do i get this error? Any help

CFQUERYPARAM broken in CF5?

2001-06-20 Thread Don Vawter
When I attempt to use cfqueryparam in CF5.0 I get a compile error that the attribute dbname is not an allowable attribute for that tag. Since the VTOM uses it and it is in fact a required attribute I wondered if anyone has had this problem? TIA Don

OT: Don't PRE-REGISTER New Top Level Domains

2001-06-20 Thread David Hannum
If any of you are planning going with the new TDL's (.biz, .info, .pro, ..name) don't pre-register. Pre registration does not guarantee that you'll get the name, and rip off companies like www.newdomainfactory.com spell out that first, they don't guarantee that if you pre-register with them,

Re: FYI - host switched to CF5

2001-06-20 Thread Massimo Foti
Brian Hogue [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED]... Did you get CrystalTech's email? It's early in the morning here and I am still at home, I will check my email as soon as I will arrive at the office. I wish Pat Stangler and ChicagoWebs the best. Why don't they mention

RE: Data Validation

2001-06-20 Thread David Shadovitz
Here's a method from David Flanagan's JavaScript: The Definitive Guide, 3rd Edition, Example 16-2, Performing Form Validation, http://examples.oreilly.com/jscript3/text/16-2.txt -David script language=JavaScript1.1 function verify(f) { var msg; var empty_fields = ; var errors = ;

Any probs with CF5 COM?

2001-06-20 Thread Dylan Bromby
I know this vague, but has anyone experienced any odd problems with CF5.0 and COM objects? --Dylan ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

Re: Oracel Error 604 ?

2001-06-20 Thread David Shadovitz
Jaime, Are you using stored procedures? See http://www.allaire.com/Handlers/index.cfm?ID=18372Method=Full -David === Jaime Hoi will have written: did anyone encounter this error in CF before? Oracle Error Code = 604 ORA-00604: error

CFCOOKIE Session variable problems with IE 5.0 on Mac

2001-06-20 Thread David Laing
Hi All. I've been battling with a problem on with IE5.0 on the Mac for the past few hours and wonder if anyone has a) Had a similar experience b) Knows of a solution. My script does the following. 1. It turns session management on: cfapplication name=RugbyScene sessionmanagement=Yes

Files Explorer !!

2001-06-20 Thread Hamid Hossain
Hi All, I want to make Files Explorer showing me directories and files of a specified directory. I don't know if it is available for coldfusion to offer Full-Directory structure with all sub-directories. any suggestions, Hamid Hossain ~~

OT: STRONG REFRESH PROBLEM

2001-06-20 Thread Michael Lugassy
I'm having a weird problem with my site and local ISP: I update pages frequently on our www.imvamp.com page, but somehow new pages are not retrieved immediatly by our local users who use ISP1!! ISP2 local users and all other people from abroad can view the new pages just fine. ISP1 takes some

CF threads and multiprocessor servers

2001-06-20 Thread Earl, George
How does using a multiprocessor web server affect the number of concurrent threads that can run in CF? For example, other things being equal, can a quad processor server handle four times as many threads as a single processor server? Or is the number of threads tied into the operating system?

Passing text files across servers????

2001-06-20 Thread Chad McCue
Hello people, I am currently looking for some good ideas for sending information from one server to another securely from cfscheduler. Someone mentioned cfhttp but I didn't think I was able to send things across servers via this method. I am open to any suggestions. Thanks.

ColdFusion 5 now available on all platforms

2001-06-20 Thread Phil Costa
Macromedia is proud to announce that all editions of ColdFusion Server 5 on all supported platforms have been released to manufacturing and are available immediately for evaluation and purchase. Evaluation versions of ColdFusion 5 are available for Windows, Linux, Solaris, and HP-UX. Experience

More CF 5 stuff - CFMAIL

2001-06-20 Thread Michael Dinowitz
OK, I've got 2 other things that have popped up that may be CF 5 or not. I'd like to know of anyone else has seen them. 1. 65,000+ 0 byte files were in the undelivr directory 2. a 3k file with nothing but spaces was in the spool. This file caused all mail to just hang. I'm routing about 2000

Re: OT: Coldfusion vs. ASP

2001-06-20 Thread Paul Hastings
I can see the Chinese with my NJ Star Chinese viewer except the second character under the column SQL LEFT 5 and CF LEFT 5 becomes ?? mark. It might be because my viewer doesn't work well, but give you an feedback. thanks. yeah thats supposed to happen. both LEFT in cf substring in sql

RE: Any probs with CF5 COM?

2001-06-20 Thread David Shadovitz
I'm not running 5.0, but Dain Anderson pointed out to me that the order of the arguments to CreateObject has changed. Beta 3: objWord = CreateObject(COM, Word.Application, Local); RC1: objWord = CreateObject(COM, Local, Word.Application); It also may be that looping over collections sometimes

Re: Any probs with CF5 COM?

2001-06-20 Thread Michael Dinowitz
Looping over collections inside CFSCRIPT doesn't work. This might be what he was referring to. One of the major pet peeves we had. I'm going to check on that attribute order switch. They said that they were moving it back to the original for the full release. I'm not running 5.0, but Dain

atswebnet?

2001-06-20 Thread Michael Lugassy
Someone tried atswebnet? Robert, the webmaster and support person seems very nice and proffesional. Thanks, Michael Lugassy IT/WEB Specialist Interactive Music Ltd. I don't live in fantasy; I just work there... http://www.imvamp.com [EMAIL PROTECTED]

RE: Oracel Error 604 ?

2001-06-20 Thread Semrau, Steven L Mr SRA
ORA-00604: error occurred at recursive SQL level num Cause: An error occurred while processing a recursive SQL statement. A recursive SQL statement is one that applies to internal dictionary tables. Action: If the situation described in the next message on the stack can be corrected, do so;

Re: CF's handling of queued emails

2001-06-20 Thread tom muck
By default ColdFusion processes the mail in the queue every sixty seconds, and sends 100 emails. You can reduce this to 15 seconds in the Administrator. If it's in the queue, it should go out. If it's in Undelivered, you can cut/paste them back into the queue, or do it programatically, and

Re: atswebnet?

2001-06-20 Thread Clint Tredway
I use atswebnet and I am very happy with their service. -- Original Message -- From: Michael Lugassy [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 20 Jun 2001 16:46:14 +0200 Someone tried atswebnet? Robert, the webmaster and support person

Re: Foreign Key Constraint

2001-06-20 Thread Erik Carroll
This will work, just make sure that you insert the record into tblAppointment_2 before updating the tblAppointment_1 to avoid a constraint violation. One thing to consider is the type of relationship between the two tables. The way you are setting it up now is each tblAppointment_1 record can be

Re: atswebnet?

2001-06-20 Thread Dave Hannum
I've got a couple of small sites on there. Yes, Robert responds very quickly and is always very helpful! Up time has been fine to date. Dave - Original Message - From: Michael Lugassy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, June 20, 2001 10:46 AM Subject:

This is a test. Please ignore.

2001-06-20 Thread hearl
This is a test. Please ignore. --- Hubert Earl ICQ#: 16199853 My Jamaican Art, Craft More Online Store: http://www.angelfire.com/ny/hearl/link_page_for_go_jamaica.html Check out the art print bargains available! Beautiful prints as low as US$7.50 each, less if you purchase 2 or more.

Re: IIF vs if,else

2001-06-20 Thread Avi Flax
Cameron, it's well known that IIF is much slower. As far as I know, the only real advantage to using it is that it's useful in some cases because you can write less code, which can be easier to read. And it is useful if you actually need to return some evaluated expression. Avi At 11:02 AM

Re: IIF vs if,else

2001-06-20 Thread Gary Groomer
The only advantage would be if you, as a coder, prefer the IIF() format over the CFIFCFELSE... format. Where performance is an issue, stay away from the use of ColdFusion's dynamic functions such as IIF() as performance will definitely suffer. Gary Groomer - Original Message - From:

RE: Desperate for Hosting URGENT WARNING URGENT

2001-06-20 Thread Marla S. Jenkins
I unfortunately have to agree about CIHost. Their prices are pretty good but I had my site hosted there for a couple of years before I moved. It goes down constantly and there was a time (pre-ColdFusion conversion when my site was on Unix) that my site was down completely for 6 weeks. I

Sending Newsletters

2001-06-20 Thread luz lopez
Hello All, I would like to know if anyone could recommend an application to send 30,000 weekly newsletters to our clients. We are looking for a program that is able to detect duplicate emails, validate email addresses and keep track of the undeliverable emails. My company does not want to

SQL Server query

2001-06-20 Thread kraybill
I'm having difficulty getting a test template to work after setting up MSDE and Enterprise Manager on a dev laptop. I'm a newcomer to SQL Server, so it may be something obvious... I get this error: - CMemoryException: unknown cause

test

2001-06-20 Thread Art Broussard
Just checking. Its been a few days and no mail. : ( Art Never put your finger where you wouldn't put your nose. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

OT: Hover attribute with two different colors

2001-06-20 Thread Mike Amburn
Suppose I have two links on a page, one link is white on a dark background and one is black on a light background. Is there any way to get each to hover (i.e. CSS hover) a different color or is the hover property global to the entire page? -mike

RE: Passing Javascript variables to CF?

2001-06-20 Thread Costas Piliotis
Because client side processing occurs AFTER the page loads, you would likely need to store these values as a session variable. Why not use textarea style=width: 50%/textarea instead? Only 5% of the people run Netscape, so it'll probably take six or seven months before anyone is effected by this

RE: IIF vs if,else

2001-06-20 Thread Costas Piliotis
Note - this was written in 1280 x 1024 maximized. This will probably not look too great on smaller resolutions. I suggest copying this to notepad and turning wordwrap off to view properly... Iif can reduce the amount of code you need to write. For example: cfset myValue = 1 input

Re: Unicode ( was OT: Coldfusion vs. ASP)

2001-06-20 Thread Paul Hastings
That's really interesting. I can't see the Japanese text but I'm assuming this is because I don't have the appropriate font installed? probably though it seemed the w2k boxes in my shop read that page as is. as you can see, the workarounds can be as simple as a tiny bit of js clientside.

RE: Desperate for Hosting URGENT WARNING URGENT

2001-06-20 Thread Brian L. Wolfsohn
At 10:22 AM 6/20/01, you wrote: I can second (or third) media3... We've been with them for about 4 years now, have 4 colo machines, and are very happy with their service. I unfortunately have to agree about CIHost. Their prices are pretty good but I had my site hosted there for a couple of

Re: Verity and unicode; Was: Coldfusion vs. ASP

2001-06-20 Thread Marius Milosav
Questions for people using double byte languages: 1) were you able to create, maintain and search verity collections based on database info, where the info is in a double byte 2) can the CFX_IMAGE tag by Manner Jukka to write double byte text an a gif. Thank you Marius Milosav

RE: SQL Server query

2001-06-20 Thread Mark Warrick
You've got a semi-colon at the end of your SQL statement. Although this would work fine in the SQL Query tool, within a CFQUERY it will not. Also, you don't need to specify the entire object path to the table, just the tablename itself. This has nothing to do with the error you got; it's just

ER diagrams book

2001-06-20 Thread Rick Johnson
Hi guys, Do you know about some good books on ER Diagrams... Thanks a lot, Rick ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: Files Explorer !!

2001-06-20 Thread Mark Warrick
Hamid, Open up the /cfide/administrator/filedialog/index.cfm file. This will show you exactly how you can create an applet tree similar to the windows explorer. Of course, you'll need the decrypter. ---mark Mark Warrick - Fusioneers.com Personal Email:

RE: Hover attribute with two different colors

2001-06-20 Thread Pete Freitag
Mike You can use CSS classes to achieve this... style A.LightLink { color : white; } A.DarkLink { color: black; } A.LightLink:Hover { color : yellow; } A.DarkLink:Hover { color : red; } /style Then specify the class of the link... a href=this

Ensuring correct data placement on submission of a form

2001-06-20 Thread hearl
Hi, I'm building an form allowing users to apply for insurance to cover money stored in business premises. Each applicant may have more than one premises, and each premises may have more than one safe. Because of this, I've built separate tables to store the data on each customer, premises

Re: SQL Server query (Followup)

2001-06-20 Thread kraybill
I've narrowed this issue down a bit... Seems the query works fine if it reads: SELECT field1, field2, etc FROM Table but it throws an error with SELECT * FROM Table Running MSDE (SQL Server 7) and CF 4.0.1. Why would the asterisk throw an error? Gene Kraybill On 20 Jun 2001, at 10:34,

How to set up jumps within a CF form?

2001-06-20 Thread hearl
Hi, I'd like to enable the user of a form I'm creating to be able to jump from one section to the other. However, the HTML code for such a jump contains the character '#' (as in A href=displayform.cfm#continue/A) which the CF server tries to interpret, resulting in an error message (I guess

RE: SQL Server query

2001-06-20 Thread Andy Ewings
You've got a semi-colon at the end of your SQL statement. Although this would work fine in the SQL Query tool, within a CFQUERY it will not. I don't think this is true - you can legally use semi colons in a cfquery providing you are using ODBC 2 as this supports the use of multiple SQL

RE: SQL Server query

2001-06-20 Thread kraybill
I've discovered the CFQUERY actually works fine if the SQL is like this: SELECT field1, field2 FROM Table (with or without the semi-colon) but it fails on: SELECT * FROM Table Could this be an MDAC version issue? When I installed Ent Mgr, it apparently installed MDAC 6, according to

Re: Verity and unicode; Was: Coldfusion vs. ASP

2001-06-20 Thread Paul Hastings
1) were you able to create, maintain and search verity collections based on database info, where the info is in a double byte if by double byte you mean unicode, then according to verity, the newer stuff in cf5 *might* work as they say they're using unicode. our shop hasn't used verity for db

RE: IsNumeric weirdness - can someone explain this?

2001-06-20 Thread Andrew Tyrone
-Original Message- From: Evan Lavidor [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June 19, 2001 3:59 PM To: CF-Talk Subject: IsNumeric weirdness - can someone explain this? Here's the test code: - cfset myvariable = 3D1 cfoutput

Re: How to set up jumps within a CF form?

2001-06-20 Thread Don Vawter
Escape the hash - displayform.cfm##continue - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, June 20, 2001 9:43 AM Subject: How to set up jumps within a CF form? Hi, I'd like to enable the user of a form I'm creating to be able to jump

RE: Desperate for Hosting

2001-06-20 Thread Bill Simpson
Check out www.220solutions.com -Original Message- From: Michael Lugassy [mailto:[EMAIL PROTECTED]] Sent: Monday, June 18, 2001 10:13 AM To: CF-Talk Subject: Re: Desperate for Hosting Why not Cihost? (http://www.cihost.com) Checkout NT Shared Specials (!) 1gb storage, 20gb bandwidth,

RE: How to set up jumps within a CF form?

2001-06-20 Thread Garza, Jeff
I'm probably the 345th person to answer this, but when using pounds within a CFOUTPUT block you have to escape the pound sign... To get # to print out use ## HTH, Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com

RE: CFQUERYPARAM broken in CF5?

2001-06-20 Thread Garza, Jeff
There is a quip on www.allaire.com that the dbtype attribute for CFQUERYPARAM shouldn't be there. It's not a valid attribute for that tag. See http://www.allaire.com/documents/cf50/cf5_update.htm HTH, Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED]

RE: More CF 5 stuff - CFMAIL

2001-06-20 Thread Dylan Bromby
Michael; I send about 4,000-5,000 emails daily with CFMAIL on CF5.0 and I don't see that. Every few weeks I send 50,000-100,000 in one batch. I haven't actually done that in a month or so, so I don't know how that will run on CF5.0. When I do, I'll let you know if anything anomalous happens.

RE: STRONG REFRESH PROBLEM

2001-06-20 Thread Mark Warrick
The simplest way to prevent proxies from caching your pages is to appened a random number the end of each query string (URL) in the website. ---mark Mark Warrick - Fusioneers.com Personal Email: [EMAIL PROTECTED] Business Email: [EMAIL PROTECTED] Phone:

Is it possible to break out the code in a table from a file that is read in

2001-06-20 Thread Larry Juncker
I sent this post yesterday and did not receive any kind of response, so I wanted to try once more. Excuse me if it is too simple, but I am puzzled on it. I have a file that has the code in it for a table. Is there a way that I can break out this table code into say q query or something that can

Re: More CF 5 stuff - CFMAIL

2001-06-20 Thread Michael Dinowitz
Same ones or different? What I've been seeing is that a piece of mail will get 'stuck' and locked. It will not get sent, it will not get moved and it will not get deleted. This message will stop all other messages from being sent. To make matters worse, when CF wants to 'move' it to the

  1   2   >