Re: CFUPDATE problem.. HELP!!!

2003-08-01 Thread Jeff - Development
It helped alot.. Thanks. Actually if your interested, it wasn't the primary key, it was indexing on both C_ID and c_phone. I deleted the indexing on c_phone and voi la, problem gone - Original Message - From: s. isaac dealey [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent:

RE: Access to MySQL Migration

2003-08-01 Thread Matt Robertson
I came into this thread late, and should have read thru all of the posts before yapping away. 'best possible solution as determined by the db'? Good God... Utter crap, that. While I've used the decimal type to good effect its been only for rather simple applications where all I've done is house

Re: CFUPDATE problem.. HELP!!!

2003-08-01 Thread S . Isaac Dealey
ahh... yea, primary key is just one kind of index -- apparently cfupdate can be easily confused by indexing in Access... As a rule of thumb, however, I would avoid cfupdate and cfinsert all-together. Write yourself a custom tag that does roughly the same thing and it'll give you better results.

Content Management Systems - a short list...

2003-08-01 Thread Brian Meloche
I had a chance to look at AssetNow. It looks very interesting... the concerns I have are no Oracle... and I am not too keen on the splash screen that comes up after you log in. A lot of the users of this system are not computer savvy, so it shouldn't overwhelm them. Otherwise, I like the

Content Management Systems - a short list...

2003-08-01 Thread Brian Meloche
This looks interesting - but is there any non-shared hosting option? That's all I saw on the site, and that puts it out of the game. This is not an option for us. Hello, cfplug http://www.editingmadeeasy.com /cfplug This product is geared for most small businesses. It provides the

Content Management Systems - a short list...

2003-08-01 Thread Brian Meloche
Ray: There is not a lot of info on your company's solution on the website. What can you tell me about it? You can contact me on or off list. cfplug Element, by my company. www.mindseyeelement.com /cfplug === Raymond

Content Management Systems - a short list...

2003-08-01 Thread Brian Meloche
Isaac: I have seen from your postings that you have Tapestry CMS, but I haven't seen all that much about it. You can contact me on or off list. I would be curious to see a demo, if you have one. Wish I could say that I'm not a sales person... :) Well that's not true -- I say that all the

Re: Access to MySQL Migration

2003-08-01 Thread Jochem van Dieten
Matt Robertson wrote: I've always thought of mySQL as an upscale Access that's the next logical step when your traffic overburdens the weak Access engine but your budget or needs aren't in league with a true grownup solution. This sort of malarkey reinforces that. I think MySQL is very

check through all open sessions?

2003-08-01 Thread Dave Wilson
Hi all, I'm wondering is it possible to check through all active sessions on a particular site. Basically I have a customer services (backend) site which allows for real-time interaction with customers, both online (online customers using a public facing site) and physical. Each customer

RE: T-SQL division drops the decimal?

2003-08-01 Thread Bill Grover
Joshua, I bump into this all the time. You said it is a numeric field but what is the definition of your numeric field. If it is something like numeric(5,0) then there are no decimal places for it to work with. Like Mark said, to get the fraction part just do it as 2.0 and T-SQL will to an

TOT: any pointer to CF-related project?

2003-08-01 Thread Don
Could anyone shed some light on this? Thanks. Things are likely to go as I would expect, but for the moment I need an immediate project to keep light on, any pointer to CF-related immediate project would be very much appreciated. Li, Chunshen (Don) Maryland

RE: T-SQL division drops the decimal?

2003-08-01 Thread Kevin Webb
The numeric field where the result is stored does make a difference, but the 2 is in your division is making the difference below. If you want a decimal result then you must divide by a decimal. I tried one using: newcolumn = '' +mycolumn/2+ '.' +mycolumn%2+ '' 0 = 1/2 / 2 1/4 = 1/2 / 2.0

RE: Host Headers vs. CGI vars (was IIS Domain Naming Question)

