RE: CF-Studio 4.52

2001-01-09 Thread Tony Gruen
I am not sure about the hotkeys but the snippets are files on your hard drive. I back mine up regularly. Look in the allaire/ install directory for a directory names UserData\Snippets and just copy them to disk/network. Perhaps hotkeys are thereabouts also? Tony Gruen Development/SFNetworks

RE: Storing images in SQL

2001-01-09 Thread Tony Gruen
Rick, Utilizing CF to simply identify the location of the image is simpler for several reasons. I consider myself much junior to the great minds on this forum but I will humbly offer my experience. Simply put, speed and flexibility are your bonus payoffs. Key points for flexibility are: - you

RE: Hierarchial Display

2001-01-09 Thread DeVoil, Nick
Wat do you mean by a tree structure? A struct with nested structs with nested structs like what WDDX gives you. Nick ** Information in this email is confidential and may be privileged. It is intended for the addressee

RE: Storing images in SQL

2001-01-09 Thread Dave Watts
Does anyone have any experience storing images in SQL 7.0, and retrieving them in CF? Its far faster, easier and a lot less messy to store the images's name and then dynamically construct the path information. I've asked this question before also. And got similar responses as

RE: CFMAIL and hair loss?

2001-01-09 Thread Aidan Whitehall
Solved. -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services http://www.netshopperuk.com/ Telephone +44 (01744) 648650 Fax +44 (01744) 648651 ~~ Structure your ColdFusion code with Fusebox. Get the official

RE: AvantGo channels w/CF?

2001-01-09 Thread Edward Chanter
I'm glad it worked, I also find the scheduler in CF is problematic... Thinking about it some more on a brain that's not been awake for 16 hours, you could also do it directly using cfhttp to call the page and save it to a flat file then cfinclude that file That would take out the vagaries of

RE: CFMAIL and hair loss? - spoke too soon

2001-01-09 Thread Aidan Whitehall
Is there a limit to the amount of text you can write in an HTML e-mail sent using CFMAIL? variables.Invoice forms the body of the e-mail. If it goes beyond about 990 bytes, you get the e-mail, but it's blank. Less than that and the e-mail is fine. And if you output the e-mails to the screen,

RE: Query confusion - CF not recognising query name

2001-01-09 Thread Philip Arnold - ASP
Replies to all included; here's a real silly question but is cfset variables.IDCount=getPeopleInfo.RecordCount written exactly like this or is it written like cfset variables.IDCount=#getPeopleInfo.RecordCount# leaving the # off could be your problem. You are kidding, right? CF hasn't

RE: cfquery

2001-01-09 Thread Philip Arnold - ASP
Hello everyone. I am running into a problem with my cfquery tag and I was wondering if anyone out there could give me a hand with this. Basically I am querying a database that has a series of records. But when I output the information from the database I only want to select the newest

RE: Does Studio have Built-in Scripting?

2001-01-09 Thread Paul Johnston
There is such a thing as ActiveScript in Studio so that you can build little code things to do whatever you want. It's not hugely functional but you can pull in COM objects to do whatever you want. I wrote some ActiveScript to put documentation into pages that didn't have any. Click a button,

RE: CPU 100% (again, sorry) - with screen shot and theory :)

2001-01-09 Thread Michel Vuijlsteke
Perhaps this can help someone help me: screen shot of the performance monitor thingy on the task manager when CF has its fit: http://www.argl.be/images/cf_yuk.gif. The first arrow points to my loading this EXACT page: ---cutstuderen.cfm--cut--- table align="right" cellpadding=5

RE: cfquery

2001-01-09 Thread JustinMacCarthy
Thats Sql Server only (access too?) . cfquery maxrows=1 might be better Justin cfquery name="OutputUnitContent" datasource="camp" dbtype="ODBC" Select top 1 * from UnitPages where ArticleUnit = '#form.units#' order by ArticleDate DESC /cfquery This will literally

RE: Query confusion - CF not recognising query name

