Re: Flash remoting alternative

2006-03-03 Thread Chris Velevitch
There's WebOrb (formerly FlashOrb) from http://www.themidnightcoders.com which is free for commerical use. Runs on Java There's AMFPHP from http://www.amfphp.org which is free open source. Runs on PHP. Theres OpenAMP from http://www.openamf.org which is free open source. Runs on Java. There's

Re: Flex 2 and Ben Forta

2006-03-03 Thread Mike Chambers
Yes. That is correct. The Flex Framework and compiler will be free, and don't require the Flex server to integrate with ColdFusion. mike chambers [EMAIL PROTECTED] Dave Watts wrote: According to my understanding, you don't necessarily have to purchase any server component at all. You can

Pimp my FlashForms: Access Webservices directly from CF FlashForms

2006-03-03 Thread Artur Kordowski
If you want to know how, you can access Webservices directly form CF FlashForms without CFC than read my newest article: http://www.newsight.de/2006/03/03/access-webservices-directly-from-cf-flashf orms/ Artur ~| Message:

Re: UTF-8 text retrieved in query doesn't display properly

2006-03-03 Thread Michael Kaplan
what db driver? what datatype? and do you mean you really stored utf-8 in the db or ucs2? I'm using the JDBC driver that came with 6.1, the data is stored as nvarchar, and to be perfectly honest, I'm not sure about your last question. I assume it's stored as ucs2, since this Microsoft KB

Re: UTF-8 text retrieved in query doesn't display properly

2006-03-03 Thread Paul Hastings
Michael Kaplan wrote: I'm using the JDBC driver that came with 6.1, the data is stored as nvarchar, and to be perfectly honest, I'm not sure about your last question. I assume it's stored as ucs2, since this Microsoft KB article says that's the way it has to be:

Re: lost my cfide-folder

2006-03-03 Thread Sebastian Mork
Hi, thank you for all replies. If you don't have it as backup, rerun the installer, choose EAR and a temp directory, unpack the resulting EAR file and copy the directory. Don't forget to check for patches. I did it that way and its working fine, thx :) but where are the (cf)docs, I couldn't

RE: Secure cfftp? SSH, SSL, TLS?

2006-03-03 Thread Russ
Well I've never tried it myself, but I don't see why you can't have stunnel run on 2 different ports? rsync over ssh might be another choice. We've been using it to make secure transfers to other (linux based) servers. Russ -Original Message- From: Jochem van Dieten [mailto:[EMAIL

CSS UL IE help

2006-03-03 Thread Ray Champagne
I have a site I'm mocking up and am having some trouble with padding in my ul list looking different in IE and FF. Take a look at the below URL - the bottom green bulleted list looks great in FF, but has way too much padding in IE. Anyone know how to fix that? Either Google can't find what

Re: anyone used cfx_zip??

2006-03-03 Thread Srinivasa Teja Palla
Also, when I do a cfx_zip with file attribute as c:\dir1,c:\dir2, it ends up trying to zip the whole c drive. I am going crazy over using this tag. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234036 Archives:

Re: UTF-8 text retrieved in query doesn't display properly

2006-03-03 Thread Michael Kaplan
back in the bad old cf5 days actually storing utf-8 was a (poor) workaround for not having unicode in cf. are you using cfqueryparam maybe not turned on the unicode option for that dsn? got a public page we can see? I'm doing a simple SELECT statement, so no CFQUERYPARAM. I do have the

RE: CSS UL IE help

2006-03-03 Thread Sandra Clark
Each browser has its own style sheet which sets (among other things) default margins and padding for each element. The best way I have found to combat this is to specifically zero out all margins and paddings from all elements first and explicitly set them up as necessary.

Re: UTF-8 text retrieved in query doesn't display properly

2006-03-03 Thread Paul Hastings
Michael Kaplan wrote: I'm doing a simple SELECT statement, so no CFQUERYPARAM. I do have the unicode option for the DSN turned on, although I know it isn't going to do anything in this instance. good i18n practice. Unfortunately, I can't put this up on a public site, but I'd be happy to post

phone number validation script for TMT validator?

2006-03-03 Thread Andy Matthews
I've looked through the docs and can't find one. But does anyone have a phone number validation script for Massimo's TMT validator? I've tried using a data validator with a custom mask but it doesn't seem to work. I just want to restrict it to numbers (that part's easy), but it would be great if

CF MX 7 and DB2 connection timeout

2006-03-03 Thread Smith, Daron [PA]
We recently moved our web site to a CF MX7 box. Ever since we occasionally get the following error Error Executing Database Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][IBM][iSeries Access ODBC Driver]Communication link failure. comm rc=10054 - CWBCO1047 - The iSeries server application

