remote site MySQL or local Access?

2001-03-23 Thread Kay Smoljak
Hi all, I have a non-profit site that I look after. It used to be all manually updated HTML but they are looking at expanding it a bit and I'd like to transfer some of the updating from myself to the committee members. As they are not well-funded, at the moment I'm thinking of using frames,

Help please

2001-03-23 Thread Venkata Ramakrishna
Hi gang, Iam a Cf guy since 1.5 years.I changed my company expecting a assignment in US.As the market slowed down there,my new employer is making me sit at his place. The problem is that he don't have any CF work and the other teams wont allow me inside their domain. Should i stick with CF or

RE: remote site MySQL or local Access?

2001-03-23 Thread Kay Smoljak
From: Garza, Jeff [mailto:[EMAIL PROTECTED]] What server are they running on? Unix, WinNT ??? This sounds like it might be best to look at a different tool. Perhaps Perl on Unix or ASP on NT... Perl running the DBI for MySQL cranks! Just a thought. They are running Linux... apart from that

Need some parsing help

2001-03-23 Thread Brian Thornton
Should I go through the route of len and right functions to accomplish the following. I have a email adress. ([EMAIL PROTECTED]) I want to parse just the domain and return juanvaldez.com THen insert it into a field. Should I Find the char of @ then get the len of the string (21) Then grab fron

RE: How do I get NT user name into CGI_AUTH_USER

2001-03-23 Thread Kevan . Windle
Thanks John and Jeff that was it. -Original Message- From: John Wilker [mailto:[EMAIL PROTECTED]] Sent: 22 March 2001 17:03 To: CF-Talk Subject: RE: How do I get NT user name into CGI_AUTH_USER Check in IIS. When I've wanted to capture NT Usernames I've had to turn off "anonymous

Re: Need some parsing help

2001-03-23 Thread Tom Espen Pedersen
Just use cfset domain = ListLast(String,"@") since you don't know how many letters will be before the @. Sincirely Tom Espen Pedersen developer @ www.pixelduck.com [EMAIL PROTECTED] - Original Message - From: "Brian Thornton" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent:

Re: Need some parsing help

2001-03-23 Thread Jon Hall
Stuff like this with one delimiter, I go the lazy way ;-) #listlast(emailAddress,"@") # That should do the trick, without getting into too much code. jon - Original Message - From: "Brian Thornton" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, March 23, 2001 2:36 AM

RE: remote site MySQL or local Access?

2001-03-23 Thread Daniel Lancelot
Well certainly on the $5.99 account you get what you pay for... It doesn't seem to go down quite as much as the free sites, maybe twice a month? Not good... but still good value... Depends how critical the site is - For a small charity site etc Id say it was reasonable... -Original

Re: cfscheduler weird thing...

2001-03-23 Thread Mark Woods
coldfusion scheduling is notoriuosly unreliable. I've recreating these symptoms over and over, and followed various threads in the allaire forums about it, but never seen a straight answer. I suspect it's nothing to do with CF per se, that it's something set in windows somewhere which causes

RE: Survey: Web-based WYSIWIG editing tool

2001-03-23 Thread Steve Martin
5) Other - IE5 (though IE5.5 has more granular object control) Hi All, Just a quick survey to appease my curiosity... If you use a web-based WYSYWIG editing tool, what do you use? 1) ActiveEdit (www.cdev.com) 2) eWebEditPro (www.ektron.com) 3) ezEdit (www.siteobjects.com) 4) HTMLArea

RE: Textbox validation

2001-03-23 Thread Aidan Whitehall
the BEST way to do it is to use javascript validation, and if it doesn't meet your criteria, popup a message and focus on that field. that's it :) If the user has JavaScript disabled, simply implementing client-side validation wouldn't catch errors. If you're *only* going to implement

RE: Studio: Export RDS Settings?

2001-03-23 Thread Aidan Whitehall
It's just registry stuff. Open RegEdit, browse to HKEY_CURRENT_USER/Software/Allaire/RemoteServers, and with RemoteServers highlighted, go to Registry -- Export. This will save a .reg file, which you can run on the new machine. Ahhh, thanks for the info! Now I feel like a klutz...

