Re: CF Studio 5

2002-03-21 Thread Jochem van Dieten
Tangorre, Michael T. wrote: Hey everyone. Anyone have any problems running studio 5 on WinXP box with mapped network drives? My system crashes big time. If I remove the mapped drives, it runs fine... any ideas? http://www.tweaktown.com/document.php?dType=guidedId=120 How about tip 10?

RE: Date Comparison Issue

2002-03-21 Thread BEN MORRIS
Yes, the hour is from 0-23, military time. Owens, Howard [EMAIL PROTECTED] 03/21/02 02:30AM Thanks for the tip, Ben. I've been testing this out and so far it works like a charm. Question: For the hour I'm using military time, in this case 15 for 3 p.m. eastern time. I assume if I put 3

RE: UDFs, CF Locking, etc., and NEO=fixed

2002-03-21 Thread Reed Powell
The current discussion on locking, and what CF should do vs what the programmer should do, is really mixing two different issues. The concern that most of us have had for some time is not that we need to do locking to preserve application data integrity, but that we also need to do extra locking

Search Key Error

2002-03-21 Thread Paul Giesenhagen
We have received the following error when using an Access 2000 database ... does anyone know the meaning of this error and if there is a way to fix it? This error occured when we tried to UPDATE a record. Thanks! ODBC Error Code = S1000 (General error)

Re: UDFs, CF Locking, etc., and NEO=fixed

2002-03-21 Thread Zac Spitzer
but i think the important thing to remember with the whole cflock situation, it forces developers to think understand about how the CF-Server works *MOST* bad (ok subjective:-) ) cf-programming i see comes from developers who don't fully understand the associated concepts just because

CFTTP and multiple file uploads??

2002-03-21 Thread Chris Bohill
Could anyone advise me on the following: Is there anyway of uploading more than 1 file at a time using the cffile and input type=file etc? My predicament is the following: The client has a folder on his c: drive full of images (up to 60, it will be the same folder every time) so instead of

RE: Photo Album

2002-03-21 Thread jon
I've got a base you can build on for it... http://www.jonroig.com/freecode/thumbnailer/thumbnailer.zip Might take a bit of customization to get it to sort the way you want, but it uses an access db to keep track of everything, automatically resizes images, allows for captioning, etc...

RE: UDFs, CF Locking, etc., and NEO=fixed

2002-03-21 Thread Matthew R. Small
Here it goes again... but i think the important thing to remember with the whole cflock situation, it forces developers to think understand about how the CF-Server works I don't get what you mean. Not at anytime does the developer need to worry about CF corrupting its own memory because it

RE: UDFs, CF Locking, etc., and NEO=fixed

2002-03-21 Thread Lonny Eckert
My personal speculation is that the current memory management code is probably the Three Mile Island part of the server codebase, and that even though its problems have been well understood for years, no one has been able to muster up the courage to try and work on it without having the

Dropping ClientVariable...

2002-03-21 Thread Janine Jakim
I'm having a problem with a client variable on one page of my application. When I hit the Return to page 1 page I get the classic error an error occurred while evaluating the expression: #CLIENT.Expression# (Yes I know what this error means...) The odd things: 1. It is only happening when I try

RE: CFTTP and multiple file uploads??

2002-03-21 Thread Christopher Olive
CFFTP will allow your CF machine to connect to another machine as an FTP client. not as an FTP server. christopher olive cto, vp of web development, vp it security atnet solutions, inc. 410.931.4092 http://www.atnetsolutions.com -Original Message- From: Chris Bohill [mailto:[EMAIL

cfexecute

2002-03-21 Thread Shawn McKee
In order to make our service a little faster we use caching servers around the world to store content. We want to place the content on the servers as soon as it is available and the cache owners provide a method to do this via Telnet. Does anyone have a method to run a Telnet session from

RE: two SUBMIT buttons on a form?

