RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
Dave, I don't have the time right now to read the link you provided, but surely I will later. I know on windows I can use ActiveX (I think - it automatically downloads a plug-in for the control) without any trouble. ....... Ben Nadel www.bennadel.com -Original Me

RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
Tom, I was not aware of that. Like I said, I am not very familiar with ActiveX stuff. But isn't flash ActiveX? That seems to work on all browsers (that I have tried). Sorry for any confusion. ....... Ben Nadel www.bennadel.com -Original Message- From: Tom Chiv

RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
... Ben Nadel www.bennadel.com -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 9:55 AM To: CF-Talk Subject: Re: activedit and FireFox? On Friday 26 May 2006 14:28, Ben Nadel wrote: > What is wrong with ActiveX? Have you seen the hassl

RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
then again, I would want it very limited). ...... Ben Nadel www.bennadel.com -Original Message- From: Peterson, Chris [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 9:51 AM To: CF-Talk Subject: RE: activedit and FireFox? Oh let me count the things wrong A

RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
What is wrong with ActiveX? ... Ben Nadel www.bennadel.com -Original Message- From: Tom Chiverton [mailto:[EMAIL PROTECTED] Sent: Friday, May 26, 2006 9:24 AM To: CF-Talk Subject: Re: activedit and FireFox? On Friday 26 May 2006 14:08, Ben Nadel wrote: > The o

RE: activedit and FireFox?

2006-05-26 Thread Ben Nadel
, image and attachment libraries. I am currently working on a ColdFusion solutions for it, soon to be available, but you can use asp for now. The only tradeoff is that it is not free like FCK editor, but the price is completely justified. My 2 cents ... Ben Nadel

RE: cfinsert and pasted crap in a textarea

2006-05-25 Thread Ben Nadel
AL.Key ], Chr(8221), Chr(34), "ALL"); ARGUMENTS.Form[ LOCAL.Key ] = Replace(ARGUMENTS.Form[ LOCAL.Key ], Chr(8211), "-", "ALL"); ARGUMENTS.Form[ LOCAL.Key ] = Replace(ARGUMENTS.Form[ LOCAL.Key ], Chr(8212), "-", "ALL"); } -------

RE: Recursive Custom Tag

2006-05-25 Thread Ben Nadel
Ian, Try ListValueCount() and ListValueCountNoCase() ... Ben Nadel www.bennadel.com -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Thursday, May 25, 2006 4:45 PM To: CF-Talk Subject: RE: Recursive Custom Tag Check out getBaseTagList(). Just

RE: Recursive Custom Tag

2006-05-25 Thread Ben Nadel
Barney, I didn't even know that method existed... Man, I really need to just go through a list of the built in functions to see what I don't know about. Thanks! ....... Ben Nadel www.bennadel.com -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTEC

RE: Recursive Custom Tag

2006-05-25 Thread Ben Nadel
Trying playing around with the GetPageContext() return object. Dump it out... There might be some sort of access methods to tag counts... But I don't know offhand. ....... Ben Nadel www.bennadel.com -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED]

RE: Rid Evaluate

2006-05-25 Thread Ben Nadel
Ooops, don't need the second set of []... That's just for value references, I didn't realize the ValueList was being called (my bad). ....... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 2

RE: Rid Evaluate

2006-05-25 Thread Ben Nadel
Cutter, Queries can be reference like structures: listfindnocase( valuelist( alreadyMatched["alias#arguments.field#"][ alreadyMatched.CurrentRow ] ), I ) ....... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 21

RE: Better way to describe a menu.

2006-05-24 Thread Ben Nadel
anything like that as they will throw errors when parsing. When in doubt, use XmlFormat() method to return a properly escaped string. However, if the document is static, that would be overkill, just escape whatever breaks: Ex. & == > & ....... Ben Nadel www.be

RE: Better way to describe a menu.

2006-05-24 Thread Ben Nadel
Yeah, someone at my office did it completely with nested UL list and HOVER states for the LI's that had sub-menus (sub-Uls). It was pretty cool. Not exactly 100% cross-browser. More FireFox friendly, but very cool. I wish I had a link to send you. ....... Ben Nadel

RE: Better way to describe a menu.

