RE: Macromedia.Com (The new site?)

2003-03-16 Thread Jim Davis
-Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Saturday, March 15, 2003 6:17 PM To: CF-Talk Subject: Re: Macromedia.Com (The new site?) From a UI standpoint it falls through on other levels. It seems like 24-25 items per page is a really small

RE: Re[2]: SQL first row of duplicates problem

2003-03-16 Thread Jeremy Halliwell
How about trying the MIN or MAX functions, which will give you the first or last ids eg SELECT u.Email, MIN(u.id) FROMuser u JOIN ( SELECT email FROM user GROUP BY Email HAVING Count(*) 1 ) As u1 ON u.Email = u1.Email

Re: flash forms

2003-03-16 Thread Mahmut Basaran
Hi Sean, Thank you for your helps. I think I had it working. This is what I did: Frame1 Action Script === function doSomeStuff() { _root.goToAndStop(2); } _root.stop(); Frame 2 Action Script === function doOtherStuff { _root.goToAndStop(3); } Thank you again, Mahmut

Re[4]: SQL first row of duplicates problem

2003-03-16 Thread cf-talk
Actually I wanted to update data based on the ID/email. I ended up with this script: cfquery name=DuplikateSuchen datasource=user dbtype=ODBC SELECT email,ID,suppressionzaehler FROM usertable /cfquery CFSET zaehler=1 CFSET liste_duplikate = CFLOOP QUERY=DuplikateSuchen STARTROW=1 CFSET

Access SQL question