cfloop query= bug?

2006-03-03 Thread Ryan Guill
Hey guys, im posting this to see if anyone else sees this as a bug. I have had a few people verify that Im not losing my mind, but just want to see if everyone agrees that this is not expected behavior. Take the following code and run it: start code cfset

Re: phone number validation script for TMT validator?

2006-03-03 Thread Ben Doom
You might try something along the lines of (\d{3}-)?\d{3}-\d{4} Never used the TMT validator, but from what I've seen on the lists, it takes a fairly standard regex, right? --Ben Andy Matthews wrote: I've looked through the docs and can't find one. But does anyone have a phone number

Re: CSS UL IE help

2006-03-03 Thread Rodney Enke
IE is applying your UL style (style=padding:5px 0px 5px 40px) to each LI element and Firefox is not. Either remove the UL style completely or wrap a DIV around the list and move the UL style to the DIV element. - Rod On 3/3/06, Ray Champagne [EMAIL PROTECTED] wrote: I have a site I'm mocking

CF7 100% CPU usage

2006-03-03 Thread nerd
Just installed CF7 on our Win2003 server a couple of days ago. Since then we've been having trouble with our site running slowly and certain large threads on our (in-house developed) discussion board timing out completely. I checked the CPU usage and, after a little experimentation, realized

Re: UTF-8 text retrieved in query doesn't display properly

2006-03-03 Thread Michael Kaplan
Absolutely. Email address? ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234046 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4

Re: cfloop query= bug?

2006-03-03 Thread Claude Schneegans
I think this issue has been discussed a few days before. It is a bug in CF (not in blue Dragon). The current row of a first level loop is alway on when seen from an inner loop. The workaround is to store column values in variables at the first level. -- ___

Re: UTF-8 text retrieved in query doesn't display properly

2006-03-03 Thread Michael Kaplan
Got your email address from the Adobe forum...I'll send presently. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234048 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

RE: Flex 2 and Ben Forta

2006-03-03 Thread Munson, Jacob
Free use for those who never copy, modify or distribute. As long as you never distribute the MySQL Software in any way, you are free to use it for powering your application, irrespective of whether your application is under GPL license or not. It's probably obvious, but I wanted to make it

Stack Trace Help?

2006-03-03 Thread Brian Peddle
This is the first time I have gotten into stack traces. I am using Fusion Reactor to grab some traces and this was a very slow one. Im really not sure what to look for - are there any good docs around that explain some of these items? It would guess those two locks below aren't good and would

RE: GMail manipulation remotely

2006-03-03 Thread Munson, Jacob
Maybe I'm over-simplifying your problem, but it's my understanding that you can use google's smtp server for your outgoing email. So you could use that in the cfmail tag, and put all your CCs in yourself. You'd only send out one email, but it would go to a bunch of people (the CC addresses), and

Re: cfloop query= bug?

2006-03-03 Thread Claude Schneegans
The current row of a first level loop is alway on Scuse, I meant is always ONE -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL PROTECTED]) Thanks.

RE: GMail manipulation remotely

2006-03-03 Thread Dave Sueltenfuss
Just to state the obvious, I would think the email would have to come from a gmail address. I doubt gmail would handle mail for any other address. -Original Message- From:Munson, Jacob [EMAIL PROTECTED] To: CF-Talk ; Sent: Mar 3, 2006 11:21:43 AM Subject: RE: GMail manipulation

cfdocument buggy?

2006-03-03 Thread kurt schroeder
Wondering what the general feel for cfdocument and pdf is. I'm having odd problems like it not reading breaks and nbspaces or height tags? Antone else have these problems? thanks KES ~| Message:

Re: adjust timeout for one CFC method

2006-03-03 Thread Jochem van Dieten
Bryan Stevenson wrote: cfsetting requesttimeout=xx and where do I put that Jochem? I know where it goes in normal CFMs, but will it have the same effect betweem CFCUNCTION tags? I would probably put it in the method itself, controlled from an optional argument. Jochem

Re: GMail manipulation remotely