2001-01-09 Thread JustinMacCarthy
Why not put debugging on for your IP only??? I can't put debugging on as it's a production server - I don't have the data on my test machine to use, and the amount of data is huge to download As I said - it's confusing the hell out of me. Philip Arnold Also you chould RUN SQLtrace to see

RE: cfquery

2001-01-09 Thread DeVoil, Nick
Thats Sql Server only (access too?) Access too. ** Information in this email is confidential and may be privileged. It is intended for the addressee only. If you have received it in error, please notify the sender

RE: cfquery

2001-01-09 Thread Philip Arnold - ASP
cfquery name="OutputUnitContent" datasource="camp" dbtype="ODBC" Select top 1 * from UnitPages where ArticleUnit = '#form.units#' order by ArticleDate DESC /cfquery This will literally return the top row, and nothing else Thats Sql Server only (access too?) .

CF in South Carolina??

2001-01-09 Thread Richard L Smith
Hey everyone: Is just my imagination, or am I the only CF programmer user in South Carolina. It seems the Palmetto state is addicted to M$ and AS400. Rick ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Re: Query confusion - CF not recognising query name

2001-01-09 Thread jeffc
Phillip, A couple of suggestions. I use debugging on a production servers all the time. If you have access to the CF Admin, I turn on debugging for my IP address. Since I'm on dial-up and my ISP drops my connection all the time. I have to change IP addresses that the debug shows on about every

RE: CF in South Carolina??

2001-01-09 Thread Kurt Ward
Rick- No! There are 8 Coldfusion developers where I work- from senior to just learning! Also, Bosch Automotive in Charleston uses CF for some intranet type projects, and I can think of several other businesses or individuals who use CF. ;-) Kurt -Original Message- From: Richard L

RE: Query confusion - CF not recognising query name

2001-01-09 Thread Philip Arnold - ASP
Why not put debugging on for your IP only??? D'OH - forgot you could do that... Also you chould RUN SQLtrace to see whats going on. These kind of issues Usually are a result of silly mistakes. I know mind are. Get someone else there to look at the code, might pick it up staight away. 2

RE: CPU 100% (again, sorry) - with screen shot and theory :)

2001-01-09 Thread Robert Everland
Where is the application.cfm and onrequestend.cfm with all of this. If there isn't a copy of those 2 files in the directory for this site it will recurse until it finds one. Maybe there is an application.cfm and or onrequestend.cfm page somewhere that is doing some wierd stuff. Robert Everland

RE: DELPHI - where does it fit in the scheme of things?

2001-01-09 Thread Clint Tredway
We use Delphi and CF here. The main reason for that is most of our products have some standard application interfaces as well as web interfaces. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 09, 2001 1:48 AM To: CF-Talk Subject: RE: DELPHI -

RE: Query confusion - CF not recognising query name

2001-01-09 Thread Philip Arnold - ASP
A couple of suggestions. I use debugging on a production servers all the time. If you have access to the CF Admin, I turn on debugging for my IP address. Since I'm on dial-up and my ISP drops my connection all the time. I have to change IP addresses that the debug shows on about every half

Re: Replacing Special Characters in Database

2001-01-09 Thread RJR Computing Solutions, Inc.
Since the database is in Access, you can export the table to a text file, manipulate the data using find and replace functions in many editors, and import the data back in. The database is live, but I would expect your product table is static enough to not change while you do the data cleanup.

RE: DELPHI - where does it fit in the scheme of things?

2001-01-09 Thread Joe Sheble aka Wizaerd
For those that are using Delphi, what role does it play in the internet? Is it being used strictly for COM access with CF, or are there hidden web abilities some of us may be unaware of? At 07:45 AM 1/9/01 -0600, you wrote: We use Delphi and CF here. The main reason for that is most of our

RE: DELPHI - where does it fit in the scheme of things?

2001-01-09 Thread Clint Tredway
We use it for all of our COM stuff and for all of our stand alone Windows apps. Delphi can be used as a CGI by using its ISAPI capabilities. There are those that argue that Delphi's ISAPI is superior(in speed) to ASP,CF, or whatever. I still think that it is personal preference as to what any

Re: DELPHI - where does it fit in the scheme of things?