RE: cfscheduler weird thing...

2001-03-23 Thread Aidan Whitehall
coldfusion scheduling is notoriuosly unreliable. Does anyone know if this is going to be addressed in ColdFusion 5.0? I've *never* managed to get a scheduled event to work and have to resort to other applications which trigger batch files to open a browser and pass it a URL as a parameter...

RE: Textbox validation

2001-03-23 Thread John Stanley
You should use javascript, that way the page does not have to get submitted for the validation to occur. Just have the onChange event for the box call a function that parses the value of the text box for spaces or whatever. -Original Message- From: W Luke [mailto:[EMAIL PROTECTED]] Sent:

RE: Textbox validation

2001-03-23 Thread DeVoil, Nick
Really the best way is *both*. JavaScript is much nicer from a user interface point of view. But if the validation is important you need to do it again on the server, because you can't guarantee the user has JavaScript running in their browser. Nick -Original Message- From: W Luke

Re: Survey: Web-based WYSIWIG editing tool

2001-03-23 Thread Lanny R. Udey
Yes, Spectra 1.5 does come with eWebEditPro integrated. Lanny Udey Hofstra University [EMAIL PROTECTED] Friday, March 23, 2001 Mark Ireland wrote: I heard it will come with the new Macromedia Spectra (start getting used to it) Can anyone confirm this? I'm just in the process of developing

Any LDAP Guru's here? Authentication Problem

2001-03-23 Thread Paul Ihrig
quick question. i want to use NDS LDAP to authenticate ALL the users of our intranet. my problem that there are 2 servers. both have the same tree name? will this cause me problems. if so is there a way around it? any ideas would be great -paul Web Developer, NBBJ Work: [EMAIL PROTECTED]

CFFILE ACTION=copy and NAMECONFLICT

2001-03-23 Thread Aidan Whitehall
I'm using CFFILE to copy a file from one directory to another on the server. What happens if the file already exists? It's telling me that I can't use the NAMECONFLICT attribute when the ACTION is "copy": Attribute set validation error in tag CFFILE The

Calling Custom Tags in CFSCRIPT

2001-03-23 Thread Jason Lees (National Express)
Hi All, In CF Version 4.5 is it possible to call a custom Tag from with in a CFScript block EG cfif x gt 1 cf_Foo In="x" out="y" /cfif cfoutputthe x^2 = #y#/cfoutput How would you convert the CF_Foo into the cfscript block? Jason Lees National Express Email : [EMAIL PROTECTED]

RE: cfscheduler weird thing...

2001-03-23 Thread Mark Woods
I've *never* managed to get a scheduled event to work and have to resort to other applications which trigger batch files to open a browser and pass it a URL as a parameter... pain! err, there's no need to do that. There is an executable you can use to process CFML templates via the command

RE: Calling Custom Tags in CFSCRIPT

2001-03-23 Thread Rich Wild
How would you convert the CF_Foo into the cfscript block? You can't. :| You can't use any cf tags within cfscript One of the many limitations of cfscript - which is a shame. --- Rich Wild Senior Web Designer

RE: Calling Custom Tags in CFSCRIPT

2001-03-23 Thread Steve Martin
No. -Original Message- From: Jason Lees (National Express) [mailto:[EMAIL PROTECTED]] Sent: 23 March 2001 12:59 To: CF-Talk Subject: Calling Custom Tags in CFSCRIPT Hi All, In CF Version 4.5 is it possible to call a custom Tag from with in a CFScript block EG cfif x gt 1 cf_Foo

RE: Calling Custom Tags in CFSCRIPT

2001-03-23 Thread Jason Lees (National Express)
I thought as much but just wanted to make sure I'd not missed an undocumented feature. Roll on CF5.0! Jason Lees National Express Email : [EMAIL PROTECTED] -Original Message- From: Rich Wild [mailto:[EMAIL PROTECTED]] Sent: 23 March 2001 12:51 To: CF-Talk Subject: RE: Calling

