Re: Overwriting a session

2002-01-11 Thread Kay Smoljak
Excellent... That's exactly what I was looking for. Thanks Douglas. Douglas Brown [EMAIL PROTECTED] wrote in message news:001101c19a47$160f46e0$52031b42@developer... Yes you can delete them. CFIF IsDefined(Client.CFTOKEN) OR IsDefined(Client.CFID) CFSET DeleteClientVariable(CFTOKEN)

Locking Session Variables?

2002-01-11 Thread ehoma
Hi, I'm new to using session variables and don't quite understand the locking thing. What'll happen if you don't lock everything? Here is some code that I've been using. I used cflock when I created the array but not when I'm reading or writing. It's been working fine. Am I in for big bad

RE: Locking Session Variables?

2002-01-11 Thread Pascal Peters
Read the KB article http://www.allaire.com/Handlers/index.cfm?ID=20370Method=Full As for your code: cflock timeout=30 throwontimeout=Yes type=EXCLUSIVE scope=SESSION cfif NOT IsDefined(session.basket) cfset session.basket = ArrayNew(2) /cfif cfset FoundInBasket = 0 !--- Case 1 - Item already

RE: CF and Regular Expressions

2002-01-11 Thread Kola Oyedeji
Michael Theres a really good chapter in instant coldfusion 5 by Jeff Houser also theres this( watch the wrap) http://www.opensesame.com/documents/cf4/Advanced_ColdFusion_Development/04_R egular_Expressions/adv04_1.htm but I didnt find it that useful. HTH Kola Oyedeji |Web Developer |ekeda

SQL Help

2002-01-11 Thread Waldemiro Junior
Hi again folks... How can I output a variable that was set within a CFQUERY containing first a insert statement, then a select statement? This is my query: cfquery name=sel_data datasource=sys_db dbtype=ODBC INSERT INTO TAUX_001 (DSC_CHKLST , IND_STATUS) VALUES

Forumspot.org or free opensouce forums

2002-01-11 Thread Declan Maher
Could anybody tell me what has happend to forumspot.org as I have been trying to access it to download the Allaire Forums SQL Server version. Could anybody send me a .bak of the SQL Server database for this? Could I also ask your experience with using other free multiple conference forums

RE: CF Mappings

2002-01-11 Thread Aidan Whitehall
Excellent idea. We have a need for just such a solution - using the same graphic elements on the secure and non-secure sides of a site. A mapping would eliminate the need for duplicate copies of the files. This is what I use in all Application.cfm files. It allows you to create dynamic

Re: Forumspot.org or free opensouce forums

2002-01-11 Thread Michiel Boland
Could anybody tell me what has happend to forumspot.org Looks like the folks who maintain the forumspot.org domain have messed up its DNS registration. Cheers Michiel __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM /

Running CF and iHTML on same server

2002-01-11 Thread A . Little
Hi all, We're planning to move some of our websites written in iHTML over to the same (W2K) server that we run our CF websites on. Has anyone out there had any experience in running iHTML and CF on the server - and if so, have there been any problems or anything else we need to be aware of, or

Re: Forumspot.org or free opensouce forums

2002-01-11 Thread Jochem van Dieten
Michiel Boland wrote: Could anybody tell me what has happend to forumspot.org Looks like the folks who maintain the forumspot.org domain have messed up its DNS registration. Actually the webserver was out before the DNS was out, and since it has been one month and several emails I believe

RE: array - structure question

2002-01-11 Thread Raymond Camden
Others have sent in suggestions, but I'd like to show another way of doing it as well... with UDFs! I have an article coming out for CFDJ that discusses this concept, but the idea is simple. You can use a UDF to quickly create structures and, if you know what you are doing, safely append to the

RE: CF Mappings

2002-01-11 Thread Aidan Whitehall
Should have also mentioned... With the code from the previous e-mail, I write file references like this (they are all absolute, starting with the base web root or base ColdFusion mapping - I never use relative links any more). a href=#Request.Mappings.Webserver#somefolder/somefile.xxx img

Re: Forumspot.org or free opensouce forums