2001-01-09 Thread Marius Milosav
Delphi is a client/server RAD development tool, developed by Borland (Inprise or whatever they are called this days). Main competitors are (were) Visual Basic and PowerBuilder. If I'm not mistaken ColdFusion Studio was built using Delphi. form more information go to Borland home page. Marius

RequestTimeout

2001-01-09 Thread Raley, Scott M (MIL)
I have a query that takes a while to produce results. It takes longer then the allowed 75sec timeout period. I've put the ?RequestTimeout=500 on the url but I continue to get the error msg about the 75sec timeout period. Why is this override not working or is there something else I should try?

RE: Storing images in SQL

2001-01-09 Thread Al Musella, DPM
One of the "smaller" issues is backing up.. if the images are stored in the database, they will also be backed up every time you back up the database. If you have a lot of graphics, it will greatly increase the costs (time, media and slowing down the website) to do your daily

Stripping CRs and LFs

2001-01-09 Thread Bryan Batchelder
What is the best way to strip CRs and LFs from a string? StripCR() gets the CRsbut I still have linefeeds (or CR/LF combos...) left in the string. I am doing this as part of cleaning up data from an SQL server to put into a ..CSV file...and well, CSV doesn't handle random CR/LF very well

Re: DELPHI - where does it fit in the scheme of things?

2001-01-09 Thread Jamie Keane
I remember that Nick Bradbury's original releases of Homesite (before HS was bought by Allaire, which begat CFStudio...) was a Delphi app. It would stand to reason, then, that the current releases at least have some Delphi floating around in them. And wasn't there a known bug with how Delphi

RE: CPU 100% (again, sorry) - with screen shot and theory :)

2001-01-09 Thread Ryan
At 08:44 1/9/01 -0500, you wrote: Where is the application.cfm and onrequestend.cfm with all of this. If there isn't a copy of those 2 files in the directory for this site it will recurse until it finds one. Maybe there is an application.cfm and or onrequestend.cfm page somewhere that is doing

RE: CPU 100% (again, sorry) - with screen shot and theory :)

2001-01-09 Thread Daniel Lancelot
you sure on that??? I often use onrequestend in places where I dont use application.cfm - primarily for debugging... -Original Message- From: Ryan [mailto:[EMAIL PROTECTED]] Sent: 09 January 2001 14:25 To: CF-Talk Subject: RE: CPU 100% (again, sorry) - with screen shot and theory :)

RE: Multiple Resultsets from a Stored Procedure

2001-01-09 Thread Karen Jefferson
We use multiple resultsets (up to 4) with Sybase stored procedures and it works fine. We're using the native drivers not ODBC. I don't know about any CF preferences or limitations with them. Karen Jefferson VetCentric -Original Message- From: [EMAIL PROTECTED] [SMTP:[EMAIL

Re: Stripping CRs and LFs

2001-01-09 Thread Jamie Keane
Couldn't you replace all instances of Chr(13) (I think that's right...) with a null? -- Jamie Keane Programmer SolutionMasters, Inc. 9111 Monroe Rd., Suite 100 Charlotte, NC 28270 www.solutionmasters.com 704.849.7771 x 228 Voice 704.849.9291 Fax -Original Message- From: Bryan

RE: Stripping CRs and LFs

2001-01-09 Thread Sean Daniels
What is the best way to strip CRs and LFs from a string? cfset crlf = chr(13)chr(10) cfset stripped = replacelist(myString,crlf,"") Should do the trick. - Sean ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Re: Storing images in SQL

2001-01-09 Thread Larry C. Lyons
Rick, Others have dealt with speed and storage issues regarding images and databases. Here's how I handle things. Rather than calling a BLOB object. What happens when your client wants to change a significant proportion of the images - its much easier copying the new images to the appropriate

RE: Stripping CRs and LFs

2001-01-09 Thread Jason Lees (National Express)
Use the Replace function. The best way is to do a replace for CR and then one for LF. as they could be in any order, generally though it should be CRLF. The character codes for LF is 10 and CR is 13 (I think!). I this should work cfset x=#Replace(x,chr(13),"","ALL")# cfset

RE: CPU 100% (again, sorry) - with screen shot and theory :)