2006-03-03 Thread Jochem van Dieten
Baz wrote: Is it possible to write an app that can send email through GMail? For example, if I wanted to send a 5mb attachment to a list of 10 users, could I instruct the GMail server to forward the email to each user, or send CCs to each user. The primary objective being not to duplicate the

RE: CFMX flash remoting

2006-03-03 Thread Kevin Aebig
There's a tool that comes with the Flash Remoting Components that shows Remoting calls, debugging output, errors, results a pile of other. Because I can't seem to find it as a separate download, so I created a projector of it that can be downloaded at

Re: adjust timeout for one CFC method

2006-03-03 Thread Bryan Stevenson
I would probably put it in the method itself, controlled from an optional argument. Jochem Great...thanks Jochem...didn't know it would work in a methodI've learned my new thing for the day ;-) Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems

RE: CF7 100% CPU usage

2006-03-03 Thread Snake
Do you have any CFC's which u are instantiating inside session scope ? -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 03 March 2006 14:40 To: CF-Talk Subject: CF7 100% CPU usage Just installed CF7 on our Win2003 server a couple of days ago.

RE: phone number validation script for TMT validator?

2006-03-03 Thread Andy Matthews
Yeah... It's standard regex. I actually found a filter that I hacked and got it to work. It only allows numbers and the dash. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Ben

Re: cfdocument buggy?

2006-03-03 Thread Pete Ruckelshaus
PDF generation with CFDOCUMENT is certainly more art than science, I can tell you that from experience. Ideally, the printed browser output would be identical to printed PDF output from the same generating code, but I can tell you that is most definitely not the case. However, differences in CSS

Re: cfloop query= bug?

2006-03-03 Thread Ryan Guill
But thats not the case. The current row is correct, even in the inner loop, but the value is not. On 3/3/06, Claude Schneegans [EMAIL PROTECTED] wrote: I think this issue has been discussed a few days before. It is a bug in CF (not in blue Dragon). The current row of a first level loop is

Re: UTF-8 text retrieved in query doesn't display properly

2006-03-03 Thread Paul Hastings
Michael Kaplan wrote: Got your email address from the Adobe forum...I'll send presently. i would have thought this email list would have worked too ;-) ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234063

RE: CF MX 7 and DB2 connection timeout

2006-03-03 Thread Jim Davis
-Original Message- From: Smith, Daron [PA] [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 9:46 AM To: CF-Talk Subject: CF MX 7 and DB2 connection timeout We recently moved our web site to a CF MX7 box. Ever since we occasionally get the following error Error Executing

Re: CSS UL IE help

2006-03-03 Thread Ray Champagne
Thanks CSSandy (or is it CSSandra?). :) This is uber-helpful. Just dump this in the top of all my css definition files when I'm developing new sites, and I'm good to go? Kind of a best practice? Are you doing any CSS seminars at CFUnited? Sandra Clark wrote: Each browser has its own style

RE: CSS UL IE help

2006-03-03 Thread Sandra Clark
Yes, put it in all your global css files towards the top. Anything that redefines it has to defined below it (in either the same file or another file that is called after it). I'm doing two CSS talks at CFUNITED one on floats and one on positioning. I'm also in talks to possibly do an open class

RE: GMail manipulation remotely

2006-03-03 Thread Baz
Thanks gang, As an extension to the question, can I pop a gmail account, get a list of file attachments, and then provide a link to download the attachemts without them ever having gone through my webserver? (if not POP some other way) So for example, you go to a site that shows the contents of

Re: CF7 100% CPU usage

2006-03-03 Thread nerd
Do you have any CFC's which u are instantiating inside session scope ? Nope. Thanks for trying to help, though! Anybody else? ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234068 Archives:

Anyone used XMLValidate() to validate XHTML?

2006-03-03 Thread Jon Gunnip
We are storing some HTML in our database and I want to ensure it is valid to insert it into a div in an XHTML document. 1) I've tried using XMLValidate(XHTMLText, urlToXHTMLDTD), but I get an error: 'recursive entity reference %HTMLlat1. (Reference path: %HTMLlat1 - %HTMLlat1 - %HTMLlat1)'. 2)

Re: Secure cfftp? SSH, SSL, TLS?

2006-03-03 Thread Jochem van Dieten
Russ wrote: Well I've never tried it myself, but I don't see why you can't have stunnel run on 2 different ports? Because one tunnel originates on each side? Because the port numbers are dynamic? Jochem ~| Message:

Re: GMail manipulation remotely

2006-03-03 Thread Jochem van Dieten
Baz wrote: As an extension to the question, can I pop a gmail account, get a list of file attachments, and then provide a link to download the attachemts without them ever having gone through my webserver? (if not POP some other way) So for example, you go to a site that shows the contents

RE: CF7 100% CPU usage

2006-03-03 Thread Dan G. Switzer, II
Just installed CF7 on our Win2003 server a couple of days ago. Since then we've been having trouble with our site running slowly and certain large threads on our (in-house developed) discussion board timing out completely. I checked the CPU usage and, after a little experimentation, realized

RE: GMail manipulation remotely

2006-03-03 Thread Baz
How would I login a user? -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 1:10 PM To: CF-Talk Subject: Re: GMail manipulation remotely Baz wrote: As an extension to the question, can I pop a gmail account, get a list of file

Re: CF MX 7 and DB2 connection timeout

2006-03-03 Thread dsmith
-Original Message- I'm a little confused why'd you'd be using the ODBC connection for this - isn't there a Native (type 4) driver available from IBM? The same driver available for WebSphere should work just fine with CF and you'll get a lot more support from IBM. There is a generic

Re: GMail manipulation remotely

2006-03-03 Thread Jochem van Dieten
Baz wrote: How would I login a user? XMLHttpRequest() Jochem ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234075 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription:

test ingore

2006-03-03 Thread Christopher . Lomvardias
please ignore ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234076 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe:

Test Ignore 2

2006-03-03 Thread Lomvardias Christopher
Ignore ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234077 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe:

Re: CF MX 7 and DB2 connection timeout

2006-03-03 Thread george . earl
We recently moved our web site to a CF MX7 box. Ever since we occasionally get the following error Error Executing Database Query.[Macromedia][SequeLink JDBC Driver][ODBC Socket][IBM][iSeries Access ODBC Driver]Communication link failure. comm rc=10054 - CWBCO1047 - The iSeries server application

How to force download of linked text file on Mac

2006-03-03 Thread Jerry Johnson
Using cfcontent, how can I craft a page that returns a text file to a Macintosh that forces a download, is saved as a txt file (.txt), contains extended ascii characters. Or where can I look for answers? Thanks Jerry Johnson ~|

Re: anyone used cfx_zip??