2002-01-11 Thread Pete Ruckelshaus
Wow, so much for Macromedia/Allaire's Community Source project, I wonder if it's just a matter of time before the same thing happens to Spectra? Pete - Original Message - From: Jochem van Dieten [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, January 11, 2002 8:19 AM

test

2002-01-11 Thread Adkins, Randy
test Randy Adkins Tech Lead - Novient SRA International [EMAIL PROTECTED] (703) 803-1677 __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free

RE: Forumspot.org or free opensouce forums

2002-01-11 Thread Raymond Camden
Wow, so much for Macromedia/Allaire's Community Source project, I wonder if it's just a matter of time before the same thing happens to Spectra? Um, no. === Raymond Camden, Principal Spectra Compliance Engineer for

RE: SQL Help

2002-01-11 Thread Stuart Miller
Your query will run in Query Analyzer because analyzer uses transact sql. If you're interested in getting the primary key of a record you have just inserted in your CF application, I use cftransaction. Like this: cftransaction cfquery name=insert_data datasource=sys_db dbtype=ODBC

RE: SQL Help

2002-01-11 Thread Allan Pichler
or you can add a trigger to the sql server that runs on insert statements to that table SELECT @@IDENTITY as newID @llan -Original Message- From: Stuart Miller [mailto:[EMAIL PROTECTED]] Sent: 11. januar 2002 14:32 To: CF-Talk Subject: RE: SQL Help Your query will run in Query

CF and Regular Expressions

2002-01-11 Thread Smith, Don , , WHS/PSD
Jason Powers (Fig Leaf Software) and I put together a presentation for this Fall's Macromedia Developer's conference on CF's implementation on Regular Expression that is geared toward the beginner. You can download the PowerPoint file at:

RE: Forumspot.org or free opensouce forums

2002-01-11 Thread Cameron Childress
Um, no. Hope not with you watching over it Raymond :) But you have to admit: WDDX.org - strike one forumspot.org - strike two Hopefully the Spectra site will live long and prosper without becoming strike three. -Cameron Cameron Childress elliptIQ Inc.

Re: Forumspot.org or free opensouce forums

2002-01-11 Thread Jochem van Dieten
Pete Ruckelshaus wrote: Wow, so much for Macromedia/Allaire's Community Source project, It is no longer theirs, it is 'ours'. And if there are too many people complaining and not enough people coding things like this happen. Jochem

RE: tracing where users are from

2002-01-11 Thread jon
I've built a similar tool as a shockwave applet at: http://jonroig.com It not only sniffs the country, but attempts to sniff your exact location and print a map. .. an interesting excercise, I guess. If anyone wants the code (mostly perl and shockwave), you're more than welcome to it.

RE: Forumspot.org or free opensouce forums

2002-01-11 Thread Raymond Camden
WDDX.org - strike one Well, wddx.org is gone, but openwddx.org remains. :) -rc __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

RE: CF and Regular Expressions

2002-01-11 Thread Jeffry Houser
Thanks for the support, however.. I don't remember writing a chapter on Regular Expressions. At 10:56 AM 01/11/2002 +, you wrote: Michael Theres a really good chapter in instant coldfusion 5 by Jeff Houser also theres this( watch the wrap)

RE: Forumspot.org or free opensouce forums

2002-01-11 Thread Cameron Childress
WDDX.org - strike one Well, wddx.org is gone, but openwddx.org remains. :) FYI - wddx.org doesn't forward to openwddx.org (on my machine/DNS) I can't find any new content since 4/18/2001 and that's just the announcement of the new site... No meaningful news since 4/2/2000. Forums posts

RE: CF and Regular Expressions

2002-01-11 Thread Will Swain
The Forta book Advanced ColdFusion 5 Application Development has a good chapter on regular expressions particularly with reference to CF. HTH Will -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: 11 January 2002 14:14 To: CF-Talk Subject: RE: CF and Regular

When Comparing two tables how do I.....