2003-08-01 Thread Dowdell, Jason G
I would have two concerns with the CF script doing a task that's specifically designed for IIS. 1. Will take more processor for CF that it would for IIS because you're requiring a cf template to load as well as the IIS request instead of just the IIS request. 2. What happens if you move from

CFQUERYPARAM and date/time values

2003-08-01 Thread Neil Middleton
I have just come across a possible bug in CFMS related to CFQUERYPARAM and dateTimes If you specify a QueryParam with a CFSQLType passing in an ODBCDateTime strange things happen.. e.g Pass in an ODBCDateTime with a cfsqltype of CF_SQL_DATE and CF will ignore the time part of the

LL_DATERE: CFQUERYPARAM and date/time values

2003-08-01 Thread David Collie (itndac)
Yes... is this not a desired action? You have CF_SQL_TIMESTAMP, CF_SQL_DATE CF_SQL_TIME... covers all bases no? -Original Message- From: Neil Middleton [mailto:[EMAIL PROTECTED] Sent: 01 August 2003 12:33 To: CF-Talk Subject: CFQUERYPARAM and date/time values I have just come across

RE: check through all open sessions?

2003-08-01 Thread Kola Oyedeji
Dave One solution is to create an application scope structure which contains each sessions session.sellcustomer id. You should then be able to refer to a particular session. You may also want to store the time of the last request so you can expire users after a period of inactivity. If you are

RE: check through all open sessions?

2003-08-01 Thread Dave Wilson
Kola, One solution is to create an application scope structure which contains each sessions session.sellcustomer id. You should then be able to refer to a particular session. You may also want to store the time of the last request so you can expire users after a period of inactivity. If

Re: CFQUERYPARAM and date/time values

2003-08-01 Thread Jochem van Dieten
Neil Middleton wrote: If you specify a QueryParam with a CFSQLType passing in an ODBCDateTime strange things happen.. e.g Pass in an ODBCDateTime with a cfsqltype of CF_SQL_DATE and CF will ignore the time part of the ODBCDateTime Pass in an ODBCDateTime with a cfsqltype of

RE: check through all open sessions?

2003-08-01 Thread Tim Blair
Thanks, this is pretty much what I had in mind, but how do I actually retrieve the session.sellcustomer variable from each active session to place them into my structure? How about creating an application var, say: cfset application.sessionref = structnew() then during the initialisation of

word2html tag

2003-08-01 Thread Michael T. Tangorre
Has anyone had consistant results using the word2html tag from the MM = exchange? It says it works for Word 2000 and was wondering if it worked on office = 95, 97, and xp documents as well. Unfortunately, I no longer have copies of Word 95, 97, etc... only 2000. If anyone could share their

Page Context Bug?

2003-08-01 Thread Alexander Sherwood
That sort of stuff will be resolved as Mach II nears release - and it will almost certainly require Red Sky (because of the page context bug, mainly). What is the behavior (or lack thereof) of this bug?! Thanks.. -- Alex Sherwood PHS Collection Agency THE

RE: check through all open sessions?

2003-08-01 Thread Dave Wilson
Thanks Tim, Exactly what I was looking for. Dave -Original Message- From: Tim Blair [mailto:[EMAIL PROTECTED] Sent: 01 August 2003 13:29 To: CF-Talk Subject: RE: check through all open sessions? Thanks, this is pretty much what I had in mind, but how do I actually retrieve

Access SQL Question :(

2003-08-01 Thread Tim Heald
Evening, I am trying to work out an update statement for Access. It's on CF 4.5. I am generating the SQL in a cfscript, it will be below. The final script looks like this: update printers set MAKE = 'new make', MODEL = 'new model', PRODUCTTYPE = 'new product', PRINTERGROUP = 'new grogugp',

Re: Access SQL Question :(

2003-08-01 Thread Jochem van Dieten
Tim Heald wrote: [Microsoft][ODBC Microsoft Access Driver] Syntax error (missing operator) in query expression '''new make'''. Any Ideas? BTW, this is a dynamic script I am writing PreserveSingleQuotes? Jochem ~|

CFIMPORT on Linux

2003-08-01 Thread Jordan Thomas
Hi, I was using my app on windows without a problem. I am not trying to move the app to Linux and I have run into problems with not being able to import tag libraries. The error that I am getting is Could not import the tag library specified by /WEB-INF/cftags/layout. The following error was

Re: Access SQL Question :(

2003-08-01 Thread Michael T. Tangorre
can you show us what the query looks like in the debug output? Wait, does CF 4.5 output that i forget. :-) If so, send that to the list. That would let us see what the dynamic query looked like when it failed i think, and we can go from there. mike - Original Message - From:

Re: Access SQL Question :(

2003-08-01 Thread Mahmut Basaran
try to use [ ] in column names, like [MAKE], you can also partially delete the sql statement one by one to find the bad row. - Original Message - From: Tim Heald [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, August 01, 2003 4:19 PM Subject: Access SQL Question :(

Re: CFIMPORT on Linux

2003-08-01 Thread Todd
Probably permission issues. The directory has to be viewable by whomever that cfmx service is running as. ~Todd At 09:26 AM 8/1/2003, you wrote: Hi, I was using my app on windows without a problem. I am not trying to move the app to Linux and I have run into problems with not being able to

RE: Access SQL Question :(

2003-08-01 Thread Tim Heald
The query you see is my output from the variable I created containing the SQL statement. Man I hate access. Tim -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 9:28 AM To: CF-Talk Subject: Re: Access SQL Question :( can you show us

RE: Access SQL Question :(

2003-08-01 Thread Tim Heald
Here's what it's producing now: update printers set [MAKE] = 'new make', [MODEL] = 'new model', [PRODUCTTYPE] = 'new product', [PRINTERGROUP] = 'new grogugp', [CATEGORY] = 'new cgategory', [CSPEED] = 0, [ONSALEPRICE] = '$0.00', [MSRP] = '$0.00', [SOL2] = 1, [SOL4] = 1, [SOL6] = 1, [SOL8] = 1,

Re: Access SQL Question :(

2003-08-01 Thread Michael T. Tangorre
what are the data types for the columns? what version of access of are you using? - Original Message - From: Tim Heald [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, August 01, 2003 9:52 AM Subject: RE: Access SQL Question :( Here's what it's producing now: update

RE: Access SQL Question :(

2003-08-01 Thread Mark A. Kruger - CFG
Tim, AS has been mentioned, if you are creating a string and passing it to the cfquery tag, make sure and use preserveSinglequotes( ) around it: cfquery name=update datasource=blah #preservesinglequotes(myQueryString)# /cfquery If you do not, the CF escapes the single quotes FOR

RE: The Ongoing Saga of the Dead Session Variable

2003-08-01 Thread Ian Skinner
But are ALL the Server Setting the same as well? -- Ian Skinner Web Programmer BloodSource Sacramento, CA -Original Message- From: Richard Crawford [mailto:[EMAIL PROTECTED] Sent: Thursday, July 31, 2003 3:17 PM To: CF-Talk Subject: RE: The Ongoing Saga of the Dead Session

RE: Access SQL Question :(

2003-08-01 Thread Tim Heald
ohhh I thought it was around the field value. You got it. Thanks everyone Tim -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 10:05 AM To: CF-Talk Subject: RE: Access SQL Question :( Tim, AS has been mentioned, if you are

Re: CFUPDATE problem.. HELP!!!

2003-08-01 Thread Jeff - Development
Usually I write SQL for this kind of stuff but figured that the cfupdate would have been quicker. Little did I know - Original Message - From: S. Isaac Dealey [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, August 01, 2003 3:08 AM Subject: Re: CFUPDATE problem..

RE: Page Context Bug?

2003-08-01 Thread Raymond Camden
Take a CFC. Cache it (ie, application.foo = the cfc). On the 2nd-N page requests, any method in the cfc that references other scopes (imagine one that uses application.dsn) or tries to output instead of returning data, will fail.

RE: Access SQL Question :(

2003-08-01 Thread Mark A. Kruger - CFG
no problem... -Original Message- From: Tim Heald [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 9:08 AM To: CF-Talk Subject: RE: Access SQL Question :( ohhh I thought it was around the field value. You got it. Thanks everyone Tim -Original Message- From: Mark A.

RE: Host Headers vs. CGI vars (was IIS Domain Naming Question)

2003-08-01 Thread Kola Oyedeji
Also I'm don't know if its an internal apps, but some search engines view a (homepage) redirect as an attempt to trick search engine spiders. Kola -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED] Sent: 01 August 2003 12:30 To: CF-Talk Subject: RE: Host Headers

RE: Page Context Bug?

2003-08-01 Thread Alexander Sherwood
At 09:18 AM 8/1/2003 -0500, you wrote: Take a CFC. Cache it (ie, application.foo = the cfc). On the 2nd-N page requests, any method in the cfc that references other scopes (imagine one that uses application.dsn) or tries to output instead of returning data, will fail. Gotcha, thanks. How is

OT: IIS virtual directories

2003-08-01 Thread Robert Orlini
With IIS 5.0, can I delete the IISADMIN, MSADC and printers virtual directories w/o any problems to our website? I don't do any administration of the site except directly on the machine. Also, can I delete the Admin Web Site? What is it used or? Thanks. Robert O.

Re: Access to MySQL Migration

2003-08-01 Thread John Paul Ashenfelter
I second Jochem. Just got back from giving a talk at OSCON on DataWarehousing with MySQL. MySQL is amazingly fast, and since data warehouses are full of read-only data (let's ignore the ETL step for a sec) then MySQL in many ways is a *far* better choice than MS-SQL or Oracle. The memory cache

RE: Page Context Bug?

2003-08-01 Thread Raymond Camden
Take a CFC. Cache it (ie, application.foo = the cfc). On the 2nd-N page requests, any method in the cfc that references other scopes (imagine one that uses application.dsn) or tries to output instead of returning data, will fail. Gotcha, thanks. How is this related to

listcontains

2003-08-01 Thread Wurst, Keith D.
i have a list like this... 15,0,2,5 when i run a listcontains on it for the number 1 - i get back a positive response. i guess it is seeing the 1 in 15 and telling me that 1 exists in that list. cfif #listcontains(#pick_list#,1,,)# any way to have it look for 15 specifically, and not 1

RE: listcontains

2003-08-01 Thread David Collie (itndac)
ListFind -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: 01 August 2003 16:11 To: CF-Talk Subject: listcontains i have a list like this... 15,0,2,5 when i run a listcontains on it for the number 1 - i get back a positive response. i guess it is seeing the 1

RE: IIS virtual directories

2003-08-01 Thread Douglas.Knudsen
ugh...this would be part of best practices...along with removing most of the script mappings too. YMMV though Doug -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 10:40 AM To: CF-Talk Subject: OT: IIS virtual directories With IIS 5.0,

RE: listcontains

2003-08-01 Thread Dave Wilson
Try listfind instead -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: 01 August 2003 16:11 To: CF-Talk Subject: listcontains i have a list like this... 15,0,2,5 when i run a listcontains on it for the number 1 - i get back a positive response. i

RE: Cognos Web Services SDK CF

2003-08-01 Thread Broner, Mark, CON, OASD(HA)/TMA
I think that whatever it is that they were going to do has fallen by the wayside actually. Although you should be able to use the SDK to work with RIA no problems. There is an app that was done by molecular that is really nice in terms of cubes. I am having issues working the the actual SDK I

Re: Page Context Bug?

2003-08-01 Thread Matt Liotta
When JSPs are created they have no relationship to a request and its subsequent response. Thus, they need a context to tie the request and response to themselves. The Servlet engine does this by providing a PageContext object. Since CFMs -- and unfortunately CFCs -- are just specialized

RE: IIS virtual directories

2003-08-01 Thread Aidan Whitehall
With IIS 5.0, can I delete the IISADMIN, MSADC and printers virtual directories w/o any problems to our website? I don't do any administration of the site except directly on the machine. Also, can I delete the Admin Web Site? What is it used or? Run the IIS Lockdown utility first on a

Re: Page Context Bug?

2003-08-01 Thread Alexander Sherwood
At 11:19 AM 8/1/2003 -0400, you wrote: When JSPs are created they have no relationship to a request and its subsequent response. Thus, they need a context to tie the request and response to themselves. The Servlet engine does this by providing a PageContext object. Since CFMs -- and

RE: The Ongoing Saga of the Dead Session Variable

2003-08-01 Thread Richard Crawford
At 07:08 AM 8/1/2003 -0700, Ian Skinner wrote: But are ALL the Server Setting the same as well? They are indeed. I personally built both servers from scratch. The only difference is in the database servers. We have a production database and a development database, and both of them run MS-SQL

CFMX

2003-08-01 Thread Michael T. Tangorre
How does one go about creating virtual directories in the built in web server on CFMX? I have CF 5 installed to, running on IIS already... Mike ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

RE: check through all open sessions?

2003-08-01 Thread Peter Theobald
This is a very good idea, but for my purposes (I didn't ask the original question) I need to know when the session is scheduled to time-out. How do I get that info for a session? In other words, when a page request runs a session's last-used-time is reset to NOW(). But as times goes on the

Can CF Utilize Multiple Processors?

2003-08-01 Thread Avi Flax
Matt, thanks for the reply! I'm interested in what you said about configuration. We're using Dual-Xeon Machines and I've got the Simultaneous Requests setting at 12. Do you think we would see better results if we changed that? Is there anything else that would help us utilize both processors

dynamic sql update

2003-08-01 Thread Wurst, Keith D.
i know i need a tag around #active_week#_winner but i cant remember what it is. can someone remind me? thanks. update tbl_pic set #active_week#_pic = #active_week#_win ~| Archives:

RE: dynamic sql update

2003-08-01 Thread Adrian Lynch
If there is a variables called #active_week# and you have it in a cfquery you don't need a tag around it. Ade -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: 01 August 2003 16:41 To: CF-Talk Subject: dynamic sql update i know i need a tag around

RE: check through all open sessions?

2003-08-01 Thread Dave Wilson
Peter, You could set a variable to represent the application's sessiontimeout value, then simply run a datediff between the recorded time and current time (now()). Check this datediff result against the timeout value, then act accordingly i.e. datediff is larger then the session has expired.

CF tag for highlighting text in a textfield?

2003-08-01 Thread Rafael Alan Bleiweiss
Anyone ever do this or know of a custom tag? I've got a form that needs to be checked against a list of bad words, and the refresh of the page needs to have the text in the textarea with the matched bad words highlighted in bold or red font... What's it take to do this?

RE: check through all open sessions?

2003-08-01 Thread Scott Weikert
At 11:40 AM 8/1/2003 -0400, you wrote: This is a very good idea, but for my purposes (I didn't ask the original question) I need to know when the session is scheduled to time-out. How do I get that info for a session? In other words, when a page request runs a session's last-used-time is reset

CFMX Inquiry

2003-08-01 Thread Graham Pearson
I am looking into putting in acouple of new servers for this next school year and wanted to know if CFMX Professional would take advantage of a Dual Processor System or would I just be wasting money by going to a dual processor system to serve cfml pages.

RE: check through all open sessions?

2003-08-01 Thread DURETTE, STEVEN J (AIT)
Wouldn't this be: session timeout - (now - last page hit) = time remaining Then you would get the information from that client variables. Since I have the client variables stored in a MSSQL table (instead of the registry) I can do the following query to get the last page hit information:

OT sql openrowset

2003-08-01 Thread Tim Do
Hello all, I'm using openrowset to read a dbase file in a stored proc. From what I've read, that opens up a db connection. Is there a way close it?? Thanks, Tim ~| Archives:

Re: CFUPDATE problem.. HELP!!!

2003-08-01 Thread S . Isaac Dealey
Usually I write SQL for this kind of stuff but figured that the cfupdate would have been quicker. Little did I know Ha! Yea, you gotta love those moments. :) s. isaac dealey972-490-6624 new epoch http://www.turnkey.to lead architect, tapestry cms

RE: OT sql openrowset

2003-08-01 Thread DURETTE, STEVEN J (AIT)
Tim, I use openrowset in a stored procedure to access an oracle database and AFAIK it closes the connection as soon as the procedure completes. If it didn't then the group that manages that oracle database would be out to kill me for all of the connections that would be created! Steve

RE: OT sql openrowset

2003-08-01 Thread Tim Do
Hmmm I'm trying to delete the file right after the stored proc completes.. I don't think its being released cause I can't seem to delete it. Even try to delete it manually. I have to wait approx 30 secs until I'm able to delete it. -Original Message- From: DURETTE, STEVEN J (AIT)

Re: CF tag for highlighting text in a textfield?

2003-08-01 Thread Jerry Johnson
I don't think you can highlight in a textarea. If you need this combination of markup and editing, I thin kyou will need to switch to a WYSIWYG editor of some flavor or another. Jerry Johnson [EMAIL PROTECTED] 08/01/03 12:52PM Anyone ever do this or know of a custom tag? I've got a form

Re: Can CF Utilize Multiple Processors?

2003-08-01 Thread Matt Liotta
I can't really help you with configuration as that is specific to your needs. I would advise you to develop a testing methodology to determine the best configuration for your specific needs. However, you should be aware that using multiple instances of CFMX clustered together on a single

Re: CFMX Inquiry

2003-08-01 Thread Doug White
I am running CFMX on a Dual Processor box - works fine == Stop spam on your domain, use our gateway! For hosting solutions http://www.clickdoug.com ISP rated: http://www.forta.com/cf/isp/isp.cfm?isp_id=772 == If you are not

Re: CF tag for highlighting text in a textfield?

2003-08-01 Thread B G
I've been looking into a similar function myself. I would like to stay away from adding a rich text editor to the form. I'm starting to lean toward a Message Board Markup Language. Anyone have any insight? BG From: [EMAIL PROTECTED] (Rafael Alan Bleiweiss) Reply-To: [EMAIL PROTECTED] To:

fusemail

2003-08-01 Thread Critz
oi CF-Talk,!! wasn't there a cf based product around called fusemail? Crit --- [This E-mail scanned for viruses by Declude Virus] ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Jeff Beer
Unfortuneatly, a standard HTML textarea doesn't render HTML codes, so you really can't highlite words - the textarea would show the b or style or font tags, etc.. You'll need to use an HTML editor object - I use SoEditor Lite (http://www.siteobjects.com/pages/order.cfm). It's free and very

RE: check through all open sessions?

2003-08-01 Thread Peter Theobald
The problem with that is that I would be calculated the expected timeout, and not the actual value that Coldfusion is using. In theory they should be exactly the same, but in practice I am trying to track down a problem where Coldfusion is expiring sessions much earlier than it should. If I

RE: fusemail

2003-08-01 Thread Ken Wilson
Sure was...from e-zonemedia...the makers of FuseTalk. Now apparently known as FuseTalk, Inc. http://www.fusetalk.com/ Not sure whatever happened to FuseMail but it was pretty slick if you were committed to IE. Ken -Original Message- From: Critz [mailto:[EMAIL PROTECTED] Sent: Friday,

RE: listcontains

2003-08-01 Thread Andy Ousterhout
listfind -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 10:11 AM To: CF-Talk Subject: listcontains i have a list like this... 15,0,2,5 when i run a listcontains on it for the number 1 - i get back a positive response. i guess it is

Re: CF tag for highlighting text in a textfield?

2003-08-01 Thread zac spitzer
Jerry Johnson wrote: I don't think you can highlight in a textarea. you can do this actually... you can also move the cursor in a text field or select part of it... here's a good start .. mozilla is way ahead on the easiness too.. ie is a bit more difficult FAQTs - Knowledge Base - View

Re: fusemail

2003-08-01 Thread Todd
Yeah, was by the same people that did fusetalk. They don't sell it anymore though because they stated they were having too many issues with CFPOP, CFMAIL, etc. ~Todd At 12:16 PM 8/1/2003, you wrote: oi CF-Talk,!! wasn't there a cf based product around called fusemail? Crit

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Jeff Garza
If you are in an Intranet setting and are using IE, you can use an editable DIV to hold the formatted text, and then when you go to submit, copy the innerHTML or innerText value from the div to a hidden field... div id=mycontent style=overflow: scroll CONTENTEDITABLE/div Just a thought... Might

RE: check through all open sessions?

2003-08-01 Thread Dave Wilson
The problem with that is that I would be calculated the expected timeout, and not the actual value that Coldfusion is using. In theory they should be exactly the same, but in practice I am trying to track down a problem where Coldfusion is expiring sessions much earlier than it should. This

Re: CF tag for highlighting text in a textfield?

2003-08-01 Thread jon hall
Mozilla supports this as well. Some slight differences in syntax though. For that matter though, Flash would obviously support this as well... -- jon mailto:[EMAIL PROTECTED] Friday, August 1, 2003, 12:47:19 PM, you wrote: JG If you are in an Intranet setting and are using IE, you can use an

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Rafael Alan Bleiweiss
Unfortuneatly, a standard HTML textarea doesn't render HTML codes, so you really can't highlite words - the textarea would show the b or style or font tags, etc.. You'll need to use an HTML editor object - I use SoEditor Lite (http://www.siteobjects.com/pages/order.cfm). It's free and very

Re: Page Context Bug?

2003-08-01 Thread Sean A Corfield
On Friday, Aug 1, 2003, at 08:09 US/Pacific, Raymond Camden wrote: How is this related to PageContext, though? My understanding (and this is most likely wrong) is that the PageContext ob allows things like access to the scopes, access to output, etc. I'm probably wrong about it - but you get

Re: CF tag for highlighting text in a textfield?

2003-08-01 Thread Rafael Alan Bleiweiss
At 11:40 AM 8/1/03, you wrote: http://www.faqts.com/knowledge_base/view.phtml/aid/13562/fid/130 This allows manipulation of a selection. I need to be able to parse through the submitted textarea content and feed it back into the form with numerous words html wrapped with Bold or Red...

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Rafael Alan Bleiweiss
If you are in an Intranet setting and are using IE, you can use an editable DIV to hold the formatted text, and then when you go to submit, Hey this is really good... its not an Intranet, but I think for the first time in my life I want to say screw my own rules... and require IE Now I need to

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Rafael Alan Bleiweiss
At 11:47 AM 8/1/03, you wrote: editable DIV to hold the formatted text, and then when you go to submit, copy the innerHTML or innerText value from the div to a hidden field... Just a pointer please - how to copy the innertext to a hidden field?

Re: Page Context Bug?

2003-08-01 Thread Matt Liotta
It does make it difficult to write efficient frameworks using CFCs tho' so, for example, Mach II will require Red Sky to run efficiently. I'm glad you finally admitted that. -Matt ~| Archives:

RE: Page Context Bug?

2003-08-01 Thread Raymond Camden
And, as Ray says, the dread page context bug is fixed in Red Sky. Coming soon! And if it hasn't been said enough - RedSky fixes other CFC bugs as well as adding support for super(). In other words, RedSky kicks major butt. You can quote me on that.

Re: Page Context Bug?

2003-08-01 Thread zac spitzer
Matt Liotta wrote: It does make it difficult to write efficient frameworks using CFCs tho' so, for example, Mach II will require Red Sky to run efficiently. I'm glad you finally admitted that. so matt, you said a while back it was impossible to write mvc frameworks in cfmx, with the

RE: CF tag for highlighting text in a textfield?

2003-08-01 Thread Jeff Garza
Something like this should do the trick: SCRIPT type=text/javascript function htmltotext(){ document.myform.plaintext.value = mycontent.innerHTML; } function text2HTML(){ mycontent.innerHTML = document.myform.plaintext.value; } /SCRIPT div id=mycontent style=overflow: scroll CONTENTEDITABLE/div

regular expression question

2003-08-01 Thread Jason Rogoz
does anyone know how to write the regular expression to find 2 out of three words in a row? I need to determine is a string has and or or not and etc in the string. Thanks ~| Archives:

OT: selling blood

2003-08-01 Thread LI, Chunshen \(Don\)
I'm ready to sell blood. Does anyone need any? Thanks. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ:

RE: selling blood

2003-08-01 Thread Haggerty, Mike
WTF? Is this a desperate cry for attention? M -Original Message- From: LI, Chunshen (Don) [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 2:00 PM To: CF-Talk Subject: OT: selling blood I'm ready to sell blood. Does anyone need any? Thanks.

RE: selling blood

2003-08-01 Thread Richard Crawford
Perhaps an cry for help from a long-unemployed programmer? At 02:06 PM 8/1/2003 -0400, you wrote: WTF? Is this a desperate cry for attention? M -Original Message- From: LI, Chunshen (Don) [mailto:[EMAIL PROTECTED] Sent: Friday, August 01, 2003 2:00 PM To: CF-Talk Subject: OT: selling

Re: regular expression question

2003-08-01 Thread Michael Dinowitz
'(word1 |word2 |word3 ){2,} Word 1, 2 and 3 are all words in a sub expression. Each has a space after it. The RegEx is looking for any 2 or more of these in a row. Michael Dinowitz Finding technical solutions to the problems you didn't know you had yet does anyone know how to write the

Re: OT: selling blood

2003-08-01 Thread jon hall
No thanks...I get my blood for free. -- jon mailto:[EMAIL PROTECTED] Friday, August 1, 2003, 2:00:00 PM, you wrote: LCD I'm ready to sell blood. Does anyone need any? LCD Thanks. ~| Archives:

RE: OT: selling blood

2003-08-01 Thread Angel Stewart
Wowsies! Just what I've been looking for! What type??? -Count Gel -Original Message- From: jon hall [mailto:[EMAIL PROTECTED] No thanks...I get my blood for free. -- jon mailto:[EMAIL PROTECTED] Friday, August 1, 2003, 2:00:00 PM, you wrote: LCD I'm ready to sell blood. Does

Re: selling blood

2003-08-01 Thread Michael Dinowitz
1. I sympathize with you if your posting because work is tight. I myself have the same problem and its mainly because I don't want to move to Washington where there is lots of work. 2. Be that as it may, this is kind of off topic for the CF-Talk list as it's not tech but a cry of frustration.

Re: Page Context Bug?

2003-08-01 Thread Matt Liotta
Just to be clear, I didn't say it was impossible; just not efficient of scalable. In regards to RedSky, I can't answer that since I am not part of the beta program and even if I was I would be under NDA. Maybe in the future when RedSky is released it will be worth revisiting. -Matt On

Homesite and CF mappings

2003-08-01 Thread jon hall
This has been bugging me for a while, and I was wondering if anyone had thought of a creative solution. I love Homesite's right-click edit include file feature, but it wont work with mappings obviously. Any ideas? -- jon mailto:[EMAIL PROTECTED]

RE: Querying a text file

2003-08-01 Thread Mark Stewart
Couple days late on this, but... I usually use SQL Server DTS packages to do my heavy file lifting - I set-up a connection to the file and place the contents into the db. If I'm not worried about real time data, I schedule the package. You can also run a dts package through cf using COM. You

Re: Homesite and CF mappings

2003-08-01 Thread Todd
It's working for me on mappings? Please clarify what you mean by 'mappings' - are you talking about CFMX mappings or are you talking network mappings? I'm guessing cfmx mappings. Thanks, ~Todd At 02:36 PM 8/1/2003, you wrote: This has been bugging me for a while, and I was wondering if

  1   2   >