2006-03-03 Thread Gareth
Never used CFX_Zip (I use zipfilenew http://www.cflib.org/udf.cfm?ID=744) but have you tried putting the paths in quotes? I.e.: 'c:\dir1,c:\dir2' - Original Message - From: Srinivasa Teja Palla [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Friday, March 03, 2006 1:02 PM

Re: test ingore

2006-03-03 Thread Claude Schneegans
please ignore Ignore what? ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234081 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4

RE: test ingore

2006-03-03 Thread Brad Wood
Claude Shenanigans just had to speak up... -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 2:10 PM To: CF-Talk Subject: Re: test ingore please ignore Ignore what?

RE: CF MX 7 and DB2 connection timeout

2006-03-03 Thread Dawson, Michael
If one exists, you should use a JDBC driver for the DB2 database. We have a JDBC driver for our AS400/DB2 and it has worked w/o any problems. Also, who is to say that CF is at fault? I have seen the AS400/DB2 connection go down for many reasons, and they were never the fault of CF. Chances are

using WHERE with ValueList?

2006-03-03 Thread Roberto Perez
Hi all, I have a list of regions a user has access to (not all users have access to all regions), so that users can choose what region to display, something like this: region 1 region 2 and depending on their choice, users are taken to a page like this one: region 1 client |

RE: using WHERE with ValueList?

2006-03-03 Thread Dave Sueltenfuss
Try the following SELECT c.clientID, c.regionID, c.clientName, c.clientSSN, c.clientCity, FROM clients_tb c WHERE c.regionID IN (#valuelist(getRegions.regionID)# ) -Original Message- From:Roberto Perez [EMAIL PROTECTED] To: CF-Talk ; Sent: Mar 3, 2006 02:21:35 PM Subject:

Re: using WHERE with ValueList?

2006-03-03 Thread Bryan Stevenson
CONTAINS is MS SQL Server (if full-text indexing is on the column(s) being accessedOracle. suspect you need to use IN instead of CONTAINS IN (cfqueryparam value=#valuelist(getRegions.regionID)## cfsqltype=cf_sql_numeric list=yes) HTH Cheers Bryan Stevenson B.Comm. VP Director of

Re: using WHERE with ValueList?

2006-03-03 Thread Charlie Hanlon
RobertoI would write the sql statement thus: SELECT c.clientID, c.regionID, c.clientName, c.clientSSN, c.clientCity FROM clients_tb c WHERE c.regionID IN (cfqueryparam value=#valuelist(getRegions.regionID)# list=yes cfsqltype=CF_SQL_INTEGER) hth Charlie Hanlon - Original Message -

RE: using WHERE with ValueList?

2006-03-03 Thread Oleg Gunkin
Can anyone help me to find a function tha strips all html from a string except for the tags I specify. For example, I want to only allow a, p, h*, and img tags, and strip everything else. ~| Message:

Re: CSS UL IE help

2006-03-03 Thread Ray Champagne
While it would be up to my company whether or not to pay the duckets to do this, I'd like to be put on the list nonetheless. ray [at] cvwp [dot] [com] Thanks Sandy. Sandra Clark wrote: Yes, put it in all your global css files towards the top. Anything that redefines it has to defined below

Re: using WHERE with ValueList?

2006-03-03 Thread Roberto Perez
At 02:24 PM 3/3/2006, Bryan Stevenson wrote: CONTAINS is MS SQL Server (if full-text indexing is on the column(s) being accessedOracle. suspect you need to use IN instead of CONTAINS IN (cfqueryparam value=#valuelist(getRegions.regionID)## cfsqltype=cf_sql_numeric list=yes) Thanks for the

How will this impact Flash, Flex, etc.

2006-03-03 Thread Mark Leder
Just saw this on one of my advertising lists. It refers to Flash ads, but I suspect it could apply to any Flash deployed content (forms, grid displays, etc). Comments? = Now that Microsoft has shipped a new update with its Internet Explorer, multimedia content and the way it's

Strip HTML from string except for specified...

2006-03-03 Thread Andy Matthews
Have you looked over at CFLib.org? There's lots of those types of functions there. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Oleg Gunkin [mailto:[EMAIL PROTECTED] Sent:

Re: CF7 100% CPU usage

2006-03-03 Thread nerd
SeeFusion has a trace() method that you can invoke to dump messages to a SeeFusion Debug window. Neat. I'll check that out. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:234093 Archives:

StripHtml function (please, ignore my post with using WHERE with ValueList? topic, it was an accident

2006-03-03 Thread Oleg Gunkin
-- Oleg Gunkin Email: [EMAIL PROTECTED] Phone: (604) 666-9392 Emerging Technologies / Pacific Web Services Information Technology Services Public Works and Government Services Canada (Pacific) -Original Message- From: Oleg Gunkin Sent: Friday, March 03, 2006 11:27 To: CF-Talk Subject:

Re: using WHERE with ValueList?

2006-03-03 Thread Bryan Stevenson
yes it should be fine on access...but CONTAINS definately will not work ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

OT: Fatal windows crash

2006-03-03 Thread Michael Dinowitz
I'm getting a BSOD on my system everytime I boot it up. After about a minute it crashes. Sometimes it says that winlogon.exe has a problem, sometimes not. The BSOD message is: STOP: c21a {Fatal Systems Error} The windows Logon Process system process terminated unexpectedly with a status of

RE: Fatal windows crash

2006-03-03 Thread Che Vilnonis
Could be the hard drive going??? -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 2:55 PM To: CF-Talk Subject: OT: Fatal windows crash I'm getting a BSOD on my system everytime I boot it up. After about a minute it crashes. Sometimes it

Re: Fatal windows crash

2006-03-03 Thread Bryan Stevenson
did ya try safe mode yet? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

RE: CFMX flash remoting

2006-03-03 Thread Kevin Aebig
It's a tool that's included with the Flash Remoting Components. I couldn't find a separate download so I packed it as a projector and put it up at http://www.keslabs.com/stuff/netdebug/ncd.zip If NetDebugging is enabled within any movie being played on your machine, it shows all the calls,

RE: StripHtml function that allows some tags

2006-03-03 Thread Oleg Gunkin
Well, I looked at cflib.org and found stripHTML, which just strips all html, but I still need to allow some html :( Can anyone help me to find a function tha strips all html from a string except for the tags I specify. For example, I want to only allow a, p, h*, and img tags, and strip

RE: CF7 100% CPU usage

2006-03-03 Thread Brian Peddle
We had and still have a similar issue. We moved from a mixed CF 6/7 on windows 2000 to all cf 7 on windows 2003 and since the move performance has degraded. -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 1:42 PM To:

Re: OT: Fatal windows crash

2006-03-03 Thread Steve Milburn
Hard to tell what is happening with your machine, but unless that drive is part of an array, you can almost always take it out of that computer and put it in another computer as a secondary drive to copy your data off of it before you wipe it out and start over. Good luck Steve Michael

re: OT: Fatal windows crash

2006-03-03 Thread dave
Boy do I know this one well! I don't think there is to much good news for you Mike. What I started doing when this happened to me monthly was I used one of the live linux cd's that you can boot from to get back in and get my data back out. While you all say your windows doesn't crash and this

RE: Fatal windows crash

2006-03-03 Thread Jim Davis
-Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 2:55 PM To: CF-Talk Subject: OT: Fatal windows crash I'm getting a BSOD on my system everytime I boot it up. After about a minute it crashes. Sometimes it says that winlogon.exe has a

Conditional HTML headers?

2006-03-03 Thread Jim McAtee
Is there any way (in CF5) that I can conditionally generate an HTML header if it is not already defined by a CFHTMLHEAD tag? Is there a particular variable scope that contains this information that I might examine while generating the page? I'd like to add a default page title tag, plus

Re: Fatal windows crash

2006-03-03 Thread Bryan Stevenson
bummer...here we've created The Ultimate Boot Disk which was cobbled together I think from this site one of my biz partners made it). It's simply awesome when trying to sort out these sorts of nasty situations: http://www.ultimatebootcd.com/ HTH Cheers Bryan Stevenson B.Comm. VP Director

RE: Fatal windows crash

2006-03-03 Thread Jim Davis
-Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 3:08 PM To: CF-Talk Subject: Re: Fatal windows crash Yep and it doesn't crash (which discounts the hardware question). Someone Actually it doesn't at all - SafeMode definitely uses a

RE: CSS UL IE help

2006-03-03 Thread Kevin Graeme
You can zero out everything with: * {margin: 0; padding: 0} Then if you go look at C:\Program Files\Mozilla Firefox\res\html.css you can see what the defaults for Firefox are. What I'm doing right now is creating an external stylesheet called crossBrowserSizes.css where I dump those defaults,

Re: How will this impact Flash, Flex, etc.

2006-03-03 Thread Bryan Stevenson
I thought Eolas lost? or took a settlement? Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

RE: Fatal windows crash

2006-03-03 Thread Munson, Jacob
If it's WinXP, you could try a system restore. Often times I see an event in the restore list that I wasn't aware of, or forgot about, and that could be your culprit. Also, you could try removing services and/or startup items (in msconfig). Regardless of what others say, software does sometimes

SOT: Two functions in OnSubmit

2006-03-03 Thread Orlini, Robert
Is there any way to include two return functions in an OnSubmit? Here is what I want to do: form action=getinventory4.cfm method=POST onSubmit=return confirm('Are you sure?'); return checkform(this); Of course it generates an error. But what will work here. Thx in advance Robert O. HWW --

Re: Fatal windows crash

2006-03-03 Thread Steve Milburn
Munson, Jacob wrote: Regardless of what others say, software does sometimes cause a BSOD. Yes it does, often. And since the machine runs ok in safe mode, it is most likely a driver issue. I would go into the device manager and disable any network devices, video cards, sound cards, etc. Then

RE: SOT: Two functions in OnSubmit

2006-03-03 Thread Dave Sueltenfuss
I'd suggest building 1 function that references both functions -Original Message- From:Orlini, Robert [EMAIL PROTECTED] To: CF-Talk ; Sent: Mar 3, 2006 03:32:09 PM Subject: SOT: Two functions in OnSubmit Is there any way to include two return functions in an OnSubmit?

RE: StripHtml function that allows some tags

2006-03-03 Thread Munson, Jacob
Here's a process I've used in the past: 1. Replace the good tags with a unique identifier. Example, a* with ~a*~, and /a with ~/a~ 2. Remove all bad tags 3. Replace unique identifiers from step one with original tags You will have to learn some regular expression magic to do this (search

Re: SOT: Two functions in OnSubmit

2006-03-03 Thread Ben Doom
Inset your confirm() into your checkform() function? Write a wrapper for both? --Ben Orlini, Robert wrote: Is there any way to include two return functions in an OnSubmit? Here is what I want to do: form action=getinventory4.cfm method=POST onSubmit=return confirm('Are you sure?');

OT: js help

2006-03-03 Thread Tim Do
Hi, I'm trying to passing values from a popup back to the parent window. In the popup window, I have a select box (multiple). I want to pass the selected items back to the parent window but it is only passing back the first value select not all the values selected in the drop down. Here is what

RE: Fatal windows crash

2006-03-03 Thread Baz
Another thing to look into is the motherboard. Motherboards are notorious for giving inconsistent errors. It might work once but not again in the same situation. If you're out of options, try switching it and see what happens. Baz -Original Message- From: Munson, Jacob [mailto:[EMAIL

Re: How to force download of linked text file on Mac

2006-03-03 Thread Jochem van Dieten
Jerry Johnson wrote: Using cfcontent, how can I craft a page that returns a text file to a Macintosh that forces a download, is saved as a txt file (.txt), contains extended ascii characters. cfheader name=Content-Disposition value=attachment; filename=fname.txt cfcontent

Re: SOT: Two functions in OnSubmit

2006-03-03 Thread Roberto Perez
At 03:30 PM 3/3/2006, Orlini, Robert wrote: Here is what I want to do: form action=getinventory4.cfm method=POST onSubmit=return confirm('Are you sure?'); return checkform(this); Of course it generates an error. But what will work here. Try this: form action=getinventory4.cfm method=POST

RE: StripHtml function that allows some tags

2006-03-03 Thread Oleg Gunkin
I know how to do it, but I was hoping that it was done before me, and I can reuse that code. -- Oleg Gunkin Email: [EMAIL PROTECTED] Phone: (604) 666-9392 Emerging Technologies / Pacific Web Services Information Technology Services Public Works and Government Services Canada (Pacific)

Re: using WHERE with ValueList?

2006-03-03 Thread Roberto Perez
At 02:24 PM 3/3/2006, Bryan Stevenson wrote: suspect you need to use IN instead of CONTAINS v.regionID IN (cfqueryparam value=#valuelist(getRegions.regionID)## cfsqltype=cf_sql_numeric list=yes) Thanks, I stripped the extra numeral sign and it worked perfectly. Any known performance issues

RE: SOT: Two functions in OnSubmit

2006-03-03 Thread Orlini, Robert
Thanks Roberto and all for your input. -Original Message- From: Roberto Perez [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 3:47 PM To: CF-Talk Subject: Re: SOT: Two functions in OnSubmit At 03:30 PM 3/3/2006, Orlini, Robert wrote: Here is what I want to do: form

Re: using WHERE with ValueList?

2006-03-03 Thread Charlie Hanlon
Roberto, Yes, the value you use for the attribute 'cfsqltype' is directly related to the datatype of the field 'regionID'. I am not the expert regarding the performance issue, but I would assume you will take a hit if the list of IDs grows too large. Charlie Hanlon - Original

RE: Secure cfftp? SSH, SSL, TLS?

2006-03-03 Thread Russ
The port numbers aren't fully dynamic. You can lock those down to a range... -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, March 03, 2006 1:08 PM To: CF-Talk Subject: Re: Secure cfftp? SSH, SSL, TLS? Russ wrote: Well I've never tried it

Re: js help

2006-03-03 Thread Josh Nathanson
If you do selObj.value instead of selObj.options[selIndex].value, it might send back a comma-delimited list of all the values. Give it a try, not absolutely sure if that will work though. -- Josh - Original Message - From: Tim Do [EMAIL PROTECTED] To: CF-Talk

Re: using WHERE with ValueList?

2006-03-03 Thread Bryan Stevenson
Sorry about the extra #..my bad ;-) 50 items is finethe only limitation I can recall is Oracle and it's 1000 list elements. yes if they are alpha-numeric you'd use cf_sql_varchar instead of cf_sql_numeric Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge

Re: OT: Fatal windows crash

2006-03-03 Thread Donnie Bachan
Mike, Try ERD Commander from Winternals http://www.winternals.com/Products/AdministratorsPak/Default.aspx#erdcommander2005 This allows you to boot into the dead system and copy data off of it, I have been very successful with it. HTH. Best Regards, -- Donnie Bachan Website:

  1   2   >