2002-01-11 Thread Jay Callaghan
Ok, I got the Union thing down pat and working 100%. Now I got 4 columns with related information that needs to be added together, then display the Top 10. To summarize what i am wanting to do. I got 2 tables with the same field types/names. I want to be able to connect to the two, add up the 4

RE: CF and Regular Expressions

2002-01-11 Thread Kola Oyedeji
Sorry Jeff I think you're right I may be confusing yours with the other book which looks reay similar ;-) i think its optimizing coldfusion I dont have it in front of me but one of them has a really good introduciton and explanation of regular expressions amongst other things. Kola Oyedeji

RE: When Comparing two tables how do I.....

2002-01-11 Thread Pascal Peters
FOR SQL-Server: CFQUERY NAME=NameMe DATASOURCE=SomeDNS maxrows=10 SELECT LastName, FirstName, Beard1+Beard2+Beard3+Beard4 AS Total, HarvestCounty FROM Table1 Union SELECT LastName, FirstName, Beard1+Beard2+Beard3+Beard4 AS Total, HarvestCounty FROM Table2 ORDER BY Total

RE: When Comparing two tables how do I.....

2002-01-11 Thread Pascal Peters
Small error: ORDER BY Total DESC !!! -Original Message- From: Pascal Peters Sent: vrijdag 11 januari 2002 16:14 To: CF-Talk Subject: RE: When Comparing two tables how do I. FOR SQL-Server: CFQUERY NAME=NameMe DATASOURCE=SomeDNS maxrows=10 SELECT LastName, FirstName,

RE: SQL Help

2002-01-11 Thread Daye, Marianne
Or you can do it in CF like this: cfquery name=sel_data datasource=sys_db dbtype=ODBC SET NOCOUNT ON INSERT INTO TAUX_001 (DSC_CHKLST , IND_STATUS) VALUES ('OBS' , 20) SELECT @@IDENTITY AS COD_REQ SET NOCOUNT OFF /cfquery cfset New_COD_REQ =

RE: CF and Regular Expressions

2002-01-11 Thread Jeffry Houser
No Problem, The other two ColdFusion books that look similar to Instant ColdFusion are Optimizing ColdFusion (Chris Cortes) and ColdFusion: A Developer's Guide (Michael Buffington, I believe) . I'm not sure which one contains the Regular Expression info. I've read most of Optimizing

Double-Byte characters?

2002-01-11 Thread erica . vitina
I've been asked some questions about double-byte characters that I can't answer. I was hoping someone on the list might know... 1. Does ColdFusion support content written in double-byte? 2. Is there anything different that needs to be done from a site stucture/design standpoint to support

Re: Weird Join (o8i)

2002-01-11 Thread cf refactoring
Troy, Sorry for the late reply, but you can use this: select b.bid, b.isbn, b.title, a.aid, a.firstname, a.lastname from book b, author_book ab, author a where b.bid = ab.bid and ab.aid = a.aid and ab.aid = ( select min(aid) from author_book ab2 where ab2.bid = ab.bid) This

Re: Double-Byte characters?

2002-01-11 Thread Marius Milosav
While ColdFusion doesn't support double byte we actually didn't have any problems with displaying double byte characters, with the following exception: CFTree (and probably all the other CF applets). we have all the language information in the database and store it structures at start up. to

Multi-Language Application - Need Advice

2002-01-11 Thread ccook22
Hello all - If you were told within the next year your application was going to be put in 8 different languages, not including languages that use symbols, what would be your approach. Most, if not all of our entry pages have text describing what the user needs to do as well as many entry points

RE: Multi-Language Application - Need Advice

2002-01-11 Thread Mike Connolly
The bods at EvolutionB use custom tags for extracting captions from use in their Synergy application. You simply select the caption you want by passing the caption ID and language ID. Therefore in your one template you can use the same tag for all languages, simply setup a global parameter

Re: Multi-Language Application - Need Advice

2002-01-11 Thread Pete Ruckelshaus
I've done this, and like any problem, there is more than one solution. The approach we took was to set all text on all pages as variables; using includes or custom tags for the common (i.e. header, footer, navigation) will make this task easier. All of the values for those variables were then