2001-01-09 Thread Michel Vuijlsteke
There is no application or onrequestend anywhere in sight. I removed those on purpose because they _do_ contain calls to a database and more compicated ColdFusion. There's no issue of looking for those files "higher up" either: all files are in the root directory of a virtual server

RE: Multiple Resultsets from a Stored Procedure

2001-01-09 Thread mark_wimer
When you say that the third select is the one which returns the data, do you mean successfully, while the other two fail? Or that the first two selects do not return data because they are not supposed to? I assume it's the former. It sounds like if you run it with only one crprocresult tag,

RE: CFMAIL High Volume

2001-01-09 Thread Len Conrad
we use ListServ HPO version www.lsoft.com touted as the best there is currently. We enjoy it. But it costs many $1000's, AND per year, which are enjoyable otherwise. This may be considered an "unfair comment" in a commercial software forum, but I have delivered a sustained 1000 msgs/minute

RE: CPU 100% (again, sorry) - with screen shot and theory :)

2001-01-09 Thread Dave Watts
There's no issue of looking for those files "higher up" either: all files are in the root directory of a virtual server (http://www.ransel.be if you're curious) (no files there now, sorry, don't want my test server to crash all the time :). Just as a warning, but CF doesn't stop looking

RE: Stripping CRs and LFs

2001-01-09 Thread Bryan Batchelder
Ahh, darnit, I used Replace before, using Chr(10) and Chr(13) but forgot about the scope portion of Replaceguess I thought it was optional. thanks for the help everyone. --b -- Bryan BatchelderHome:727.547.1322 Web Application

RE: CPU 100% (again, sorry) - with screen shot and theory :)

2001-01-09 Thread Dave Watts
Actually it looks for onrequestend.cfm wherever it finds application.cfm. It will not keep looking past the directory where it finds application.cfm for onrequestend.cfm. I don't know what happens if it finds onrequestend.cfm before it finds application.cfm you sure on

SSL

2001-01-09 Thread Nathan Stanford
I am told by my fellow developer that you can not use custom tags and includes in a page that is using SSL? Is this true? Nathan Stanford www.cftipsplus.com Free CF weekly e-zine ~~ Structure your ColdFusion code with Fusebox. Get the

RE: SSL

2001-01-09 Thread Philip Arnold - ASP
I am told by my fellow developer that you can not use custom tags and includes in a page that is using SSL? Is this true? In a word - NO! If it was, all of my shopping carts and secure forms wouldn't work, but they do Remember that CF is only running the request, it doesn't care if it's

RE: SSL

2001-01-09 Thread Nathan Stanford
Do you also use cfincludes in the ssl page? -Original Message- From: Kurt Ward [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, January 09, 2001 9:26 AM To: CF-Talk Subject: RE: SSL Not true. We are currently using 4-5 custom tags in templates that include everything from the

Re: SSL

2001-01-09 Thread Dave Hannum
My experience is that you can use at least includes, provided that you have a copy in the SSL directory as well as the non-SSL directory. Dave - Original Message - From: "Nathan Stanford" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, January 09, 2001 10:23 AM

RE: CPU 100% (again, sorry) - with screen shot and theory :)

2001-01-09 Thread Daniel Lancelot
wow - I never knew that... I've just tested it and tthat does appear to be the case... -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: 09 January 2001 15:09 To: CF-Talk Subject: RE: CPU 100% (again, sorry) - with screen shot and theory :) Actually it looks for

RE: SSL