2002-03-21 Thread Shawn Regan
Yeah the name of the button is in the form scope. -Shawn Regan -Original Message- From: Scott Van Vliet [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 20, 2002 5:04 PM To: CF-Talk Subject: RE: two SUBMIT buttons on a form? Does that work in Netscape? -Original Message-

RE: two SUBMIT buttons on a form?

2002-03-21 Thread Scott Van Vliet
This won't work on IE 4.5 on the Mac, and NN 4.x (both Mac and PC) are giving me problems as I am testing this right now. Has anyone else had success with NN (or IE on the Mac) and naming buttons? Thoughts? -Original Message- From: Shawn Regan [mailto:[EMAIL PROTECTED]] Sent: Thursday,

NT Authentication

2002-03-21 Thread Bosky, Dave
We are using NT authentication on our intranet but dialup users cannot use Outlook Web Access anymore, it stopped working. Any ideas what might causing this? Thanks, Dave __ Structure your ColdFusion code with Fusebox.

RE: CFTTP and multiple file uploads??

2002-03-21 Thread Jim Curran
An easy way (if you can get them to Zip the directory) is upload the zipped file and use a custom tag on your server to extract the files from the archive. look in: http://devex.macromedia.com/developer/gallery/index.cfm - jim -Original Message- From: Chris Bohill [mailto:[EMAIL

RE: NT Authentication

2002-03-21 Thread Mike Townend
Do the dial-up users dialing into your network for their connection or onto their own ISP? If their own isp then they are no longer on your network so I believe they wont authenticate via nt authentication.. They need to connect via basic authentication... Someone correct me if im wrong tho...

RE: two SUBMIT buttons on a form?

2002-03-21 Thread John Lucas
You can change the action of your form with JavaScript. Not sure where I originally got the script. !--- Multiple Submit JavaScript This script will dynamically change the form action based upon which button is pressed. The form name must be specified and match the form name in the

RE: NT Authentication

2002-03-21 Thread Albrechtas, Adam
I believe there is a known bug with Outlook Web Access which requires that it use Basic Authentication only. Adam. -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 10:40 AM To: CF-Talk Subject: NT Authentication We are using NT

RE: two SUBMIT buttons on a form?

2002-03-21 Thread Yager, Brian T Contractor/NCCIM
I do this... form action= method=post name=frm id=frm input type=button value='Copy' onclick=CopyButton() input type=button value='New' onclick=NewButton() /form script language=JavaScript1.2 function CopyButton() { document.frm.action = 'wherever.cfm'; document.frm.submit(); } function

Multiple File Upload

2002-03-21 Thread LANCASTER, STEVEN M. (JSC-OL) (BAR)
I need to have a multiple file upload. I know if I want to do one file I can use CFFILE, but how do I do more than one. Steven Lancaster __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

RE: NT Authentication

2002-03-21 Thread Dave Watts
If their own isp then they are no longer on your network so I believe they wont authenticate via nt authentication.. They need to connect via basic authentication... NT Authentication works fine over the public internet, by default. Dave Watts, CTO, Fig Leaf Software

RE: two SUBMIT buttons on a form?

2002-03-21 Thread Shawn McKee
That is why I prefer the onClick to dynamically change the form action as you suggested. Shawn McKee -Original Message- From: Scott Van Vliet [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 9:40 AM To: CF-Talk Subject: RE: two SUBMIT buttons on a form? This won't work on IE

RE: cfgraph...revisited...

2002-03-21 Thread Dave Watts
I know that CFGRAPH returns a dynamically generated file (either flash or jpg). Is there any way to get it to write that file instead? Thanks! I don't think there's anything analogous to the offline generator functionality provided in the standalone Generator product. So, you'll have to

Re: OT - bgimage

2002-03-21 Thread Tony Schreiber
Nuh-uh! Seriously, are you sure? Background images ARE supported in Netscape ... in both TD and Table tags. The attribute is not BGIMAGE, it's BACKGROUND. Peace, Mike Table BGIMAGE's have never worked in 4.XX Netscape... Sorry for the off topic post, this is 2 for the day... my

Re: Photo Album

2002-03-21 Thread Tony Schreiber
You can take the User Albums code out of Simple Message Board? It's fairly self contained (except the user table links)... Auto thumbnailing, resizing, albums, captions, etc... I have a friend that wants to do this: I want to take all of my family digital pictures and make them available by

RE: two SUBMIT buttons on a form?

2002-03-21 Thread Janine Jakim
I think the best solution is to learn fusebox. All of your buttons then go through an index page and then redirects the user accordingly. Not only is it very easy to have multiple submit buttons on a page it also organizes your code and helps make your application more modular. To find a good

RE: two SUBMIT buttons on a form?

2002-03-21 Thread Tony Schreiber
Watch out though, the name of the button is only in the form scope if the button is pressed. If the form is submitted via the enter key (in IE), then the button was not pressed and the name of it will be undefined. Make sure you check for that, or include a hidden field with the same name.

RE: NT Authentication

2002-03-21 Thread Robert Everland
Also make sure they are using IE if you're doing nt authentication. Sometimes you also have to put the domain of the computer first domain\username HTH Robert Everland III Dixon Ticonderoga Web Developer Extraordinaire -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent:

Fw: The trouble with cookies ...

2002-03-21 Thread Todd
Is that I can't get them to expire when the browser is closed. I've got this code: cfif IsDefined(Cookie.CFID) AND IsDefined(Cookie.CFTOKEN) cfcookie name=cfid value=#cookie.cfid# cfcookie name=cftoken value=#cookie.cftoken# /cfif but it doesn't seem to do anything. I close my

RE: The trouble with cookies ...

2002-03-21 Thread Russel Madere
Try adding the expires=NOW attribute to the call. cfcookie name=cfid value=#cookie.cfid# expires=NOW Russel -Original Message- From: Todd [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 9:58 AM To: CF-Talk Subject: Fw: The trouble with cookies ... Is that I can't

Check if plugins are installed?

2002-03-21 Thread Kris Pilles
Anyone out there know of an easy effective way to check for flash/Authorware/Java and Real Audio plugins? __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

RE: [SOT] CF on OS X... just venting

2002-03-21 Thread Paul Sizemore
But what about the security issue. Has there been a Mac virus since late 80's. The ultimate in poor performance is being hacked. Mac servers might be great for the market segment MM is trying to appeal to with CF. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent:

Looping through a CSV File

2002-03-21 Thread Jason Larson
I have a CSV File that I am pushing up using cffile. I want to loop through the csv file and insert the content into a database, and I am not sure how to do this. Any help our guidance would help? Thanks Jason __ Your ad could

Is there anywhay to work around there not being an IsNull Function

2002-03-21 Thread Brian Eckerman
I was woried about declaring a struct, initializing it, and then being able to tell if the init was successfull. IsDeclared would be of no help in this situation, because you could have a struct without having it set up. What is the best way to validate whether a struct has been initialized

Re: Multiple File Upload

2002-03-21 Thread Owen Leonard
I need to have a multiple file upload. I've only ever heard two answers to this: 1. Some kind of custom Active-X somethingorother. 2. Multiple file input fields, followed by looping over cffile. I'd certainly be interested if anyone has any better solutions. -- Owen Athens County

Re: Photo Album

2002-03-21 Thread David Groth
Ann - We have written a photo gallery app for use within our Medical School. It might not be exactly what you are looking for but could be a strong starting point. http://hsc.unm.edu/webdev/Gallery/ Take a look and let me know if you want the code. David Groth, Analyst/Programmer III HSC

RE: The trouble with cookies ...

2002-03-21 Thread Jim Curran
You can delete the CFID and CFTOKEN cookies w/ javascript in unload() in the body tag. - j -Original Message- From: Todd [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 10:58 AM To: CF-Talk Subject: Fw: The trouble with cookies ... Is that I can't get them to expire when the

RE: [SOT] CF on OS X... just venting

2002-03-21 Thread Dave Watts
But what about the security issue. Has there been a Mac virus since late 80's. The ultimate in poor performance is being hacked. Mac servers might be great for the market segment MM is trying to appeal to with CF. There aren't too many viruses for Amiga, either, I suppose, so let's

Re: UDFs, CF Locking, etc., and NEO=fixed

2002-03-21 Thread Keith
I don't think anyone ever said that locking itself was broken. Locking scoped variable access should not have been required and that's what has been fixed (or improved... whatever). As I speculated earlier, CFLOCK was a kludge to solve deficiencies in the original design of ColdFusion.

Tall Table

2002-03-21 Thread Neil H.
I would like to have a specified height in a table but if that table is longer it would have a scroll bar, however I do not want to use frames. I hope that make sense, the next question is: Is that possible? Thanks, Neil __

Re: UDFs, CF Locking, etc., and NEO=fixed

2002-03-21 Thread Keith
Good news and an excellent post. Thanks! [EMAIL PROTECTED] - Original Message - From: Reed Powell [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 21, 2002 8:20 AM Subject: RE: UDFs, CF Locking, etc., and NEO=fixed

String Magic: Extract initial character of words in a string

2002-03-21 Thread Edward McDermott
I want to be able to take a string, for example a journal article title, and parse out just the initial characters of each word. For example: This is a Cold Fusion Article becomes TIACFA. Thanks in advance. Ed Edward J. McDermott Systems Librarian Robert H. Goddard Library Clark University

RE: Is there anywhay to work around there not being an IsNull Function

2002-03-21 Thread Matthew R. Small
Well, if it exists, check for the initialization values. - Matt Small -Original Message- From: Brian Eckerman [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 11:12 AM To: CF-Talk Subject: Is there anywhay to work around there not being an IsNull Function I was woried about

RE: Tall Table

2002-03-21 Thread Katherine Maltby
not quite sure what you're asking here...can you explain it again? Kath -Original Message- From: Neil H. [mailto:[EMAIL PROTECTED]] Sent: 21 March 2002 16:20 To: CF-Talk Subject: Tall Table I would like to have a specified height in a table but if that table is longer it would have a

Re: Is there anywhay to work around there not being an IsNull Function

2002-03-21 Thread Paul Giesenhagen
IsStruct() tells if a variable is a struct or not.. You could also cfparam name=struct_name default= Then cfif #IsStruct(struct_name)# cfelse /cfif Dunno if that answers your question or not... Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder

RE: Looping through a CSV File

2002-03-21 Thread Mike Townend
Treat the file as a list of lists... List 1 - Delimiter = #Chr(10)##Chr(13)# And each element of that list is a list with delimeter , HTH -Original Message- From: Jason Larson [mailto:[EMAIL PROTECTED]] Sent: 21 March 2002 16:14 To: CF-Talk Subject: Looping through a CSV File I

RE: Tall Table

2002-03-21 Thread Matthew R. Small
I think that's what iframes are for... but I've never used one so I'm not sure. And it only works in IE (I think) :-) Matt Small -Original Message- From: Neil H. [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 11:20 AM To: CF-Talk Subject: Tall Table I would like to have

RE: Is there anywhay to work around there not being an IsNull Function

2002-03-21 Thread Brian Eckerman
Right, but if it exists and hasn't been initialized what would be the default value? Or are you not allowed to create a variable without set it's value? -Original Message- From: Matthew R. Small [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 11:30 AM To: CF-Talk Subject: RE:

RE: Tall Table

2002-03-21 Thread Sam Roach
you can use a transparent gif. tabletrtd img src=trans.gif align=right width=1 height=250 /td/tr/table -Original Message- From: Neil H. [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 8:20 AM To: CF-Talk Subject: Tall Table I would like to have a specified height in a table

Re: Multiple File Upload

2002-03-21 Thread Dave Hannum
Multiple File fields with different names and a CFFILE for each.. Dave - Original Message - From: Owen Leonard [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 21, 2002 11:08 AM Subject: Re: Multiple File Upload I need to have a multiple file upload. I've only

RE: Looping through a CSV File

2002-03-21 Thread Mike Townend
Or theres a custom cfx tag called something like ... Cfxcsvtoquery that will take a csv file and convert it into a query variable HTH -Original Message- From: Jason Larson [mailto:[EMAIL PROTECTED]] Sent: 21 March 2002 16:14 To: CF-Talk Subject: Looping through a CSV File I have a

Re: Looping through a CSV File

2002-03-21 Thread Marlon Moyer
If the csv structure will always be the same, you could set up an ODBC connection and treat it like a table. - Original Message - From: Mike Townend [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 21, 2002 10:26 AM Subject: RE: Looping through a CSV File Treat

RE: Is there anywhay to work around there not being an IsNull Function

2002-03-21 Thread Matthew R. Small
I thought initialization was the act of creating and assigning a default value for each field within the structure. If you initialize a variable or structure, that means that every field has a value that can be checked. If you just want to see if it exists, then just use isdefined() or

RE: two SUBMIT buttons on a form?

2002-03-21 Thread Shawn Regan
Is the name of the button not showing up in the form scope on these browser version? -Shawn -Original Message- From: Scott Van Vliet [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 7:40 AM To: CF-Talk Subject: RE: two SUBMIT buttons on a form? This won't work on IE 4.5 on

RE: two SUBMIT buttons on a form?

2002-03-21 Thread Shawn Regan
Ahh, ok thanks. -Shawn -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 7:57 AM To: CF-Talk Subject: RE: two SUBMIT buttons on a form? Watch out though, the name of the button is only in the form scope if the button is pressed. If the

Re: UDFs, CF Locking, etc., and NEO=fixed

2002-03-21 Thread Keith
but i think the important thing to remember with the whole cflock situation, it forces developers to think understand about how the CF-Server works Excellent point. In fact, I'd like to suggest that ColdFusion be enhanced with more features that require us to think about internal apects of

RE: Tall Table

2002-03-21 Thread Matthew R. Small
Could you explain how that works? -Original Message- From: Sam Roach [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 11:27 AM To: CF-Talk Subject: RE: Tall Table you can use a transparent gif. tabletrtd img src=trans.gif align=right width=1 height=250 /td/tr/table

Client variable security (Re: The trouble with cookies ...)

2002-03-21 Thread Todd
Maybe I should explain what I am trying to do a little more. I have an application that uses client variables to track sessions and provide security. If a user loggs out, everything is fine. If a user is idle for more than an hour, everything is fine. If a user closes their browser and

RE: String Magic: Extract initial character of words in a string

2002-03-21 Thread Ryan Edgar
cfset myString=This is a Cold Fusion Article cfset initials= cfloop from=1 to=#listlen(myString, )# index=word cfset initials=initials left(listgetat(myString, word, ), 1) /cfloop cfoutput#initials#/cfoutput HTH Ryan Edgar -Original Message- From: Edward McDermott

Re: String Magic: Extract initial character of words in a string

2002-03-21 Thread Hatton Humphrey
Maybe something along the lines of: cfset final= cfloop list=#form.entry# delimiters= index=word cfset final = listappend(final, UCase(left(word, 1))) /cfloop That would give you a comma separated list of each letter that you could do any number of things with. HTH Hatton Disclaimer:

RE: Verity / query resultset question

2002-03-21 Thread Dave Watts
I am calling cfsearch inside of a custom tag. I need to return the resultset back to the calling template. I have tried every method i can think of. This is covered right in the MM Advanced ColdFusion Development course, actually. You might try something like this: !--- the caller of

RE: String Magic: Extract initial character of words in a string

2002-03-21 Thread Garza, Jeff
Treat the string as a list with spaces as the delimiter... CFSET charlist = CFLOOP list = #mystring# index=z delimiters= CFSET charlist = charlist + left(z, 1) /CFLOOP CFOUTPUT#charlist#/CFOUTPUT Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. [EMAIL PROTECTED]

Re: Tall Table

2002-03-21 Thread Neil H.
IE is fine I will look into that thanks. Neil - Original Message - From: Matthew R. Small [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 21, 2002 11:32 AM Subject: RE: Tall Table I think that's what iframes are for... but I've never used one so I'm not sure.

Re: Tall Table

2002-03-21 Thread Neil H.
What is that going to do? Neil - Original Message - From: Sam Roach [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 21, 2002 11:27 AM Subject: RE: Tall Table you can use a transparent gif. tabletrtd img src=trans.gif align=right width=1 height=250

RE: Client variable security (Re: The trouble with cookies ...)

2002-03-21 Thread Andy Ewings
Tod Stick this code in your application.cfm: cfif IsDefined(Cookie.CFID) AND IsDefined(Cookie.CFTOKEN) cfset cfid_local = Cookie.CFID cfset cftoken_local = Cookie.CFTOKEN cfcookie name=CFID value=#cfid_local# cfcookie name=CFTOKEN value=#cftoken_local# /cfif

Re: Looping through a CSV File

2002-03-21 Thread Zac Spitzer
Mike Townend wrote: Or theres a custom cfx tag called something like ... Cfxcsvtoquery that will take a csv file and convert it into a query variable there are mercant text database drivers installed with cf, then u can do it via ODBC select * from c:\data\file.csv z

CFHTTP POST - authentication issue - Resolved - well, not quite

2002-03-21 Thread Diana Nichols
OK, so they tell me they have enabled Basic Authentication, and I can hit the script manually by entering username/password (through a browser)...but when my CFHTTP hits it, I get a cfcatch message of 401 Unauthorized. Of course I can't see what's happening on the receiving sideany ideas

browser detection UDF

2002-03-21 Thread Clint Tredway
Someone posted a UDF that detected the browser.. Does someone have this handy? I have misplaced it :0) Thanks, Clint __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion

RE: String Magic: Extract initial character of words in a string

2002-03-21 Thread Raymond Camden
You can also do it in big ugly string func: cfset str = This is the title of an article. cfset titles = uCase(replace(REReplace(str,([^[:space:]])[^[:space:]]+,\1,all), ,,ALL)) cfoutput#titles#/cfoutput === Raymond Camden,

RE: Looping through a CSV File

2002-03-21 Thread Jason Larson
The structure will always be the same but the file name is going to change though. I am backing up the old file before I push the new file up. Thanks, Jason Larson -Original Message- From: Marlon Moyer [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 9:35 AM To: CF-Talk

OT: SQL function i know it exists

2002-03-21 Thread Tyler Clendenin
Help me please. I am looking for the SQL function so that i can replace values i am selecting with other values. here is an example of how the function works, if someone could just tell me the name. say i have a table of users. and i want to select their gender, but the gender is stored as

cftry with query output

2002-03-21 Thread Jeff Beer
Hello all, Can't wrap my brain around this for some reason. I need to update a table with data from a POP3 server. If the database update is OK, I want to delete the message from the server. If the database update errors, I want to leave the message alone for later processing. However, I want

RE: Verity / query resultset question

2002-03-21 Thread chris.alvarado
The funny thing is, this is what I was doing. I discovered after outputing exactly whatthe custom tag looked like, i was evaluating the wrong variable for the name attribute of cfsearchDOH! thanks though the help is much appreciated. -chris.alvarado [application.developer] 4 Guys

RE: String Magic: Extract initial character of words in a string

2002-03-21 Thread Raymond Camden
Actually, one more version, less ugly: cfset str = This is the title of an article. cfset titles = uCase(REReplace(str,[[:space:]]*([^[:space:]])[^[:space:]]+[[:space:]]* ,\1,all)) cfoutput#titles#/cfoutput === Raymond

FW: String Magic: Extract initial character of words in a string

2002-03-21 Thread Edward McDermott
I got this response from Tony and it seems to do the trick for me, as do some of these other response. Thanks for all your quick help. Ed McDermott -Original Message- From: Anthony DeStefano [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 11:31 AM To: '[EMAIL PROTECTED]'

RE: UDFs, CF Locking, etc., and NEO=fixed

2002-03-21 Thread Matthew R. Small
I agree. Maybe we should be looking to Macromedia to develop a new tag based language that interacts with individual bits for rapid dev. Let's call it ColdFission. 01100110011101CF 0010 = 00100010001010111010110101/CF00011011101100101010011101101010 111010101000110101011

Re: Tall Table

2002-03-21 Thread Neil H.
I think the Iframe is going to mess up my flow since it is just like a frame and required a htm page included. Thanks, Neil - Original Message - From: Matthew R. Small [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 21, 2002 11:32 AM Subject: RE: Tall Table I

RE: NT Authentication

2002-03-21 Thread Albrechtas, Adam
http://support.microsoft.com/default.aspx?scid=%2Fsupport%2Fexchange%2Fconte nt%2Fwhitepapers%2Fowa%5Ftshoot%2Easp From the Password Authentication Methods section: snip If Exchange and IIS are on separate computers, only Basic (Clear Text) and Anonymous can be used. Windows NT

Re: Tall Table

2002-03-21 Thread Neil H.
Take a look at http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/th.asp This is exactly the type of table I want to create but looking at the source there is a ton of fluff. I need to go look it over more :) Neil - Original Message - From: Matthew R. Small [EMAIL

Re: Tall Table

2002-03-21 Thread Jochem van Dieten
Matthew R. Small wrote: I think that's what iframes are for... but I've never used one so I'm not sure. And it only works in IE (I think) :-) Any browser with a major version that was released this century will support them. Mozilla, Netscape, Conqueror, Opera etc. Jochem

Re: OT: SQL function i know it exists

2002-03-21 Thread Jochem van Dieten
Tyler Clendenin wrote: Help me please. I am looking for the SQL function so that i can replace values i am selecting with other values. here is an example of how the function works, if someone could just tell me the name. Case Decode ... What DBMS? Jochem

Re: Client variable security (Re: The trouble with cookies ...)

2002-03-21 Thread Tyler Clendenin
By the nature of sessions they cannot be ended like that. You must require that the user log out if they don't want that to happen. - Original Message - From: Todd [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 21, 2002 11:35 AM Subject: Client variable security

SQL Server temp tables and ColdFusion

2002-03-21 Thread ksuh
According to SQL Server docs, locally defined temp tables are specific to the connection, yes? So if I use them with ColdFusion, I'm going to have a problem with them being shared between internet users, aren't I? Is there a way to fix this? I was thinking of dynamically naming the temp

Re: cfexecute

2002-03-21 Thread Joseph Thompson
It is possible to spawn a task. Use CFEXECUTE to start a new thread. The code in that thread just goes about it's business while the calling page can continue. http://cfhub.com/forum//index.cfm?Fuseaction=ThreadTopicID=1037start=1 It is also possible (and even better in some cases) to use

RE: Tall Table

2002-03-21 Thread Sam Roach
I guess I didn't understand the initial request completely. -- Sam -Original Message- From: Neil H. [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 8:42 AM To: CF-Talk Subject: Re: Tall Table What is that going to do? Neil - Original Message - From: Sam Roach

RE: Tall Table

2002-03-21 Thread Matthew R. Small
My Webmaster in a Nutshell book was written in 1996. It says only IE supports them. But that's great to know that all of the other browsers support them. I might actually find a use for them now. Thanks for the info. Matt Small -Original Message- From: Jochem van Dieten

RE: Client variable security (Re: The trouble with cookies ...)

2002-03-21 Thread Andy Ewings
Not strictly true. Although the set of client vars won't expire on the server there is no reason why you can't delete the id and token on the client by using the code that I posted on my last post. In fact Tod almost had it right initially - just didn't use local vars (2 extra lines of code)

Re: Tall Table

2002-03-21 Thread Kirk Boecker
you can do this with style sheets - using the overflow attribute embed your table into the cell of an outside table and use overflow: auto; in the style that is in the main cell - don't think it works on older NS browsers (what does though) kirk boecker - Original Message - From:

RE: browser detection UDF

2002-03-21 Thread Jason Larson
Go to: www.cflib.org all sort of goodies Thanks, Jason -Original Message- From: Clint Tredway [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 9:45 AM To: CF-Talk Subject: browser detection UDF Someone posted a UDF that detected the browser.. Does someone have this

RE: browser detection UDF

2002-03-21 Thread Raymond Camden
Actually I'm pretty sure we don't have one for this yet. So... any enterprising developers out there want to submit one? === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED]

Re: Tall Table

2002-03-21 Thread Jon Hall
Taken from a page I am actually working on right this second... div style=overflow: auto; height: 300px; width: 196px; table width=180 cellpadding=0 cellspacing=1 border=0 tr tdYatta!/td ...snip snipped=lotsa Yatta rows/ /tr /table /div This Will NOT work on NS4.x. If

Recursion issue

2002-03-21 Thread Michael Corrigan
We have an NT4 box with CF5 and I have a recursive function that appears to run fine, but about five -ten minutes later, our system resources max out and locks the server. I can't find anything about this and was wondering if anyone has had a similar problem? Thanks, Michael Corrigan

RE: Tall Table

2002-03-21 Thread Sam Roach
Here is an example: http://www.siteexperts.com/tips/html/ts04/page1.asp -- Sam -Original Message- From: Kirk Boecker [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 9:09 AM To: CF-Talk Subject: Re: Tall Table you can do this with style sheets - using the overflow

Re: Client variable security (Re: The trouble with cookies ...)

2002-03-21 Thread Todd
OK .. I tried that and it's still not working. :( Any other ideas? Todd - Original Message - From: Andy Ewings [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 21, 2002 11:44 AM Subject: RE: Client variable security (Re: The trouble with cookies ...) Tod Stick

Re: cfgraph...revisited...

2002-03-21 Thread Tim Painter
That's kind of what I did -- use cfsavecontent to save the url then use cfhttp to go get it: !--- Use the new cfsavecontent tag to capture the dynamically generated url to the graph --- cfsavecontent variable=SavedGraphUrl cfgraph type=pie title=Pie chart of something titlefont=Arial

RE: Controlling a scheduled task with a cfm page?

2002-03-21 Thread Dave Watts
Is it possible to manipulate the times of a scheduled job in the cfscheduler with a cfm page? Yes. Take a look at the CFSCHEDULE tag, which lets you update existing scheduled tasks, among other things. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax:

Re: OT: SQL function i know it exists

2002-03-21 Thread Tyler Clendenin
doh, sorry. msSQL - Original Message - From: Jochem van Dieten [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, March 21, 2002 12:08 PM Subject: Re: OT: SQL function i know it exists Tyler Clendenin wrote: Help me please. I am looking for the SQL function so that i

RE: SQL function i know it exists

2002-03-21 Thread Alex Ninan
If you're using Oracle, SELECT decode(Gender, 1, 'M', 2, 'F','N/A') AS GenderAbbr FROM Users Decode is the Oracle function like an 'IF' loop. So if it's 1 then put 'M', if 2 then put 'F' else put 'N/A' Alex -Original Message- From: Tyler Clendenin [mailto:[EMAIL PROTECTED]] Sent:

Controlling a scheduled task with a cfm page?

2002-03-21 Thread Burba, William
Is it possible to manipulate the times of a scheduled job in the cfscheduler with a cfm page? we will have a scheduled job that queries a database to see if a particular table is updated, and when it is, we will either manipulate links on a page, or rename pages htm pages (from link.htm to

  1   2   3   >