RE: SQL Help

2002-01-11 Thread Bill Grover
I usually do it by creating a stored procedure that does the insert and the select. CREATE PROCEDURE MyInsert @tcCHKLST varchar(20), @tnINDSTAT int AS INSERT INTO TAUX_001 (DSC_CHKLST , IND_STATUS) VALUES (@tcCHKLST ,

OT: programming standards best practice guidelines

2002-01-11 Thread erica . vitina
I'm attempting to compile some information for my department, and I'm looking for resources/websites to find information on programming standards guidelines for CF, HMTL, JavaScript, etc. I'm looking for information like: In CF, all references to shared variables should be locked. All CF

Re: programming standards best practice guidelines

2002-01-11 Thread Gyrus
I'm attempting to compile some information for my department, and I'm looking for resources/websites to find information on programming standards guidelines for CF, HMTL, JavaScript, etc. Off the top of my head, here's some things I've standardised on (mostly security-related): -

Re: OT: programming standards best practice guidelines

2002-01-11 Thread BEN MORRIS
The fusebox book does have a lot of general best practices type stuff mixed in there. As would Forta books. [EMAIL PROTECTED] 01/11/02 11:52AM I'm attempting to compile some information for my department, and I'm looking for resources/websites to find information on programming standards

CF Server can't process forms

2002-01-11 Thread W Luke
Sorry if this has been well documented, but my test server is having a headache lately. cfm pages are processed normally, but form method=post action=here.cfm pages just go straight to a 404 error page. Why would this be? Intially I thought it was probably me being stupid and not calling the

Re: OT: programming standards best practice guidelines

2002-01-11 Thread savan . thongvanh
let me preface my statement by saying, we are a BIG shop (over 4000 use rs inter, intra, and extranet). As such, we use all sorts of languages and I have personally been a part of standards committees. Standards are a very personal thing, and that's not a joke, but there are just a few

Re: OT: programming standards best practice guidelines

2002-01-11 Thread Michael Dinowitz
You might want to check out the CF standards docs I've written on HoF and FA (www.houseoffusion.com, www.fusionauthority.com). Some of the FA links are not going to the right place at the moment due to some work Judith is doing with the issues. It's being fixed. At 11:52 AM 1/11/02, you

CFMAIL differences from 4.5 to 5.0 (Was CFMAIL SOLVED)

2002-01-11 Thread James Taavon
I have noticed a difference with using CFMAIL in 4.5 5.0. When using the default text format for email in 4.5 it recognizes carriage returns that are entered between the tags while it does not in 5.0. Has anyone seen what I am talking about and know what to do about with out without using HTML

Getting messages back from server with CFFTP?

2002-01-11 Thread Tony Schreiber
I'm dealing with an ftp server that gives realtime feedback when you've upload a file - basically, that's it processing, results..., if it's successful - and I want to get this information back into the cfm flow so I can parse it. Is there a way to do that with CFFTP? Tony Schreiber, Senior

RE: array - structure question

2002-01-11 Thread Owens, Howard
Raymond, you're the UDF King, aren't you :-) H. Howard Owens Internet Operations Coordinator www.insidevc.com [EMAIL PROTECTED] AIM: GoCatGo1956 -Original Message- From: Raymond Camden [SMTP:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 5:29 AM To: CF-Talk Subject:

quick SQL type question

2002-01-11 Thread Mark W. Breneman
Can anyone tell me the correct syntax for the type convert in a sql statement? I need to insert data from one field that's type is varchar into a numeric field. The data in the varchar field are numbers. I get Error converting data type varchar to numeric when running: INSERT INTO table1

RE: quick SQL type question

2002-01-11 Thread Brian Ferrigno
Mark In SQL 7 the syntax is CONVERT(datatype[(length)], expression) ex. CONVERT(integer,#SomeVarCharVariable#) Brian Ferrigno -Original Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 1:00 PM To: CF-Talk Subject: quick SQL type question

RE: quick SQL type question

2002-01-11 Thread Mark W. Breneman
thanks -Original Message- From: Brian Ferrigno [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 12:07 PM To: CF-Talk Subject: RE: quick SQL type question Mark In SQL 7 the syntax is CONVERT(datatype[(length)], expression) ex. CONVERT(integer,#SomeVarCharVariable#) Brian

CFexecute

2002-01-11 Thread Neil H.
timeout attribute. I have the case where I want to display the output from the temporary file. The problem is the file is still in use (i.e. CF runs too quick :) ) Anyway I can specify a timeout in the cfexecute tab, but is there a maximum OR is there like a default like 0 which will wait

Re: CFMAIL differences from 4.5 to 5.0 (Was CFMAIL SOLVED)

2002-01-11 Thread Cathy Taylor
We're having the same problem with output from CFSTOREDPROC statements to o. I was about to report it as a bug. We have javascript in a database. Each line is a line of javascript code that goes to a custom tag. So the cfoutput is just #script# /cfoutput. There is a carriage return at th e end of

RE: verity and html comments round II

2002-01-11 Thread Sean McCarthy
have you tried the vspider? it will process the page then produce the summary no commented code will be inserted. if you would like some code to get the spider up and runnin let me know. Also check out: http://www.daemon.com.au/navitron/display.cfm?objectID=DD870544-07B0-4 AF0-8B

CF_EMail_Spool Reasons why?

2002-01-11 Thread coldfusion . developer
Does any one know exactly why perfectly good e-mail sometimes gets placed in the Undeliv folder? Here's the Custom Tag from the Alliare Dev site ... CUSTOM TAG Description This tag, when used in conjunction with the Scheduler in Cold Fusion 4.x, will scan the UNDELIVERABLE directory of your

Re: programming standards best practice guidelines

2002-01-11 Thread Douglas Brown
Erica, here is a few to get you started. Lockinghttp://www.allaire.com/Handlers/index.cfm?ID=17318Method=FullCach= Off writing maintainable code http://www.allaire.com/Handlers/index.cfm?ID=18893Method=FullCach= Off Using CF Variables

Re: CF_EMail_Spool Reasons why?

2002-01-11 Thread Critz
oi coldfusion!! there are times when the server just cannot reach a host.. there are hiccups along the way. -- Critter, MMCP Certified ColdFusion Developer Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion - 11 Jan 2002, 1:28:31 PM, you

RE: CF_EMail_Spool Reasons why?

2002-01-11 Thread Cameron Childress
Does any one know exactly why perfectly good e-mail sometimes gets placed in the Undeliv folder? Usually: 1) The message is not perfectly good (invalid TO or FROM) 2) The mail server is not perfectly good (down or not configured to accept mail) 3) The connection to the mail server it not