2006-05-24 Thread Ben Nadel
link http://www.google.com ... Ben Nadel www.bennadel.com -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 24, 2006 1:21 PM To: CF-Talk Subject: Better way to describe a menu. I'm trying to create dynamic

RE: Solved: RE: Any reason why a file field can be submitted back to the page it's on?

2006-05-24 Thread Ben Nadel
Rick, No worries on the name. The reason the URL string appears is because with GET the form attempts to post the data back to the page via the Query String, so its putting all the form fields into the URL of the form submission. ... Ben Nadel Web Developer Nylon

RE: Any reason why a file field can be submitted back to the page it's on?

2006-05-24 Thread Ben Nadel
Is your form GET 'ing?? It should be POST for method. ....... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com "You know, like nunchuck skills, bowhunting skills, computer hack

RE: Upload txt file

2006-05-23 Thread Ben Nadel
t not "seem" as secure as denying a mime type, but it fairly safe in my experience. Remember that the computer attempts to execute a file based on its extension. You can't change an EXE file to a JPG and still "launch" it. It will try to run as a JPG and break. ...

RE: QofQ error on function-generated query

2006-05-18 Thread Ben Nadel
Also, I am not sure if its just the characters not coming through, but ( ' ) in the following: SELECT `date`,`time`,client_ip,username,id,filename,bytes_sent,time_taken Should be: SELECT [date],[time],client_ip,username,id,filename,bytes_sent,time_taken ....... Ben Nadel

RE: QofQ error on function-generated query

2006-05-18 Thread Ben Nadel
Shot in the dark, don't use double quotes: WHERE type = "asset" Should be WHERE type = 'asset' See if that makes a difference. ....... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fa

RE: Xpath Help

2006-05-17 Thread Ben Nadel
Freakin' sweeet! Thanks Mike. This Xpath stuff looks pretty cool. I need to get learning this stuff. Especially when we move SQL 2005 in house. ....... Ben Nadel www.bennadel.com -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Wednesday

RE: embed image in cfmail

2006-05-17 Thread Ben Nadel
f the specific I regret. It was done with some tag called CF_advancedmail I think, if that helps. But, nonetheless, it can be done, I have done it. ....... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnolog

RE: Xpath Help

2006-05-17 Thread Ben Nadel
gs about my way considering the small amount of data? ....... Ben Nadel www.bennadel.com -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 17, 2006 5:27 PM To: CF-Talk Subject: RE: Xpath Help Ahhh. This is what I was originally going fo

Xpath Help

2006-05-17 Thread Ben Nadel
oap="http://schemas.xmlsoap.org/soap/envelope/";> http://xstandard.com/2004/web-services";> en xxx snippets

RE: What do you use to capture a video frame?

2006-05-17 Thread Ben Nadel
data on the screen as the main hardware is bypassed. Only luck I had is what someone else suggested, open it up in a video program and use their built-in screen capture functionality. ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001

RE: recursive includes

2006-05-17 Thread Ben Nadel
out the variables. THIS IS UNTESTED. Not sure if you can even include more than one application tag per file. ... Ben Nadel www.bennadel.com -Original Message- From: Turetsky, Seth [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 17, 2006 9:29 AM To: CF-Talk Subject: RE

RE: recursive includes

2006-05-17 Thread Ben Nadel
m which would take a file path in the URL and would include the application.cfm file and dump out the application scope. This way, each CFHTTP call, while slower than including, would have it's own memory space. ... Ben Nadel www.bennadel.com -Original Message---

RE: OOD/Design Patterns and ColdFusion.

2006-05-16 Thread Ben Nadel
This link was also a very good read. http://www.theserverside.com/news/thread.tss?thread_id=38047 I didn't exactly feel better after reading it (about my OOP skills), but it was great to see the two different sides to theory. ....... Ben Nadel Web Developer Nylon Technolog

RE: OOD/Design Patterns and ColdFusion.

2006-05-16 Thread Ben Nadel
Andy, The book has java code examples, but easy to translate over to CF. And the ideas themselves are pretty interesting, worth a read. ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax

RE: OOD/Design Patterns and ColdFusion.

2006-05-16 Thread Ben Nadel
Yeah, great book! Really does a good job of walking you through the complicated world of Design Patters. ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com "You know, like nun

RE: OOD/Design Patterns and ColdFusion.

2006-05-16 Thread Ben Nadel
ether book. ....... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com "You know, like nunchuck skills, bowhunting skills, computer hacking skills... Girls only want boyfriends who have gr

Posting going on?

2006-05-15 Thread Ben Nadel
Am I not receiving any emails or is no one posting today? I am testing to see if I get this one. ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com "You know, like nunchuck s

RE: table of unlimited jobs and users?

2006-05-12 Thread Ben Nadel
That is a tough nut to crack... I don't have a good solution... My solution would involve many for loops and perhaps many query of queries... Tough problem... :( ....... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691

RE: Reversal of format

2006-05-12 Thread Ben Nadel
You could use replace list: strData = ReplaceList( strXmlData, "<,>,'", "<,>,'" ); I don't know what all the characters are, but those are the main ones (IMO) ... Ben Nadel Web Developer Nylon Technology 350 7th

RE: table of unlimited jobs and users?

2006-05-12 Thread Ben Nadel
Kiley, The problem is a bit strange... Can you explain it in english and maybe we can get you a better solution. How are you decided which data to show?? For example: I want to show the 30 most recent jobs for the 10 most active users. ... Ben Nadel www.bennadel.com

RE: Coldfusion validating a standard form?

2006-05-12 Thread Ben Nadel
Can you post the form code? CF automatically tries to validate some form variables (I think) that end in things like "_date". ....... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontech

RE: Hype 2.0

2006-05-12 Thread Ben Nadel
se it well. ....... Ben Nadel www.bennadel.com -Original Message- From: Alan Rother [mailto:[EMAIL PROTECTED] Sent: Friday, May 12, 2006 4:25 PM To: CF-Talk Subject: Re: Hype 2.0 I think the key is, web 2.0 really refers to buildin Apps, not websites. If you are building a website, then

RE: Hype 2.0

2006-05-12 Thread Ben Nadel
e in a new window, so I don't lose the current page... Not available in flash type pages. Basically, I love using my keyboard... Hate using the mouse, hurts my wrist... Anything that forces me to go to the mouse it a compromise for me, that is rarely worth it. My two cents. ......

RE: Okay, here's *another* error message I've never seen...

2006-05-12 Thread Ben Nadel
leted = 0, is_active = 1, etc). select * from users1 where username = (select TOP 1 name from users2 where firstname = 'Jeff'') ....... Ben Nadel www.bennadel.com -Original Message- From: Jeff Small [mailto:[EMAIL PROTECTED] Sent: Friday, May 12, 2006

RE: Query of Queries

2006-05-12 Thread Ben Nadel
hen it's a casting issue?? ....... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com "You know, like nunchuck skills, bowhunting skills, computer hacking skills... Girls only want

RE: Query of Queries

2006-05-12 Thread Ben Nadel
Do any parts of the query work? Meaning, If you run with just the first SUM directive does it work? Does it work if you do not do the "*" in the second SUM? Let's see if we can narrow it down to exactly what is breaking? ....... Ben Nadel Web Developer Nylon Tec

RE: Query of Queries

2006-05-12 Thread Ben Nadel
ng, works great. Seems like a bug to me. ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com "You know, like nunchuck skills, bowhunting skills, computer hacking skills... Girls

RE: Query of Queries

2006-05-12 Thread Ben Nadel
I have never seen this specifically, but I have gotten similar errors when I try to define a query with QueryNew() sending in data types... Are you using QueryNew() to define any query that you are queryying? ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor

RE: DAO CFC and NULL values

2006-05-11 Thread Ben Nadel
the code a bit? ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com "You know, like nunchuck skills, bowhunting skills, computer hacking skills... Girls only want boyfriends who

RE: DAO CFC and NULL values

2006-05-11 Thread Ben Nadel
I believe that CF will treat SQL nulls as empty strings. ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com "You know, like nunchuck skills, bowhunting skills, computer ha

RE: Anyone done this before?

2006-05-11 Thread Ben Nadel
ta after 3 weeks. Certainly NOT the best solution, but the only one I have tried to date. ....... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com "You know, like nunchuck skills, bo

RE: Regex Dash

2006-05-11 Thread Ben Nadel
ot; in Javascript. It can be crazy! Its nice that CF doesn't treat "\" as a special string character cause it makes reading much much easier. ... Ben Nadel www.bennadel.com -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Thursday,

RE: Regex Dash

2006-05-11 Thread Ben Nadel
Rob, I think you are correct. Putting a "-" in will work also (at least in the Regex Coach program). However, "\-" also works, and it makes me feel more comfortable to know that it is being escaped... But yes, both will work. ....... Ben Nadel www.bennade

RE: Anyone done this before?

2006-05-11 Thread Ben Nadel
By auditing, do you mean tracking changes? If so, how long do you need to keep the old data for? ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com "You know, like nunchuck s

RE: Regex Dash

2006-05-11 Thread Ben Nadel
Yeah, since you are not using "\-" in the [] matching group, it should be replaced out. If you want to keep the "-", add "\-" to the end of the group: REReplaceNoCase(acc_number,"[^a-zA-Z[:space:]'0-9_&:,!()/\-]","","ALL"

RE: One more TIME conversion

2006-05-11 Thread Ben Nadel
Cause I love me some REgExp :) #TimeFormat( REReplace( "154100", "([0-9]{2})([0-9]{2})([0-9]{2})", "\1:\2:\3", "ONE" ), "h:mm TT" )# ... Ben Nadel www.bennadel.com -Original Message- From: Paul Giesenhag

RE: Losing Application Variables Randomly...

2006-05-10 Thread Ben Nadel
at I can't narrow it down. ....... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com "You know, like nunchuck skills, bowhunting skills, computer hacking skills... Girls only want boyfr

RE: Converting a Date

2006-05-10 Thread Ben Nadel
My bad, syntax error: strDate = REReplace( "20060508", "([0-9]{4})([0-9]{2})([0-9]{2})", "\1/\2/\3", "ONE" ); This one works (I tested :)) ... Ben Nadel www.bennadel.com -Original Message- From: Paul Giesenhagen [mailto:[E

RE: Converting a Date

2006-05-10 Thread Ben Nadel
Try this strDate = REReplae( "20060508", "([0-9]{4})([0-9]{2})([0-9]{2})", "\1/\2\/3", "ONE" ) Converts to 2006/05/08 ... Ben Nadel www.bennadel.com -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED] Sent

RE: Cferror and the site wide handler

2006-05-10 Thread Ben Nadel
Ahhh, gotcha... That would explain my confusion... I have never used the error handler in the Admin. Does it have any advantage to the CFError tag defined on a per-application level? ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001

RE: Cferror and the site wide handler

2006-05-10 Thread Ben Nadel
I am a bit confused as to the difference? When I use CFERror, I am using it as a site-wide handler? Then, I can use CFTRY/CFCATCH on individual pages. Are you talking about 404 handlers?? ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY

RE: using bitand

2006-05-10 Thread Ben Nadel
Sorry, The line that read: 1010 BITAND LOCAL.Flags.CASE_INSENSITIVE ==> 00010 ==> byte ==> ONE ==> TRUE. Should be: 1010 BITAND LOCAL.Flags.CASE_INSENSITIVE ==> 00010 ==> byte ==> TWO ==> TRUE. ....... Ben Nadel Web Developer

RE: using bitand

2006-05-10 Thread Ben Nadel
RUE. Does that help at all? Or are you more confused :) ... Ben Nadel www.bennadel.com -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 10, 2006 1:39 PM To: CF-Talk Subject: using bitand can someone please explain

RE: cgi.scriptname and url parameters

2006-05-09 Thread Ben Nadel
Andy, I see what you are saying. Agreed that it will give you the file name... I just have categories in my mind for server-side and client-side... But, yeah, it will return the file name either way. ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New

RE: cgi.scriptname and url parameters

2006-05-09 Thread Ben Nadel
tTemplatePath()). ........... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com "You know, like nunchuck skills, bowhunting skills, computer hacking skills... Girls only want boyfriends who

RE: cgi.scriptname and url parameters

2006-05-09 Thread Ben Nadel
ble in the script name. Please post a sample of the script name that is being carried over. -ben ... Ben Nadel Web Developer Nylon Technology 350 7th Avenue Floor 10 New York, NY 10001 212.691.1134 212.691.3477 fax www.nylontechnology.com "You know, like nunchuck

RE: Test object type

2006-05-08 Thread Ben Nadel
As far as I know, CF doesn't have a built in "instanceOf" operator or method. The way to get around this might be to have a public property for objects Ex.: SESSION.CurrentUser.InstanceOf() Which would return, as a string, something like "manager" or "worker".

RE: supression of / and/or \

2006-05-08 Thread Ben Nadel
What kinds of problems are you having? Have you tried just replacing out the character? ... Ben Nadel www.bennadel.com -Original Message- From: Uwe Degenhardt [mailto:[EMAIL PROTECTED] Sent: Monday, May 08, 2006 11:04 AM To: CF-Talk Subject: supression of / and/or

RE: what's the snippet to get the system path to "this" directory?

2006-05-05 Thread Ben Nadel
ExpandPath("./") OR ....... Ben Nadel www.bennadel.com -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, May 05, 2006 4:32 PM To: CF-Talk Subject: what's the snippet to get the system path to "this" direct

RE: Coldfusion with Godaddy

2006-05-05 Thread Ben Nadel
I have not used it, but I think I read that they do not allow CreateObject() method... That alone is a deterent for me... But for simple header/footer include types of sites, its probably nice and cheap. ... Ben Nadel www.bennadel.com -Original Message- From: Jason

ASP to ColdFusion Soap

2006-05-05 Thread Ben Nadel
r. Any suggestions? I am very very very new to SOAP, so be gentle. ....... Ben Nadel www.bennadel.com ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:239598 Archives: http://www.houseoffusion.com/cf

RE: query performance help

2006-05-04 Thread Ben Nadel
rry about a dangling AND. But again, I know nothing about Oracle.... ... Ben Nadel www.bennadel.com -Original Message- From: Martin Thorpe [mailto:[EMAIL PROTECTED] Sent: Thursday, May 04, 2006 12:26 PM To: CF-Talk Subject: query performance help Hello. I am looking

RE: FCKeditor help - strip out script tags...

2006-05-04 Thread Ben Nadel
as far as stripping, it might look like this: strContent = objInput.value; strContent = strContent.replace( new RegExp("]*>((?!]*>", "gim"), " " ); Now, the strContent javascript variable should have no script tags. ... Ben Nadel ww

RE: I got Advanced !!!

2006-05-03 Thread Ben Nadel
Congratulations Andy! CF rocks! ... Ben Nadel www.bennadel.com -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 03, 2006 2:12 PM To: CF-Talk Subject: I got Advanced !!! So I just took the test and I got Advanced developer status

RE: CFMX 7.01 and Windows XP sp 2 issue

2006-05-03 Thread Ben Nadel
. ... Ben Nadel www.bennadel.com -Original Message- From: Victor Moore [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 03, 2006 11:33 AM To: CF-Talk Subject: Re: CFMX 7.01 and Windows XP sp 2 issue We have not yet implemented the Application.cfc functionality Thx On

RE: CFMX 7.01 and Windows XP sp 2 issue

2006-05-03 Thread Ben Nadel
. ... Ben Nadel www.bennadel.com -Original Message- From: Victor Moore [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 03, 2006 10:55 AM To: CF-Talk Subject: Re: CFMX 7.01 and Windows XP sp 2 issue Yes, I can connect to other sites using IE (including to this application but on

RE: CFMX 7.01 and Windows XP sp 2 issue

2006-05-03 Thread Ben Nadel
can you use that IE browser to login into things like Gmail and Hotmail. If not, then maybe cookies are not holding for any site, and you have a cookie setting issue. ....... Ben Nadel www.bennadel.com -Original Message- From: Victor Moore [mailto:[EMAIL PROTECTED] Sent: Wedn

RE: CFMX 7.01 and Windows XP sp 2 issue

2006-05-03 Thread Ben Nadel
and can be fixed by adding the site as a trusted site in the IE security tab or options. 3. Cookies have been disabled on the browser. ....... Ben Nadel www.bennadel.com -Original Message- From: Victor Moore [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 02, 2006 8:06 PM T

RE: Taking the CF exam tomorrow...

2006-05-02 Thread Ben Nadel
Andy, Good luck.. Let us know what you think of the test. I have never taken it an would be interested in knowing more. ... Ben Nadel www.bennadel.com -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 02, 2006 10:45 AM To: CF-Talk

RE: Confirm email

2006-05-02 Thread Ben Nadel
Give that a go, see if that works. Additionally, you could pass in the form object to the Email validation function if it is available to what ever the calling code of the emailCheck() method. ... Ben Nadel www.bennadel.com -Original Message- From: Orlini, Robert [mai

RE: email regex?

2006-05-01 Thread Ben Nadel
I haven't really gotten into that yet. My Email validator is pre MX7... But I gotta start using the IsValid() methods. ....... Ben Nadel www.bennadel.com -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Monday, May 01, 2006 5:14 PM To: CF-Talk Su

RE: email regex?

2006-05-01 Thread Ben Nadel
Oops, The one I sent was Sever side, but could be changed for client-side... ... Ben Nadel www.bennadel.com -Original Message- From: Crow T. Robot [mailto:[EMAIL PROTECTED] Sent: Monday, May 01, 2006 4:32 PM To: CF-Talk Subject: email regex? What's every

RE: email regex?

2006-05-01 Thread Ben Nadel
// This string is an email address. return(1); } else { // This string does not match a valid email address. return(0); } ... Ben Nadel www.bennadel.com -Original Message- From: Crow T. Robot [mailto:[

RE: More of a JS Question/Forms

2006-05-01 Thread Ben Nadel
s list. A slightly better solution might be to loop over the form scope via a collection loop. ....... Ben Nadel www.bennadel.com -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Monday, May 01, 2006 9:35 AM To: CF-Talk Subject: RE: More of a JS Question/

RE: Double Quotes and other crap insert problem - cfqueryparam?

2006-04-28 Thread Ben Nadel
Is the database value getting cut off? Or does it appear to be cut off on the outputted page. Try view the source and makesure the values just aren't part of the source. ....... Ben Nadel www.bennadel.com -Original Message- From: Les Mizzell [mailto:[EMAIL PROT

CFSheduled Task Running without definition

2006-04-28 Thread Ben Nadel
when I was first running the page, I has a CFSchedule action="Update" and that got called a few times... Is it possible that doing this created several scheduled tasks under the same name... And then when deleting the task, it only deleted one of them? .......

RE: Double Quotes and other crap insert problem - cfqueryparam?

2006-04-28 Thread Ben Nadel
Yes, CFQueryParam is the best method (in my opinion). ... Ben Nadel www.bennadel.com -Original Message- From: Les Mizzell [mailto:[EMAIL PROTECTED] Sent: Friday, April 28, 2006 2:27 PM To: CF-Talk Subject: Double Quotes and other crap insert problem - cfqueryparam

RE: Counting record repeats

2006-04-28 Thread Ben Nadel
Ken, Your data might be different... Try: SELECT DISTINCT City FROM [table] Make sure the cities are only listed once. If they are NOT, then you probably have inconsistent data (ie. extra spaces or something). ... Ben Nadel www.bennadel.com -Original Message

RE: Counting record repeats

2006-04-28 Thread Ben Nadel
The ID count might be cuasing the problem. Try: SELECT City, ( COUNT(*) ) AS city_count FROM [table] GROUP BY City ... Ben Nadel www.bennadel.com -Original Message- From: Ken [mailto:[EMAIL PROTECTED] Sent: Friday, April 28, 2006 11:46 AM To: CF-Talk

RE: SQL join help

2006-04-27 Thread Ben Nadel
Twofoo, bar , blam, test, whats up 3. Title Three several, different , joined, titles, matched here ... Ben Nadel www.bennadel.com -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Thursday, April 27, 2006 2:59 PM To: CF-Talk Subject

RE: SQL join help

2006-04-27 Thread Ben Nadel
join table. If you could write out pseudo table code (like the tables you had below), what would you want the result set to look like?? ....... Ben Nadel www.bennadel.com -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Thursday, April 27, 2006 1:28

RE: Images and CFHTTP

2006-04-27 Thread Ben Nadel
Never mind... I just read something about "hotlinking" content. Sites tend to ban that... You learn something new every day. I will just use another project to help me learn stuff. ....... Ben Nadel www.bennadel.com -Original Message----- From: Ben Nadel [mai

Images and CFHTTP

2006-04-27 Thread Ben Nadel
the same as my browser. So, any thoughts? Also, the images that are not showing up are just standard JPG images (as built into my regexp) so I don't think any kind of content feed check is being done (but I could be wrong- I am not a server guy). Thanks! ....... Ben Nad

RE: cffile and files starting with '0'

2006-04-26 Thread Ben Nadel
See if you can do a CFFile Read on it... If that works, then perhaps it permissions on the folder that need more than READ. ... Ben Nadel www.bennadel.com -Original Message- From: Patrick Forsythe [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 26, 2006 5:07 PM To

RE: cffile and files starting with '0'

2006-04-26 Thread Ben Nadel
Call me crazy, but tryin doing a Before the CFFile... Make sure that that is YES. If not, then maybe something else is going wrong. ... Ben Nadel www.bennadel.com -Original Message- From: Patrick Forsythe [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 26

RE: coupons inc script - convert VB to CF UDF

2006-04-25 Thread Ben Nadel
Ooops, I see, its not a function, its an array :)... My bad. ... Ben Nadel www.bennadel.com -Original Message- From: Ben Nadel [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 3:12 PM To: CF-Talk Subject: RE: coupons inc script - convert VB to CF UDF Jim

RE: coupons inc script - convert VB to CF UDF

2006-04-25 Thread Ben Nadel
Jim, What does the "encodeModulo" method do? I can't find it in the example and I don't think that's a "generic" function. ... Ben Nadel www.bennadel.com -Original Message- From: Jim Priest [mailto:[EMAIL PROTECTED] Sent: Tuesday,

RE: Uploading multiple files - not necessarily CF

2006-04-25 Thread Ben Nadel
ff like ActiveX dealies. -ben ....... Ben Nadel www.bennadel.com -Original Message- From: Rob Wilkerson [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 2:19 PM To: CF-Talk Subject: Re: Uploading multiple files - not necessarily CF What about using DHTML? Take a lo

RE: Image resizing on the fly?

2006-04-25 Thread Ben Nadel
. ... Ben Nadel www.bennadel.com -Original Message- From: Burns, John D [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 12:19 PM To: CF-Talk Subject: Image resizing on the fly? I've been using ImageCR3 to do some image resizing and in the past I've used imagemagick and alag

RE: replacement for QoQ

2006-04-25 Thread Ben Nadel
to page as well? ....... Ben Nadel www.bennadel.com -Original Message- From: Aaron Rouse [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 11:39 AM To: CF-Talk Subject: Re: replacement for QoQ Or make a query of the UUIDs and then do a join onto that within the QoQ. I d

RE: replacement for QoQ

2006-04-25 Thread Ben Nadel
There may be no QueryDeleteRow() in CF, but I find that I can easily "make" that functionality by doing a QofQ on the query and just not select that row (ie... SELECT * FROM [query] where ID != [id]). ....... Ben Nadel www.bennadel.com -Original Message- Fro

RE: replacement for QoQ

2006-04-25 Thread Ben Nadel
... Ben Nadel www.bennadel.com Sanders: Lightspeed too slow? Helmet: Yes we'll have to go right to ludacris speed. -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 25, 2006 11:17 AM To: CF-Talk Subject: replacement for QoQ

RE: next and previous buttons for slideshow

2006-04-21 Thread Ben Nadel
more into account with a CFC. But, don't let me sound like I am dissuading you... I uses CFCs to create pagination. I love me a good CFC. ....... Ben Nadel www.bennadel.com -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, April 21, 2006

RE: next and previous buttons for slideshow

2006-04-21 Thread Ben Nadel
That's pretty condensed to me. You pretty much have to check the three cases... ....... Ben Nadel www.bennadel.com -Original Message- From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Friday, April 21, 2006 4:25 PM To: CF-Talk Subject: next and previous button

RE: URL issue

2006-04-21 Thread Ben Nadel
doing what you want???). ....... Ben Nadel www.bennadel.com -Original Message- From: Todd Rafferty [mailto:[EMAIL PROTECTED] Sent: Friday, April 21, 2006 10:49 AM To: CF-Talk Subject: URL issue Hello All, been awhile since I've posted. I have a very stupid question and I'd like to know why

<    4   5   6   7   8   9   10   11   >