2003-03-16 Thread SRetsky
Hi all: I have an Access 2000 database with an email field in it. I would like to have an SQL query that gives me a count of the ISPs in the email field. For example: take the following records: 1. [EMAIL PROTECTED] 2. [EMAIL PROTECTED] 3. [EMAIL PROTECTED] 4. [EMAIL PROTECTED] 5. [EMAIL

Re: flash forms

2003-03-16 Thread Mahmut Basaran
Also, is there a way to make html style textboxes (that has depth) in flash ? at the moment, all I can do is black borders around text areas. - Original Message - From: Sean A Corfield [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, March 15, 2003 10:24 PM Subject: Re:

Re: Access SQL question

2003-03-16 Thread Mahmut Basaran
This one works fine in sql server, but you need to test it with ms access. SELECT RIGHT(emailAddress, CHARINDEX('@', REVERSE(emailAddress))-1) AS [domainName] FROM dbo.customers GROUP BY RIGHT(emailAddress, CHARINDEX('@', REVERSE(emailAddress))-1) ORDER BY [domainName] - Original

Re: flash forms

2003-03-16 Thread Sean A Corfield
Ah, now you're into design and out of my realm... :) On Sunday, Mar 16, 2003, at 20:23 US/Pacific, Mahmut Basaran wrote: Also, is there a way to make html style textboxes (that has depth) in flash ? at the moment, all I can do is black borders around text areas.

Re: Macromedia.Com (The new site?)

2003-03-16 Thread Sean A Corfield
There's some great ideas in here Jim so I've forwarded your email to the business owner of the Exchanges for consideration in future versions. On Sunday, Mar 16, 2003, at 00:25 US/Pacific, Jim Davis wrote: -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent:

Re: flash forms

2003-03-16 Thread Mahmut Basaran
heh, you know it never ends... Always something that you have to think of. again, thank you for the trick. - Original Message - From: Sean A Corfield [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, March 16, 2003 10:42 AM Subject: Re: flash forms Ah, now you're into

RE: flash forms

2003-03-16 Thread Josh Trefethen
I don't believe that you can create them out of the box, but you can definitely use the drawing tools and create your own. That would be a good thing to make as a component or a symbol, as you will reuse it often. -- Josh Trefethen .:[ Exciteworks, Inc ]::[ http://exciteworks.com ]:.

attaching methods at runtime

2003-03-16 Thread jonhall
Is there a way to attach a method/function to cf variable, be it a string, array, structure, etc at runtime? I don't think this is possible now, but it just popped into my head, and before I headed to the wishform, I was wondering if it, or a creative workaround already existed. For example,

Re: attaching methods at runtime

2003-03-16 Thread Michael T. Tangorre
what are you trying to do? - Original Message - From: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, March 16, 2003 10:13 PM Subject: attaching methods at runtime Is there a way to attach a method/function to cf variable, be it a string, array, structure, etc at

Re: attaching methods at runtime

2003-03-16 Thread S . Isaac Dealey
I wouldn't expect it to be possible with the existing scope collections like form or with native data types like arrays. In most cases I wouldn't expect this to really be something people look for, largely because it's not necessary for any custom framework (form validation for instance) that I'm

Re: attaching methods at runtime

2003-03-16 Thread Sean A Corfield
On Sunday, Mar 16, 2003, at 19:41 US/Pacific, S. Isaac Dealey wrote: Now if you're talking about adding methods to CFC's at runtime, such as cfset myCFC.doSomething = myUDF that's a whole other story (and I suspect could be useful in some situations, just as it is sometimes useful to group

RE: OT Domain registration

2003-03-16 Thread Rick Faircloth
Yes, I'm sure I'm doing quite a few things wrong when it comes to the server. I don't have any formal education in any of this, just figuring it out as I go. Between help from others, like yourself, and what material I find to read, I'm able to figure most things out, but I haven't found much

Re: attaching methods at runtime

2003-03-16 Thread jonhall
To answer Michael's question, I was just thinking out loud, but the line of thinking came up because I had just completed the first bits of a generalized form validation cfc, and was thinking about how it contrasted to how I would do the same thing in OO javascript. Perhaps though, as you say,

Re: attaching methods at runtime

2003-03-16 Thread S . Isaac Dealey
Ahh okay... not sure why that didn't occur to me when I read it the first time. Maybe just my internal compartmentalization of data. :) Or because I tend not to attach functions directly to objects in the javascript DOM either, but that's a whole other story. In this light it all makes sense why

Re: attaching methods at runtime

2003-03-16 Thread S . Isaac Dealey
Good to know. One of these days I'm sure I'll get into CFC's. :) On Sunday, Mar 16, 2003, at 19:41 US/Pacific, S. Isaac Dealey wrote: Now if you're talking about adding methods to CFC's at runtime, such as cfset myCFC.doSomething = myUDF that's a whole other story (and I suspect could be

Serch Engine Woes

2003-03-16 Thread Jillian Carroll
Folks, I have a problem... and I am -really- hoping that somebody has a solution for me. I've searched for hours, tinkered for days... and Im really stuck. I'm at the stage of hoping that I'm missing something obvious. First, my platform: CF 5 on RH Linux 7.2 using PostgreSQL 7.1 (but I

RE: Serch Engine Woes

2003-03-16 Thread Dave Watts
My problem: I have 3 types of documents: PDFS, .CFM Static Files and Database Content I need to index all three into '1' collection that can be searched. PDF's on Linux cannot be directly indexed, so I am using pdf2txt to convert them to a shadow directory of files labelled:

RE: Serch Engine Woes

2003-03-16 Thread Lee Fuller
taking Dave by the earlobe and dragging him off to his room - slamming the door and yelling GO TO BED FOR A CHANGE!! Sorry for the OT post.. ;) -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Sunday, March 16, 2003 10:10 PM To: CF-Talk Subject: RE: Serch Engine Woes

RE: attaching methods at runtime

2003-03-16 Thread Dave Watts
Is there a way to attach a method/function to cf variable, be it a string, array, structure, etc at runtime? I don't think this is possible now, but it just popped into my head, and before I headed to the wishform, I was wondering if it, or a creative workaround already existed. You can

RE: OT Domain registration

2003-03-16 Thread Dave Watts
I'm hosting multiple sites under a single IP and I haven't been able to figure out Host Headers, either. I'm missing something somewhere. All you have to do is right-click on each site, select Properties, go to the Web Site tab, select Advanced, double-click on whatever entries you see in