Re: CF Server can't process forms

2002-01-11 Thread Bud
On 1/11/02, W Luke penned: Sorry if this has been well documented, but my test server is having a headache lately. cfm pages are processed normally, but form method=post action=here.cfm pages just go straight to a 404 error page. Why would this be? Intially I thought it was probably me being

CF 5.0 Verity Collections Limit

2002-01-11 Thread David Brown
I know based on the manual that CF 5.0 Pro limits the number of documents to 125000. I found this in the registry while looking for the location for colections to use with cfregistry tag. [HKEY_LOCAL_MACHINE\SOFTWARE\Allaire\ColdFusion\CurrentVersion\Collections] RootDirectory=I:\\CFusion

RE: CF 5.0 Verity Collections Limit

2002-01-11 Thread Mark A. Kruger - CFG
Well - the problem is testing it. Do you have a collection that is that large? Mark -Original Message- From: David Brown [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 11:22 AM To: CF-Talk Subject: CF 5.0 Verity Collections Limit I know based on the manual that CF 5.0 Pro

Re: CF 5.0 Verity Collections Limit

2002-01-11 Thread Howie Hamlin
If it does it also makes you liable for breaking the license. I'd be careful - just because you CAN do something doesn't mean that you can legally do it. Howie - Original Message - From: David Brown [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, January 11, 2002 2:22 PM

Re: CF 5.0 Verity Collections Limit

2002-01-11 Thread Eric Carlisle
does this mean if I change the DocCountLimit to something more then 125000 (something like 25) will that allow me to increase the limit? Could also be that they set it that way for a reason :/ __ Dedicated Windows 2000

Re: CF 5.0 Verity Collections Limit

2002-01-11 Thread Douglas Brown
I would tend to agree with Eric. 125000 is an immense amount of documents, more than anyone I know of would need. It is probably a performance thing or something. There are two major products that come out of Berkeley: LSD and [Unix] BSD. We don't believe this to be a coincidence. Doug

Re: CF Server can't process forms

2002-01-11 Thread W Luke
Never had a problem like that Will. Your form isn't in a cfincluded template that is in a different directory, is it? No. This is really puzzling me. My local machine is just a mirror of one of my sites that's hosted remotely - and it's always worked fine local, *and* remote! The login

Oracle ODBC on Solaris

2002-01-11 Thread Cathy Taylor
This may be more of an Oracle question, but maybe someone else has suffered through this and can help before I roll back to CF 4.5.1 server. My server is a SPARCStation 5 (Not UltraSparc) with Solaris 5.8 and Oracle 8.1.7. I just realized that CF Server 5 will not run with the Oracle native

IMail

2002-01-11 Thread Duane Boudreau
This was asked on another list by another developer: I would like to write files (as eMails) directly into the outgoing IMail Directory. By this way IMail and not the ColdFusionServer should send the eMails. I need to attach files too. How can I do this? Any one here done this? Duane

RE: CF 5.0 Verity Collections Limit

2002-01-11 Thread Mark A. Kruger - CFG
Eric, I agree that 125000 is a lot for a site collection where you are doing a search this site type of function - but if you have an intranet and you are using it for business docs or some other repetitive kind of doc it's not that much. We have a site with 100,000 + pdf files. Engineering

Re: CFexecute

2002-01-11 Thread Jim McAtee
I think you may have it backwards. If the timeout attribute is missing or set to '0', then CF will spawn the executable and return immediately. In that case, you can't be sure the output file will exist yet, or that the spawned program has finished. If CF returns before the timeout lapses,

Aboout ActivePdf

2002-01-11 Thread sam komolafe
Hi guys, Is anyone in CF community using ActivePdf to automatically generate print output? If yes what are the advantages? thanks sam __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER

Re: CF_EMail_Spool Reasons why?

2002-01-11 Thread Jim McAtee
Add to that the possibility that the mail server, by design or by configuration, won't accept messages from CF that other mail servers might. Examples are QMail's rejection of messages with bare linefeeds and some mail servers that won't accept multiple TO addresses separated by semicolons. Some

RE: Aboout ActivePdf

2002-01-11 Thread Janine Jakim
It's relatively quick- we can generate hundreds of report cards in less than a minute. If you are doing bulk prints it is a good way to go. -Original Message- From: sam komolafe [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 2:44 PM To: CF-Talk Subject: Aboout ActivePdf Hi

Re: Aboout ActivePdf

2002-01-11 Thread Chuck Rodgers
Hi, I have used activePDF Tookit to fill out PDF forms from a database and save the PDF file. It worked very well. We then faxed the PDF form with the data in it (it was an update of a survey) to the participants. Chuck Rodgers At 11:44 AM 1/11/02 -0800, you wrote: Hi guys, Is anyone in

Re: CF 5.0 Verity Collections Limit

2002-01-11 Thread David Brown
Ok, well I do not want to bring down the server or break our license agreement. And I am not sure if we even have that many doc's or not. I just saw something and wanted to know if it was that simple to change. Also I would like to ask another question. Do I need to create a scheduled task

Re: Double-Byte characters?

2002-01-11 Thread Paul Hastings
1. Does ColdFusion support content written in double-byte? define support. most stuff works, some doesn't: basically cfgrid, cftree, cfcache, any sort of string manipulation don't work on unicode so i guess that includes double-byte charsets too. 2. Is there anything different that needs to

Re: Double-Byte characters?

2002-01-11 Thread Paul Hastings
oops, i guess i'd be amiss in not pointing out that ben forta's latest advanced cf5 book as a chapter on i18n --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.311 / Virus Database: 172 - Release Date: 12/27/2001

Re: CFexecute

2002-01-11 Thread Neil H.
cfset outfile=GETTEMPFILE(C:\temp\,MH) cfexecute name=command arguments=arguments outputfile=#outfile# timeout=155/cfexecute cffile action=READ variable=stdout file=#outfile#Br table border=1 cellspacing=0trtdstrongOutput:/strong/td/tr trtdcfoutputpre#stdout#/pre/cfoutput/td/tr/tableBr This

Dynamically sortable table data

2002-01-11 Thread Brunt, Michael
Does anyone know of a way to make database output in a html table sortable by any chosen column after the data is output to the table. I am trying to avoid CFGRID because of the numerous JVM issues with CF5.0. Mike Brunt Sempra Energy 213.244.5226 Smith Wesson - the original point and click

Re: Dynamically sortable table data

2002-01-11 Thread Pete Ruckelshaus
Something like IE's data binding? http://www.webreference.com/dhtml/column39/ Pete - Original Message - From: Brunt, Michael [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, January 11, 2002 3:39 PM Subject: Dynamically sortable table data Does anyone know of a way to

Re: Dynamically sortable table data

2002-01-11 Thread Randy Adkins
Only two ways I can think of is either dumping the contents into Javascript and calling a function to redisplay the contents or refreshing the page using using a dynamic variable for sorting. -- Original Message -- from: Brunt, Michael [EMAIL PROTECTED]

Re: Dynamically sortable table data

2002-01-11 Thread Greg Alton
You can upgrade your JVM to 1.3.1_01 to fix the applet problems in CF 5.0 , but for some really cool interactive table features, check out Java Swing and it's JTable class at http://java.sun.com/j2se/1.4/docs/guide/swing/ . Greg Alton CFDev.com - Original Message - From: Brunt, Michael

RE: Aboout ActivePdf

2002-01-11 Thread jon
I know that we've been experimenting with it on and off with moderate amounts of success. Our developer on that project's main complaint had to do with a lack of documentation. We did get it working though, and it's pretty cool. -- jon - jon roig online community services

On the fly CF mappings?

2002-01-11 Thread Robyn Follen
Hi, Is there any way to create CF Mappings on the fly from a web page through a custom tag, CFX tag, or otherwise? Thanks, Robyn Robyn Follen Web Applications Developer PreVision Marketing Inc. 55 Old Bedford Road Lincoln, MA 01773

RE: On the fly CF mappings?

2002-01-11 Thread Stephenie Hamilton
you can use cfregistry ~~ Stephenie -Original Message- From: Robyn Follen [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 4:06 PM To: CF-Talk Subject: On the fly CF mappings? Hi, Is there any way to create CF Mappings on the fly from a web page through a custom tag, CFX

RE: CF Server can't process forms

2002-01-11 Thread Andre Turrettini
Will, I had something a bit similar happen to me a while back. I was puzzled by it for a good while. Turned out, I had some security logic that was interfering and cflocating me. Check the page sequence. ie place a cfoutputhello/cfoutputcfabort at the top of your application.cfm and see if

RegEx help

2002-01-11 Thread Bernd VanSkiver
I am trying to do a search in ColdFusion Studio 5.0 to find all the pages in a project that don't contain a specific string, does anyone know of a way I can do this with regular expressions? Bernd VanSkiver [EMAIL PROTECTED] ColdFusion Developer

rds?

2002-01-11 Thread Andre Turrettini
Hi, I'm having what seems like a newbie problem except I've been at it for a couple o years now! Dohh! I'm trying to setup an rds connecition on and to my personal developemnt machine. It cant get much simpler. win2k, oracle8, apache, cf5. Setup as basic security(Its working on my coworkers

Re: CFexecute

2002-01-11 Thread Jim McAtee
I haven't run into this. I was just working on a template yesterday using cfexecute exactly like yours. I capture the output of a command-line program to a file. In this case, the particular program only generates output if it encounters an error, so I immediately read the file and display an

Re: Multi-Language Application - Need Advice

2002-01-11 Thread Massimo Foti
We use a similar approach (I live in Switzerland, using four languages is quite common for website). Since we are poor guys and often work on small projects, we define the variables using cfscript inside a bunch of dedicated files for each language. Then we include the relevant file on the fly

Re: rds?

2002-01-11 Thread Judith Taylor
Unfortunately DRE, you're in good company. There seem to be a number of us experiencing this problem. Only yesterday, I was posting my difficulties with setting up RDS on my development machine. It's unfotunate that this particular upgrade/migration 'broke' a feature that worked fine with

Re: CFexecute

2002-01-11 Thread Neil H.
Yeah it seems that the stream to the file is still opened and it has the file locked, it will wait 30 (I assume seconds) and then time out so I changed it to 155. :( Neil - Original Message - From: Jim McAtee [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, January 11, 2002

Re: Dynamically sortable table data

2002-01-11 Thread Jon Hall
This one is still being developed, it was just posted to the DynAPI list a couple of days ago. Very nice looking and cross browser. Amazing for how good it looks. It's a grid control already too... http://lib.quantigma.net/dynapi/examples/enigma.gui.grid.html ..and Matt Kruse has a nice one

Times...

2002-01-11 Thread Neil H.
Here is a SQL question for yall... I have about 3000 rows a day which have a datetime column. I want to be able to graph the number of rows every 2 minutes. I know it could be done with a lot of looping in CF but what is the best way to tackle this one? Thanks, Neil

Re: Times...

2002-01-11 Thread Don Vawter
What db? - Original Message - From: Neil H. [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, January 11, 2002 3:54 PM Subject: Times... Here is a SQL question for yall... I have about 3000 rows a day which have a datetime column. I want to be able to graph the number

Re: Times...

2002-01-11 Thread Neil H.
SQL server sorry :) Neil - Original Message - From: Don Vawter [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, January 11, 2002 5:58 PM Subject: Re: Times... What db? - Original Message - From: Neil H. [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

RE: CF Server can't process forms

2002-01-11 Thread Brendan Avery
make sure that that action is the correct relative path to the BASE template; meaning if that form is CFINCLUDED, the path of the including page is the one which the relative path needs to be based off of. meaning if i have a file in: C:\mysite\index.cfm and it includes a form template in:

RE: CF Server can't process forms

2002-01-11 Thread Brendan Avery
er... action=subsection/thepost.cfm -Original Message- From: Brendan Avery [mailto:[EMAIL PROTECTED]] Sent: Friday, January 11, 2002 15:26 To: CF-Talk Subject: RE: CF Server can't process forms make sure that that action is the correct relative path to the BASE template; meaning if

Re: Times...

2002-01-11 Thread Don Vawter
I have a function that groups date time information by an interval of time(in minutes). The function is : udf_interval_format(@dt datetime,@interval int) so if you wanted to count the number of rows in an interval you would use: select utility.dbo.udf_interval_format(yourdatetimefield,2) as

Re: Times...

2002-01-11 Thread Neil H.
You are the man! thanks! Neil - Original Message - From: Don Vawter [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, January 11, 2002 6:54 PM Subject: Re: Times... I have a function that groups date time information by an interval of time(in minutes). The function is

Re: Times...

2002-01-11 Thread Don Vawter
Thanks, now if I could just find a job. - Original Message - From: Neil H. [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, January 11, 2002 5:29 PM Subject: Re: Times... You are the man! thanks! Neil - Original Message - From: Don Vawter [EMAIL PROTECTED]

CF 5 Upgrade Help

2002-01-11 Thread Brockman, Chuck
We just upgraded to CF5 from 4.01. A couple of issues. First we got a 401.3 error. Second, on reboot, we get a NT Challenge response when the site is first brought up. Any have any suggestions? NT 4.0, service pack 6 Regards, Chuck Brockman Internet Applications Developer Yale Security

  1   2   >