2001-01-09 Thread Kurt Ward
Yes we use cfincludes. The other posts tell the whole story: CF assembles the HTML content to send to the browser, leaving the web server with the task of dealing with SSL. -Original Message- From: Nathan Stanford [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 09, 2001 10:36 AM

Re: SSL

2001-01-09 Thread Len Conrad
Anybody using stuff like http://www.rainbow.com/ncdb/ACCEL.PDF to speed up SSL and offload encryption from the main CPU? Len http://BIND8NT.MEIway.com : Binary for ISC BIND 8.2.3 T9B for NT4 W2K http://IMGate.MEIway.com : Build free, hi-perf, anti-spam mail gateways

Re: SSL

2001-01-09 Thread Bud
On 1/9/01, Nathan Stanford penned: I am told by my fellow developer that you can not use custom tags and includes in a page that is using SSL? Is this true? Nope. Do it all the time. -- Bud Schneehagen - Tropical Web Creations _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ ColdFusion Solutions /

RE: SSL

2001-01-09 Thread bflynn
Huh? SSL is a delivery method, a networking thing. Custom Tags are at the application level. Technology wise we're talking apple and oranges. What he might have been trying to say is that you SHOULDN'T use custom tags on something that you want to be secure. Extend that as a company policy

RE: SSL

2001-01-09 Thread Nathan Stanford
Thanks, That is the ammunition I needed. -Original Message- From: Kurt Ward [SMTP:[EMAIL PROTECTED]] Sent: Tuesday, January 09, 2001 9:43 AM To: CF-Talk Subject: RE: SSL Yes we use cfincludes. The other posts tell the whole story: CF assembles the HTML content to

application scope vs request scope

2001-01-09 Thread Won Lee
This is a question for those of you in the know... Is there an advantage to putting application variables into the request scope instead of having application variables around a conditionaly statement to only load once per timeout. So in your Application.cfm one would have cfscript

RE: CPU 100% (again, sorry) - with screen shot and theory :)

2001-01-09 Thread Robert Everland
So no more 100%? Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From: Daniel Lancelot [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 09, 2001 10:38 AM To: CF-Talk Subject: RE: CPU 100% (again, sorry) - with screen shot and theory :) wow - I never knew

Re: DELPHI - where does it fit in the scheme of things?

2001-01-09 Thread JayB
If I'm not mistaken ColdFusion Studio was built using Delphi. form more information go to Borland home page. Think you a right. I seem to remember one of the Allaire beta guys mentioning that this was the case ~~ Structure your ColdFusion

Contract

2001-01-09 Thread Albert K Arhin
Hi All, I am new as an independent developer. Can you please direct me to sites on software contract Writting. Thanks ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: DELPHI - where does it fit in the scheme of things?

2001-01-09 Thread Bryan Batchelder
Yeah, its all Delphi based. I recall this, because the Allaire developers said they would not port CF Studio to linux until Delphi showed up there (which it is about to...so maybe they will port it soon :-) --b -- Bryan Batchelder

RE: Multiple Resultsets from a Stored Procedure

2001-01-09 Thread LKHaas
That was a good idea. It is only returning the last resultset no matter which select statement is last. Is there something that needs to separate each select (begin/end statements, etc.) in order for CF to see it as a distinct resultset? -Original Message- From: [EMAIL PROTECTED]

RE: application scope vs request scope

2001-01-09 Thread Philip Arnold - ASP
This is a question for those of you in the know... Is there an advantage to putting application variables into the request scope instead of having application variables around a conditionaly statement to only load once per timeout. So in your Application.cfm one would have cfscript

CFFILE Delete then WRITE issue....

2001-01-09 Thread Vance_Duke
OK. I am having a problem here. I am able to DELETE a file with CFFILE without a problem, but when I try to almost immediately WRITE the same file back it tells me there is an issue with the file "Error: The file could not be accessed." Has anyone encountered this before? When I check on the

RE: CFFILE Delete then WRITE issue....

2001-01-09 Thread Raymond Camden
I think your running into the IIS 'feature' that locks files for you. This 'feature' can be disabled, and someone on this list had a good way of handling it. You should be able to find it in the archives. === Raymond Camden,

Re:CFFILE Delete then WRITE issue....

2001-01-09 Thread Chris Terrebonne
You are encountering file locking errors. The write is trying to begin before the delete has released it's lock on the file. When writing and deleting, I always rename the file first, then delete the renamed file. Same for the write. Write to a temp file, then once the write is complete,

cf and sql backup error