RE: cfscheduler weird thing...

2001-03-23 Thread Adkins, Randy
From past experience with CFSchedule, make sure the website/template that is being called (ie, http://mywebsite.com/check_this.cfm ) is not located on an non-standard port. Meaning the template should be able to be called from a normal HTTP Request. If it is behind an obscure port such as:

RE: DTS packages

2001-03-23 Thread Cruz, Joseph
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 There's also some great example code at www.cfcomet.com under SQL Server on how to do it with CFOBJECT and COM. We've used it pretty extensively here since CFEXECUTE and xp_cmdshell are highly secured processes in our environment (anal-retentive

template and thread...

2001-03-23 Thread Zhou, Mei Y (Mei)
Hi, does anyone know that how template behavior? My question is: when I have a bunch of CFInclude template="../includes/1.cfm" CFInclude template="../includes/2.cfm" CFInclude template="../includes/3.cfm" .. .. CFInclude

CF Auctions

2001-03-23 Thread fiachra crean
Hi, I'm looking to develop an auction section on our current site, and I've been looking through the dozens of options in the developers gallery. If anyone has experiences (good or bad!) with using auctions, I'd like to hear them. Thanks, Fiachra.

RE: Survey: Web-based WYSIWIG editing tool

2001-03-23 Thread Paul Ihrig
5) Other :: Ultra Dev! -paul Web Developer, NBBJ Work: [EMAIL PROTECTED] 614 241-3534 fax:614 485-5534 Home: [EMAIL PROTECTED] 614 449-1681 icq: 47658358 -Original Message- From: Cameron [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 22, 2001

Re: Textbox validation

2001-03-23 Thread W Luke
Thanks for all the replies. The reason I need to prevent more than one word being entered, is I'm finding it impossible to use wildcard filtering using Access' Instr function (any clues anyone?) - for example, if the search string contained "Bass Guitar" it would only return True if it *matches*

RDS problem solved

2001-03-23 Thread Manolo Rivero
Hi all Finally I solved the problem. It wasn't possible to delete the RDSs right clicking and deleting in the file manager. I had to go to the windows register and look for the keys which correspond to each RDS server I've created. These keys include all the settings I've done in CFStudio. I

Re: template and thread...

2001-03-23 Thread Mark Woods
I'm pretty sure it is in order, so variables you set in 1 are available in 2. Try that and see. At 01:17 PM 3/23/2001, you wrote: Hi, does anyone know that how template behavior? My question is: when I have a bunch of CFInclude

determine if user is active?

2001-03-23 Thread Peter Benoit
My bank disconnects me after 5 minutes, how can I reproduce this? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: CFFILE ACTION=copy and NAMECONFLICT

2001-03-23 Thread Stephen Galligan
Can't you use the 'MAKEUNIQUE' attribute with the CFFILE tag? Steve -- Stephen Galligan ColdFusion Developer Thoughtbubble Ltd http://www.thoughtbubble.net --

server.log error

2001-03-23 Thread Bud
Hi. What would cause this error? Is it written when CF times out after trying to connect to a datasource? Or is it something else? TIA "Error","TID=150","03/21/01","21:10:39","Unable to write reply -- timed out writing data back to web server." "Error","TID=150","03/21/01","21:10:39","Windows NT

RE: determine if user is active?

2001-03-23 Thread John Stanley
Body onLoad settimeout (5 minutes worth of milliseconds) when that timeout has been reached have the session end, window close or whatever -Original Message- From: Peter Benoit [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 8:35 AM To: CF-Talk Subject: determine if user is

RE: determine if user is active?

2001-03-23 Thread James Maltby
If you mean what I think you mean - you do know you posted to the CF-Talk and not the bank's complaints email? ;) - then you need to use session or client variables (the former is likely to be more relevant) - you can set a local timeout in your Application.cfm with the following code:

Re: cfscheduler weird thing...

2001-03-23 Thread Daive
mmmh do you know how to make it work without opening a IE "window" with AT ? :) that's my only trouble with that hehe daive - Original Message - From: "Mark Woods" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, March 23, 2001 3:10 AM Subject: Re: cfscheduler weird

cfloop

2001-03-23 Thread John McCosker
Hi all, I,m not sure if you can nest cfloop but I'm not getting any errors but the desired result is not working. This is my code, cfloop index="item" list="#form.callsign#" cfquery name="qry_getvehicle" datasource="#application.dsn#" username="#application.gateway#"

RE: CFMail replacement for Linux

2001-03-23 Thread Jeff Beer
Thanks for some good ideas all. The issue is that the client has a dynamic form that lets them generate e-mail lists on the fly by matching a number of profile options. The email lists can vary from 10 - 10,000 addresses depending. So, something like majordomo won't work too well. We looked

ORACLE Native Driver Bug?

2001-03-23 Thread Cruz, Joseph
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, all. By way of background, we've created an application that keeps tracks of a user's click stream within a site. We've run into a curious problem; when the following query is executed in Cold Fusion Ent 4.5.1 SP2 on Win2K SP1, CF's memory

Re: DTS packages

2001-03-23 Thread Duane Boudreau
Thanks! cfexecute dtsrun.exe "package name" or you can run a stored porcedure which will do this. -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 22, 2001 8:39 PM To: CF-Talk Subject: DTS packages Does anyone know if it is possible to

RE: Find position in a list

2001-03-23 Thread Duane Boudreau
Use listFind(list [, delimiter]) HTH, Duane -Original Message- From: James Maltby [mailto: Sent: Friday, March 23, 2001 9:28 AM To: CF-Talk Subject: Find position in a list Hi Let's imagine I've got a list of id numbers and a specific id number within this list. How could I output

RE: Find position in a list

2001-03-23 Thread Dylan Bromby
You need GetToken() to get the next/previous values once you get the position of the original substring. --Dylan -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 6:34 AM To: CF-Talk Subject: RE: Find position in a list Use listFind(list

RE: Find position in a list

2001-03-23 Thread dennis baldwin
James, Try this cfset list="23,24,27,30,543,675,980" !--- current_number would be dynamic, right now it's set to 543 --- cfset current_number=543 cfset position=ListFind(list,current_number) cfloop list="#list#" index="count" cfset previous_number=ListGetAt(list,position-1) cfset

Re: Any LDAP Guru's here? Authentication Problem

2001-03-23 Thread Douglas Knudsen
speaking of this, how does one 'authenticate'? I'm having trouble getting this to work. Do I cfldap once anonymously to get the userid based on user inputed info then cfldap again with userid and password supplied this time. If cfldap pulls back a record, then authentication happend,

Querying NT directory permissions?

2001-03-23 Thread Terri Stocke
Hey all, I apologize in advance if this topic has already been discussed ad nauseum, but I'm not even sure where to begin looking in the archives for this.(I did search, but haven't found anything yet to help me out.) Here's what I need to do. Our department sets up all directories for web

RE: determine if user is active?

2001-03-23 Thread Ben Dyer
Or even: meta http-equiv="Refresh" content="300;url=timeout.cfm" At 07:45 AM 3/23/01, you wrote: Body onLoad settimeout (5 minutes worth of milliseconds) when that timeout has been reached have the session end, window close or whatever -Original Message- From: Peter Benoit

RE: Find position in a list

2001-03-23 Thread James Maltby
Thanx everyone - have solved the problem now J -Original Message- From: dennis baldwin [mailto:[EMAIL PROTECTED]] Sent: 23 March 2001 14:43 To: CF-Talk Subject: RE: Find position in a list James, Try this cfset list="23,24,27,30,543,675,980" !--- current_number would be dynamic,

RE: Find position in a list

2001-03-23 Thread Dylan Bromby
i don't think this will work because you don't know how long the string before or after the original substring is. so how would you know what position to specify for ListGetAt()? that's why i think GetToken() would work... -Original Message- From: Mark Woods [mailto:[EMAIL PROTECTED]]

RE: Find position in a list

2001-03-23 Thread Dylan Bromby
heh scratch my last comment, i think it will work... i'm off to find some coffee... -Original Message- From: Mark Woods [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 6:38 AM To: CF-Talk Subject: Re: Find position in a list use the listFind() and listGetAt() functions At

RE: Find position in a list

2001-03-23 Thread James Maltby
Thanx guys - solved the problem now! J -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: 23 March 2001 14:41 To: CF-Talk Subject: RE: Find position in a list You need GetToken() to get the next/previous values once you get the position of the original substring.

Re:Find position in a list

2001-03-23 Thread Chris Terrebonne
James, I am attaching a CFX tag I wrote that will do what you need. It's called ListGetChunk and it allows you to extract a portion of a list. You could use it like this: cfset MyList = "23,24,27,30,543,675,980" cfset Start = ListFind(MyList, 543) - 1 cfset Max = 3 cfx_ListGetChunk

RE: Querying NT directory permissions?

2001-03-23 Thread Bob Silverberg
Check out http://www.intrafoundation.com/intranethostingtoolkit.html I haven't used it, but I think it contains all of the functionality you're looking for. Bob -Original Message- From: Terri Stocke [mailto:[EMAIL PROTECTED]] Sent: March 23, 2001 9:47 AM To: CF-Talk Subject: Querying

RE: CFFILE ACTION=copy and NAMECONFLICT

2001-03-23 Thread Aidan Whitehall
Can't you use the 'MAKEUNIQUE' attribute with the CFFILE tag? That's what I'd done - added NAMECONFLICT="makeunique" and ColdFurion threw the error message pasted into the last post. -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services

Multiple Inputs (was Re: Textbox validation)

2001-03-23 Thread Jeanne Sarfaty Glazer
Will, Have you considered treating the textbox string as a list, breaking it apart for your query (in your example) "bass" OR "guitar" OR "other list item". This way you can allow your users to enter multiple words. The part I'm not sure about is how my example below affects performance

lock problems

2001-03-23 Thread Peter Benoit
I keep seeing this error, and my app seems to freeze from time to time. Any ideas what I should look for? Unable to acquire lock for single threaded sessions within timeout period. Please raise the request timeout limit to lengthen the time available to acquire the lock. My locks all look

RE: determine if user is active?

2001-03-23 Thread Dylan Bromby
the bank disconnects in 5 minutes? or after 5 minutes of inactivity? seems odd if it's the former, because you could be in the middle of a transaction. the meta and onLoad solutions will work like the former (kick in 5 no matter what) not the latter (kick after no action for 5 minutes).

RE: Find position in a list

2001-03-23 Thread Dylan Bromby
heh my second post posted first. how wierd is that. -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 6:51 AM To: CF-Talk Subject: RE: Find position in a list i don't think this will work because you don't know how long the string before or

Processing Times and Servers Under Load

2001-03-23 Thread Duane Boudreau
In general what kind of cf processing times can a server handle under moderate load, say in the neighborhood of 50,000 hits a day. I have been re-writing the front page portal of an ecommerce site and I think with query caching and some streamlining of code I have it down as far as I can (320 ms

Re: Help please

2001-03-23 Thread Billy Cravens
Personally, my advice is to learn everything. That way you can go one way or the other. Makes you available for multiple jobs, as well as some places that need multiple skills. At this point and time, most of the work appears to be in ASP, and there's a healthy chunk of Perl out there.

Re: Boy - here's a dandy Microsoft Security Bulletin MS01-017

2001-03-23 Thread Billy Cravens
Thanks for the heads up Dave, but didn't Microsoft put a moratorium on posting the text of Security Updates to mailing lists? I seem to recall that this was a big issue with BugTraq. -- Billy Cravens HR Web Development, Sabre [EMAIL PROTECTED] Dave Hannum wrote: Take note if you go to pages

Re: Form Submission -- Revisited (UltraDev 4)

2001-03-23 Thread Billy Cravens
Your talking apples and oranges. FrontPage has some proprietary scripts that run on the server that handle things like confirmation pages, email functionality, etc. UD4/ColdFusion do not come with this. You develop the logic yourself. Of course UltraDev comes with server behaviors, as well

RE: determine if user is active?

2001-03-23 Thread Peter Benoit
Yes, it's when I'm inactive they prompt me with a "You better do something or we'll kick you off" type of message. -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 10:13 AM To: CF-Talk Subject: RE: determine if user is active? the bank

RE: cfscheduler weird thing...

2001-03-23 Thread Mark Woods
Are you sure this is the case, this seems very, very strange. I don't think I've ever needed to schedule a http request on Windows that connected to a port other than 80, but I have on linux without any difficulty. The problems I have experienced with CF scheduling are generally with the

RE: Any LDAP Guru's here? Authentication Problem

2001-03-23 Thread Top-Link Tech (John Ceci)
Michael, Could you go a little more indepth, I am working with LDAP for the first time and just can't quite get IT... I can pull a user from the LDAP server, I can search and return multiple results...I can't seem to get what a successful login is... Is it that I get a empty recordset (which

RE: Help please

2001-03-23 Thread Jason Lees (National Express)
Dont just stick to Web based tools, get to grips with conventional programming languages as well, such as VB, C++, JAVA. and others. Even if its just a matter of installing a standard edition of the software and getting to grips with the syntax and format and quirks of the language. Jason Lees

Regular expression Help

2001-03-23 Thread Mallory Woods
Greetings All, I am in the process of developing a small headache with Regular Expressions... I have looked at all of the examples I could find on the archives of this mailing list and other web pages but I still just don't get it.. I think I will pickup the O'Reilly book that I have seen at

RE: cfscheduler weird thing...

2001-03-23 Thread Mark Woods
At 03:22 PM 3/23/2001, you wrote: err, there's no need to do that. There is an executable you can use to process CFML templates via the command line. Have a look at: http://www.allaire.com/Handlers/index.cfm?ID=3328Method=Full Thanks. I don't want to sound ungrateful, but with several

Finding a space in a string..

2001-03-23 Thread Angél Stewart
Hi dee ho all, Would this find a space in a string? CFSET pos= #Find(Chr(20),'tempdefendant')# Because..it ain't working for some reason. I also tried CFSET pos= #Find(' ','tempdefendant')# BUt that results in POS being 0 all the time. -Gel

Passing query back to page through caller in custom tag

2001-03-23 Thread David Caplan
I am trying to write a custom tag that will perform a generic select and bring back a query to the page. Has anyone had any experience passing a query structure back to the page through the caller variable? I am having trouble with this. I also experimented briefly with looping through the query

Re: Regular expression Help

2001-03-23 Thread Savan Thongvanh
OT: are there any statistics on how many developers regexp has made bald? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

crystal report report

2001-03-23 Thread Chang Liu
Hi all, here is my code: CFREPORT REPORT="Report1.rpt" {Class.Class_ID} = "3" /CFREPORT here is my Error Diagnostic Information: Report not completed (the report server was busy) The requested report could not be completed because the server was extremely busy serving other report

Re: Regular expression Help

2001-03-23 Thread Larry W. Virden
Re: use of regular expressions for parsing html One can reliably use regular expressions to parse html if it is html that you have direct and full editorial control over. That is, if you hand edit the html, AND you can keep all your requirements in mind, then you can use with some success

pdf merging?

2001-03-23 Thread Nathan Stanford
I know how to create a dynamic pdf however how do you merge several pdf's into the same document so the user can print the documents just once? Thanks, Nathan ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: CFFILE ACTION=copy and NAMECONFLICT

2001-03-23 Thread Hayes, David
I believe you'll have to check for the existence of the file name using CFDIRECTORY first. -Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 9:08 AM To: CF-Talk Subject: RE: CFFILE ACTION="copy" and NAMECONFLICT Can't you use the

Re: Finding a space in a string..

2001-03-23 Thread Jon Hall
Try ASCII 32. That is the space character. jon - Original Message - From: "Angél Stewart" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, March 23, 2001 11:27 AM Subject: Finding a space in a string.. Hi dee ho all, Would this find a space in a string? CFSET pos=

RE: Finding a space in a string..

2001-03-23 Thread Duane Boudreau
The following returns 8 in cf 4.5.1 cfset x = Find(" ", "tempdef endant") Duane -Original Message- From: Angél Stewart [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 11:27 AM To: CF-Talk Subject: Finding a space in a string.. Hi dee ho all, Would this find a space in a

RE: Finding a space in a string..

2001-03-23 Thread Garza, Jeff
Try CFSET pos = Find(" ",tempdefendant, "1") Jeff Garza Web Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: Angél Stewart [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 9:27 AM To: CF-Talk

RE: cfscheduler weird thing...

2001-03-23 Thread Aidan Whitehall
Well, that depends on what your scheduled task does. To be honest I can't think of a situation where a scheduled task would do something which affects multiple servers which could not be achieved by running tasks on one server. Maybe I read the Allaire article wrong, but I assumed that if

RE: Regular expression Help

2001-03-23 Thread Hayes, David
This works. CFSET theString = "meta name=""pubdate"" content=""Fri, 23 Mar 2001 07:00:00 GMT""" CFSET st = reFindNoCase("(content="")(.*)(GMT"")",theString,1,"TRUE") CFOUTPUT#mid(theString,st.pos[3],st.len[3])#/CFOUTPUT The two pieces are: 1) Creating the regularExpression 2) understanding

RE: CFFILE ACTION=copy and NAMECONFLICT

2001-03-23 Thread Aidan Whitehall
Nameconflict is only used when action=upload. Thanks. So if you're trying to copy a file into a directory that already has a file of that name, how can you specify what action to take? Doesn't it makes sense to be able to provide a NAMECONFLICT attribute for that eventuality? BTW, that was

Crystal Reports Version?

2001-03-23 Thread Richard Colman
Does CR 8.5 work ok with CF 4.51? If not, what version works? TNX for any comments. Rick Colman ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: crystal report report

2001-03-23 Thread Braver, Ben
I get this periodically due apparently to a memory leak in an ODBC driver or something. What solves it immediately is stopping and restarting the CF services. There was a cf-talk thread on Wed. 3/21: Stopping/starting CF with NT "AT" that addressed doing this automatically with CF running on NT

RE: Regular expression Help

2001-03-23 Thread Douglas Malcolm
Mallory, Try this: cfset newVar=REFind(varWithHTML,'meta name="pubdate"[^]+') That should return the string; meta name="pubdate" content="[some date]" Which you can then extract the date from. Good luck! Douglas Malcolm -Original Message- From: Mallory Woods [mailto:[EMAIL

Re: Multiple Inputs (Fixed a Mistake!)

2001-03-23 Thread Jeanne Sarfaty Glazer
Oops - that's what I get for writing code on the fly. Try this instead: !--- mySearchParans is just an example of a possible search string --- CFSET mySearchParams = "Guitar Case and string" CFSET SearchArr = ListToArray(mySearchParams, " ") CFSET SearchLen = ArrayLen(SearchArr) CFSET

RE: Help with SQL statement

2001-03-23 Thread Russ Conway
I'm doing a select from three tables, and my query is timing out. The problem is probably coming from the fact that there is not always a record in the m.POS_ARC_HEADX table. Is there a way to restructure this query so it still checks the m.POS_ARC_HEADX but does not die if no record

RE: Finding a space in a string..

2001-03-23 Thread Craig Dudley
use a regular expression off the top of my head try CFSET pos= RedFind("[[:Space:]]","#tempdefendant#") Syntax cold be wrong, but it's not far off, look in the help on refind() to get it exact. -Original Message- From: Angél Stewart [mailto:[EMAIL PROTECTED]] Sent: 23 March 2001 16:27

RE: Finding a space in a string..

2001-03-23 Thread James McCullough
I am assuming that tempdefendant is a variable however this statement will read it as a string. Since there is no space in tempdefendant as a string you will get a zero. Do this instead. CFSET pos=Find(" ","#tempdefendant#") -Original Message- From: Angél Stewart [mailto:[EMAIL

Re: pdf merging?

2001-03-23 Thread Stephen M Aylor
www.activepdf.com PDF Server Toolkit www.digapp.com (AppendPDF) www.pdflib.com - i beleive the latest incarnation/beta of this lib supports FLAT pdf merging Steve - Original Message - From: "Nathan Stanford" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, March 23,

RE: Finding a space in a string..

2001-03-23 Thread C. Hatton Humphrey
If I remember correctly, the way you've got that statement Find function is looking for a space in the string 'tempdefendant', which will always be 0. Try taking the quote marks off of tempdefendant, like so: CFSET pos= #Find(' ',tempdefendant)# HTH Hatton Hi dee ho all, Would this find

RE: CFFILE ACTION=copy and NAMECONFLICT

2001-03-23 Thread Chad Gray
you cannot use NAMECONFLICT with the Copy Action. You can only use it with the Upload Action. If you have to use the copy action your going to have to create more logic to figure out if the file has the same name. This will be a combination of CFDIRECTORY, CFFILE, and some CFIF statements.

Why wont this advance to the next record

2001-03-23 Thread Michael
Appreciate it someone could tell me why this wont advance to the next record, keep getting 404 error object not found !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN" cfparam name="firstrow" default="1" CFIF IsDefined("URL.first") cfset firstrow = url.first /CFIF Cfset startnextpage =

RE: CFFILE ACTION=copy and NAMECONFLICT

2001-03-23 Thread Aidan Whitehall
I believe you'll have to check for the existence of the file name using CFDIRECTORY first. doh! of course... thanks *sheepish look* -- Aidan Whitehall [EMAIL PROTECTED] Netshopper UK Ltd Advanced Web Solutions Services http://www.netshopperuk.com/ Telephone +44 (01744) 648650 Fax +44

Re: pdf merging?

2001-03-23 Thread Tim Painter
Nathan, Sometime ago, I remember seeing a toolkit on activepdf.com that allowed you to merge pdf's together. I never got a chance to use it, but I do remember seeing some CF examples for it as well. HTH, Tim Painter - Original Message - From: "Nathan Stanford" [EMAIL PROTECTED] To:

RE: Finding a space in a string..

2001-03-23 Thread Hayes, David
Take the quotes off of tempdefendant; it's checking the string (which doesn't have any spaces) rather than a variable. -Original Message- From: Angél Stewart [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 10:27 AM To: CF-Talk Subject: Finding a space in a string.. Hi dee ho

Re: crystal report report

2001-03-23 Thread Chang Liu
Ben, Thank you very much! - Original Message - From: "Braver, Ben" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Friday, March 23, 2001 12:03 PM Subject: RE: crystal report report I get this periodically due apparently to a memory leak in an ODBC driver or something. What

OT: Northpoint DSL shutting down all operations

2001-03-23 Thread Judith Campbell
If any of you have DSL connections to the net, you should aware that Northpoint, one of the primary backbone DSL providers is shutting down all operations effective immediately. Even if they are not your primary vendor, there is a good change they are the supplier to your vendor, so you

OT: freelance board

2001-03-23 Thread Chris Alvarado
a while back someone posted a link to a site where you can go to bid on public contracts for development etc. Happen to remember the URL? thanks, -chris.alvarado [developer] - VerticalNet This message is intended

Very, very, very bad day

2001-03-23 Thread Phoeun Pha
Hey all, early this morning, I was working on project A. I needed a javascript image roll over template so I opened up an FTP from another project (which we'll call project B) i did way back, and downloaded the template. I was using FTP explorer to do this. I worked a few more hours, then set

Database Images

2001-03-23 Thread Brad Squires
This is a multi-part message in MIME format. --=_NextPart_000_0002_01C0B382.A20C2840 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit When you store an image in the database, how do you go about displaying it on the HTML page? Right now, I am simply

  1   2   >