2001-01-09 Thread Rich Wild
I've got a funny one here that I've not seen before One of my templates features a csv upload feature which updates a SQL 7 database with its contents. Before I run through the file and check the contents for poor formatting, the database itself is backed up to disk. This is the code that

Re: SSL

2001-01-09 Thread Stephen M Aylor
Im no PKI/Crypto wizard ... however; Im not so sure why these (rainbow) cards are sooo pricey, when now ... both 3Com and Intel Adapters have this or similar tech on their most basic NIC's. the Intel PILA8470C3, and even the PILA8460C3 Desktop adapter. In addition I beleive the newer Gigabit

RE: CFFILE Delete then WRITE issue....

2001-01-09 Thread Philip Arnold - ASP
NT has this wonderful habit of not dealing with requests immediately - it can mean that when you try to write a file it messes up and needs a slight delay Pain, but it's lovely M$ software! Philip Arnold Director Certified ColdFusion Developer ASP Multimedia Limited T: +44 (0)20 8680 1133

RE: CFFILE Delete then WRITE issue....

2001-01-09 Thread Benjamin S. Rogers
Keep in mind that though this eliminates most problems, the issue will still persist. The best way to solve the problem is to use the CFLOCK tag. Benjamin S. Rogers Web Developer, c4.net voice: (508) 240-0051 fax: (508) 240-0057 -Original Message- From: Chris Terrebonne [mailto:[EMAIL

Re: Multiple file uploads

2001-01-09 Thread Kevin Willyerd
Thanks for the pointers, it works great On Mon, 08 Jan 2001 21:08:43 -0600, you wrote: It's actually very simple to accomplish. CFFile looks for the name of the form field, so you have to make sure to match these up. In general, the way you do it is to set up a global variable with the number

CFGrid

2001-01-09 Thread Tony Turner -CFUG
Hi Please could someone let me know what I am doing wrong. I want to use CFGRID. I am getting this message in the IISLOG. GET /CFIDE/classes/allaire/controls/cfGridFormApplet.class - 404 604 342 0 HTTP/1.0 Mozilla/4.0+(compatible;+MSIE+5.0;+Win32) - - I have in Coldfusion a mapping for

browser check

2001-01-09 Thread Jay Patton
? looking for help on this if anyone can... on our new layout for our site we have a menu script that works great with IE but not w/ ns. i was wondering if their was a way to do a check with cf that would check which browser was being used and if they were using NS then it would not load the

RE: CFFILE Delete then WRITE issue....

2001-01-09 Thread Vance_Duke
This is great help and I appreciate all this feedback. Is there an answer to my second question... I think this is an issue if someone tries to OPEN the file instead of SAVING it. So the second question is is there a way to force someone to DOWNLOAD the file instead of opening it? This would

RE: browser check

2001-01-09 Thread C. Hatton Humphrey
You can check this by looking at CGI.HTTP_User_Agent which will identify the browser. The only problem with this is different browsers return different types. Hatton Humphrey -Original Message- From: Jay Patton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 09, 2001 12:43 PM

Using MSXML DOM with CF

2001-01-09 Thread Milks, Jim
Hi all, I am trying to use a snippet of code from the Maryland CFUG that uses the CFOBJECT tag to interact with the Microsoft MSXML DOM. Here is the code: CFOBJECT action="CREATE" type="COM" class="Microsoft.XMLDOM" name="Parser" CFSET xmlFile = "sens_xml.xml" CFSET Parser.Async = false

RE: CFFILE Delete then WRITE issue....

2001-01-09 Thread Benjamin S. Rogers
Actually, the feature you are referring to does not have anything to do with the operating system but rather the Web server. IIS creates handles to files for fast references. When you delete a file, you actually delete the file (contrary to what Philip has suggested). The handle, however, is

RE: CFGrid

2001-01-09 Thread bflynn
I'm not exactly sure what you're talking here. My understanding is that CFGRID is used as a CF tag inside a file. CFGRID name="name" height="height"... CFGRIDCOLUMN NAME="col1" HEADER="head1" /CFGRID Brian -Original Message- From: Tony Turner -CFUG [mailto:[EMAIL

RE: CFFILE Delete then WRITE issue....

2001-01-09 Thread Benjamin S. Rogers
See my last post for the technical explanations. If I'm guessing correctly, you are running an NT server with IIS? On the first page of your application you create a file that the user can then download? With some subsequent page request, you then delete the file? However, the file still appears

Re: browser check

2001-01-09 Thread Jay Brushett
Well it depends: you mention a script. Is it written in CF or Javascript. If javascript it's easy (just look at developer.netscape.com and the javascript guide). And it's just as easy using CF. Just check your server variables (CGI.HTTP_USER_AGENT). Then look at the value and parse it out as

CFMail Time Stamp

2001-01-09 Thread cftalk
I have a problem with the time stamp on messages sent through cfmail. My servers clock is set at GMT -0500 but CFMail messages are being stamped with + 0400 wich is affecting the time sent by about 9 hours. Anyone have any insight as to why this is happening or where I go to correct it?

OT SQL STORED PROCEDURES

2001-01-09 Thread William J Wheatley
WITH THE IF/ELSE/ on Stored Procedures is there a way to write a storedproc so it was like this SELECT * from member where membernumber 0 IF @name is "0" and name='blah' end if @this eq "that" and that='test' end to make it only run certain things if certain values are set Bill Wheatley

RE: CF_Activedit alternatives??

2001-01-09 Thread Owens, Howard
Activeedit requires browsers to support ActiveX, which means Internet Explorer on Windows, exclusively. I've only been using the demo so far and am very happy with it. H. -Original Message- From: Francisco Montes; Spain on Line [SMTP:[EMAIL PROTECTED]] Sent: Monday, January 08,

RE: CFFILE Delete then WRITE issue....

2001-01-09 Thread Vance_Duke
Sorry I did not elaborate before. NT 4.0 SP 5, CF 4.0, IIS 4.0. The Application is Deleting a file if it exists and then writes the file FRESH. Then gives the user a link to the CSV file. After that, the user can download it, save it, or click another link to regenerate the file. It seems

Re: CFGrid

2001-01-09 Thread Shawnea Carter
Make sure you have CFIDE mapped in the web site. Shawnea - Original Message - From: "Tony Turner -CFUG" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, January 09, 2001 12:42 PM Subject: CFGrid Hi Please could someone let me know what I am doing wrong. I want to use

RE: OT SQL STORED PROCEDURES

2001-01-09 Thread Clint Tredway
Something like this: Declare @Name varchar() Declare @This varchar() SELECT @Name = Name,@This = This from member where membernumber 0 IF @name is 'blah' Begin Do Something here end if @this eq "that" begin Do something end

Re: CFMail Time Stamp

2001-01-09 Thread Howie Hamlin
Not sure why that's happening but you can force the date in the mail like so: CFMAIL TO="someone" SUBJECT="test" FROM="someone else" CFMAILPARAM NAME="Date" VALUE="#dateformat(now(),"ddd, d mmm ")# #timeformat(now(),"hh:mm:ss")# -0500" test! /CFMAIL

RE: CFFILE Delete then WRITE issue....

2001-01-09 Thread Philip Arnold - ASP
When you delete a file, you actually delete the file (contrary to what Philip has suggested). The handle, however, is left open. A separate process called the cache scavenger routinely goes through and checks to see which files have been deleted. At this point the handle to the file is

RE: browser check

2001-01-09 Thread Gary McNeel, Jr.
Go to the CF Developers Exchange look at the custom tags that do this for you. AEBrowser (I think) is the one I use often, works great and returns a lot of useful information on the client that you can use to make good decisions. There are other good ones there too. I use it for checking browser

RE: CF_Activedit alternatives??

2001-01-09 Thread Benjamin S. Rogers
Here is an excerpt from one of my posts last month. There's probably quite a few other useful discussions on this topic in the list archives already. I would like to add ezEdit (http://www.siteobjects.com) to this list of utilities. It is distributed in the form of a custom tag. This tag works

RE: OT SQL STORED PROCEDURES

2001-01-09 Thread Rick Lamb
Here's an example script I was given that show how you can loop through a query using a cursor. Hope it helps. Rick USE Master GO DECLARE @DBname VarChar(50) DECLARE DBCursor SCROLL CURSOR FOR SELECT Name FROM Master..SysDatabases ORDER BY Name -- ORDER BY DBID

Allaire is down

2001-01-09 Thread Howie Hamlin
Allaire's home page is throwing a 405... Oops... Howie ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

RE: CF_Activedit alternatives??

2001-01-09 Thread Duane Boudreau
HTMLEdit This is not a ColdFusion solution but I would be remiss not to mention it since it is such a quick and easy solution that probably meets many peoples' needs. http://javaboutique.internet.com/HTMLEdit/ Pros: Simple and Open Source. Cross-platform and cross-browser. Cons: Very, very

RE: OT SQL STORED PROCEDURES

2001-01-09 Thread LKHaas
Regarding simple examples of stored procedures OT -- what should a very simple stored procedure that returns multiple resultsets look like? Lisa -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 09, 2001 12:36 PM To: CF-Talk Subject: RE: OT SQL

RE: CF_Activedit alternatives??

2001-01-09 Thread Chris Martin
I second this, for the most part. its really good, the only problem is it can sometimes take a while to load (and that's on the office LAN. Must take a while for all those users on dial up.) Chris Martin -Original Message- From: Rob Sherman [mailto:[EMAIL PROTECTED]] Sent: Tuesday,

RE: CFFILE Delete then WRITE issue....

2001-01-09 Thread Benjamin S. Rogers
Sorry I did not elaborate before. NT 4.0 SP 5, CF 4.0, IIS 4.0. We guessed correctly. :) The Application is Deleting a file if it exists and then writes the file FRESH. Then gives the user a link to the CSV file. After that, the user can download it, save it, or click another link to

RE: CF_Activedit alternatives??

2001-01-09 Thread Philip Arnold - ASP
I couldn't be happier with the newest version of eWebEditPro. Visit www.ektron.com We tested eWebEditPro, but some of our clients don't like installing plugins from companies that they've never heard of - it's a paranoia thing Philip Arnold Director Certified ColdFusion Developer ASP

Allaire Curriculum License

2001-01-09 Thread Erki Esken
Is there anyone on this list who has teached CF in university and has experience with Allaire Curriculum License program. I have some quick questions and since Allaire's Peter Sheridan (responsible for Curriculum License program) is out of the office until January 16 I'm hoping someone else could

Faster Join

2001-01-09 Thread Robert Everland
What would be faster an inner join, an outer join, or a where something = something join. I am working with huge queries and a little bit of time on a small query could translate to a huge gain on my joins. Robert Everland III Web Developer Dixon Ticonderoga

Re: Contract

2001-01-09 Thread Billy Cravens
I haven't seen any sites like that, and there's probably good reason. A contract is a legal document, and laws vary per locality. Your best bet is to consult with a lawyer and have them to put together a "template" that you can use. --Billy Albert K Arhin wrote: Hi All, I am new as an

Re: Faster Join

2001-01-09 Thread Gregory Harris
Outer joins from my experience take the longest. Since a where x=y join is essentially the same thing as an inner join, I can't imagine either one taking any longer. However I could be wrong. Gregory Harris Web Developer Stirling Bridge Group LLC - Original Message - From: "Robert

RE: CFFILE Delete then WRITE issue....

2001-01-09 Thread Vance_Duke
I see the merit to these suggestions. But, unfortunately this only works around the problem and does not fix it. The 500 byte file that you see is a placeholder of sorts. It exists for up to 30 seconds (the default ObjectCacheTTL). The files are remaining for what looks like about 1 to 2

SESSION Timing out WAY before it's supposed to.

2001-01-09 Thread Joshua Miller
I have an application that stores a variable in SESSION scope ... the application is set to timeout after 12 hours, however, when users login and begin working, after about 10-15 minutes, they get logged out. CFServer is set to hold SESSIONs for 12 hours as is the application its self. My only

  1   2   3   >