RE: JVM 1.5.0 - Anyone using it?

2004-11-15 Thread Micha Schopman
How is your impression of the stability? :) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 ~| Special thanks to

Re[2]: Yellow fields

2004-11-15 Thread Ryan Sabir
You can then click the 'Auto-Fill' button in the Google toolbar to fill those fields... if you have provided the information that is... This was the bane of my life on one particular project... as there was a field named 'Country' in a drop down select box. If you selected 'Other' it would pop ope

Re: Yellow fields

2004-11-15 Thread Mike Kear
If it's the google toolbar, then [A] i take it back Bill Gates. Sorry for blaming you. You are still the one. (now can i have a new boat?) [B] how come the google toolbar doesnt actually FILL in the form fields? how come all it does is colour them yellow? Seems dumb to me. Cheers Mike Kear Winds

RE: Yellow fields

2004-11-15 Thread Matthew Walker
Google toolbar ;-) Matthew Walker, ESWsoftware http://www.eswsoftware.com > -Original Message- > From: Gabriel Robichaud [mailto:[EMAIL PROTECTED] > Sent: Tuesday, 16 November 2004 5:18 p.m. > To: CF-Talk > Subject: Yellow fields > > Hello yall! > > Can anyone explain why certain

Domain registration integrated in Cf apps?

2004-11-15 Thread Paul Campano
I am trying to seamlessly integrate registering and purchasing a domain name into a CF app. Has anyone done this? Does anyone have recommendations on who's API is easiest/best to use? THanks. -Paul ~| Special thanks to the CF

Re: Yellow fields

2004-11-15 Thread Gabriel Robichaud
well, actually, i just foudn this link, they blame google tool bar! http://www.htmldog.com/ptg/archives/17.php On Tue, 16 Nov 2004 15:31:39 +1100, Mike Kear <[EMAIL PROTECTED]> wrote: > Send a note to our pal Bill Gates. It's his work. > > It was part of the upgrade to IE and I have no ide

RE: Yellow fields

2004-11-15 Thread Jeff Garza
Do you have the Google toolbar installed? Or have you enabled the automagic form fill-in for IE? These are two typical culprits. Jeff Garza [EMAIL PROTECTED] Certified Macromedia ColdFusion Developer -Original Message- From: Gabriel Robichaud [mailto:[EMAIL PROTECTED] Sent: Monday, No

Re: Yellow fields

2004-11-15 Thread Ryan Sabir
The Google Toolbar colours auto-fill fields in yellow if it thinks it can fill them... Do you have that installed? Tuesday, November 16, 2004, 3:17:47 PM, you wrote: GR> Hello yall! GR> Can anyone explain why certain input text fields appear with a yellow GR> background in Internet Explorer eve

Re: Yellow fields

2004-11-15 Thread Mike Kear
Send a note to our pal Bill Gates. It's his work. It was part of the upgrade to IE and I have no idea what it's for, and how come some form fields are yellow and others aren't. But apparently our life is better because of it. I too wish it'd go away. Cheers Mike Kear Windsor, NSW, Australia

Yellow fields

2004-11-15 Thread Gabriel Robichaud
Hello yall! Can anyone explain why certain input text fields appear with a yellow background in Internet Explorer even if i have an alternate color defined in my stylesheet? Is there anyway to overide this yellow? TIA! Gabriel

Re: CSS Resources

2004-11-15 Thread jonese
this isn't 100% online. http://www.sitepoint.com/launch/3d0e01/3/13 I just got this book and it's awesome. The Sitepoint site has a lot of other great tutorials etc as well as other books etc. check them out, they've been my #1 resource for years! ERJ On Mon, 15 Nov 2004 15:54:52 -0500, Emmet

Re: cflogin

2004-11-15 Thread Rebecca Wells
Try... ... [...execute the login queries...] No need to cfrelocate to the login page. This message has been scanned by the City of Renton's filtering gateway. ~| Special thanks to

Re: Error in CFX_Excel Tag

2004-11-15 Thread Jim Watkins
>I have upgraded to Windows 2003 and now my CFX_Excel tag no longer >works. I use IIS and CF 6.1 I have registered the tag. I get the >"Can't start Excel" error. Please help! > >Jim Watkins >VP Technology & Inst Svcs >706 781-2305 - Blairsville >706 754-7850 - Clarkesville >[EMAIL PROTECTED] >

Re: OT - DWMX

2004-11-15 Thread Stephen Cowling
ahh thanks. too easy. Steve dave wrote: > C:\Program Files\Macromedia\Dreamweaver MX > 2004\Configuration\DocumentTypes\NewDocuments > pick the doc type u want and edit & save it > dont know about doing it dynamically though > > > > > > > > -- Original Message ---

Re: OT - DWMX

2004-11-15 Thread dave
C:\Program Files\Macromedia\Dreamweaver MX 2004\Configuration\DocumentTypes\NewDocuments pick the doc type u want and edit & save it dont know about doing it dynamically though -- Original Message -- From: Stephen Cowling <[EMAIL PROTECTED]> Reply-To:

Re: List Contains

2004-11-15 Thread Stuart Kidd
Thanks for your help Jerry and Al! I'm still having that problem where it only finds a few of the numbers in the list. The field is set as a varchar(200) that shouldn't be a problem should it? I broke the code down so it's easier to read and only specifically targets one particular row (just for

Losing Session Variable

2004-11-15 Thread Scott Brady
I've seen this general topic come up in the past, but I haven't been able to find an example in the archives that matches our current situation. We have a multi-step form process. When you submit the form step 1, you get to step 2 just fine. When you submit step 2, you should end up at step 3. H

Re: OT - DWMX

2004-11-15 Thread Stephen Cowling
And then the next thing I guess, is there a way to populate it dynamically? for example with todays date? Cheers Steve Stephen Cowling wrote: > Hey everyone, apologies for the off topic post. > > Is there a way to customise the predefined code that is displayed when > you select a new documen

OT - DWMX

2004-11-15 Thread Stephen Cowling
Hey everyone, apologies for the off topic post. Is there a way to customise the predefined code that is displayed when you select a new document type? Does that make sense? DW help tells me that the thing I am talking about is a Dreamweaver Design File. Can I create my own? Or at the very least

Re: List Contains

2004-11-15 Thread Al Everett
Looks like you need ListFind(), not ListContains(). ListFind looks at the entire element, while ListContains looks at substrings. ListFind(myList,7) will return 15 ListContains(myList,7) will return 5 (which is the element 17) --- Stuart Kidd <[EMAIL PROTECTED]> wrote: > Hi guys, > > I'm h

Re: List Contains

2004-11-15 Thread Jerry Johnson
You are almost there. Two problems. First, you are going to want listFind, rather than listContains, I think. listContains is not an exact match. looking for "5" will find "5" and "35" and "50". Second, are there really spaces after the , in the list? If so, I think you'll want to get rid of th

Re: OT: flowchart diagrams - best tools & guides?

2004-11-15 Thread Stephen Hait
Here's a link to a shareware flowchart product that works pretty well on Windows: http://www.paraben.com/html/flow.html Stephen ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net http://www.cfhosting.net

List Contains

2004-11-15 Thread Stuart Kidd
Hi guys, I'm having problems with lists. I displayed a list of all article titles (and IDs) that could relate to a specific title and the user can select which ones can be links (via a select form). That part is all good and it inserts the comma separated list into the field articleRelatedLinks

Re: OT: flowchart diagrams - best tools & guides?

2004-11-15 Thread Damien McKenna
I found the following guide on flowcharts: http://www.fh-jena.de/~kleine/history/software/IBM-FlowchartingTechniques-GC20-8152-1.pdf Its from 1969 and mentions things like punch cards, card deck, magneti

Users getting other user's CFIDs and CFTOKENs

2004-11-15 Thread Lofback, Chris
We have discovered that some of our users--not all--are somehow getting another user's CFID/CFTOKEN. Our setup: CF5/Win2K/IIS5, two apps, each in a 2-server cluster, each in the same domain: ie, app1.domain.com and app2.domain.com, storing client variables in a database. We were using CFAPPLICAT

RE: CFC Objects in Drop Down

2004-11-15 Thread Matthew Walker
A CFC object is a complex data structure. There's no predefined way to render it as a string. If it were a structure or query record set or something you could use cfwddx, although I wouldn't recommend it -- exposing a data structure like that in HTML sounds like a very bad idea to me. But it would

RE: 512 character limitation on the total length of groups return ed by NTSecurity.cfc

2004-11-15 Thread Dave Watts
> There seems to be a 512 character limitation on the total > length of groups returned by both the NTSecurity.cfc > getUserGroups() and authenticateAndGetGroups() methods. If > the total number of characters exceeds 512, these functions > return false for valid users. > > I spoke to John Cumm

RE: CFC Objects in Drop Down

2004-11-15 Thread Andy Ousterhout
When I want to do this, I create a session variable and pass it's name to the form handler. -Original Message- From: Ryan Anklam [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 2:31 PM To: CF-Talk Subject: CFC Objects in Drop Down Is there any way to pass CFC's into a drop down

Re: OT: CSS Resources

2004-11-15 Thread Michael Wilson
Donna French wrote: > I am hoping some of you can recommend a good online source for CSS. > I'm wanting to add dotted lines and such around paragraphs, and would > like to see examples with code of what all can be done with CSS. > > TIA, Hi, http://www.westciv.com/style_master/academy/css_tutori

512 character limitation on the total length of groups returned by NTSecurity.cfc

2004-11-15 Thread Ian Skinner
There seems to be a 512 character limitation on the total length of groups returned by both the NTSecurity.cfc getUserGroups() and authenticateAndGetGroups() methods. If the total number of characters exceeds 512, these functions return false for valid users. I spoke to John Cummings about this

CFC Objects in Drop Down

2004-11-15 Thread Ryan Anklam
Is there any way to pass CFC's into a drop down menu and have the form submit the cfc instead of having to re-create the cfc on the form handler page based on a value from the drop down? If this is impossiable I'd love to hear how other people have solved this problem. #aryObject

Re: OT: flowchart diagrams - best tools & guides?

2004-11-15 Thread Damien McKenna
To answer my own questoin, I found this guide: http://www.deneba.com/community/howto/flowcharts/default.html -- *Damien McKenna* - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 "Why are you wearing that stupid man sui

RE: CFC's and multiple returnVariable(s)

2004-11-15 Thread Andy Ousterhout
Return a structure. -Original Message- From: Charles Heizer [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 3:14 PM To: CF-Talk Subject: CFC's and multiple returnVariable(s) Hello, I'm really new to using cfc and I really like them and I'm find them to be a great time saver. My

RE: CFC's and multiple returnVariable(s)

2004-11-15 Thread Michael Dinowitz
Place all of the return variables into a structure and return the structure. > Hello, > I'm really new to using cfc and I really like them and I'm find them to > be a great time saver. My question is, I was wondering if it was > possible to have multiple returnVariable in my cfinvoke? If so, can >

Re: CFC's and multiple returnVariable(s)

2004-11-15 Thread Barney Boisvert
Nope, you can only return a single "thing" from a given method call. However, there's no reason that single thing can't be a structure filled with a whole bunch different stuff. For example, a getUserInfo() method might need to return a name and email. Rather than returning them directly, make a

RE: CFC's and multiple returnVariable(s)

2004-11-15 Thread Dave Watts
> I'm really new to using cfc and I really like them and I'm > find them to be a great time saver. My question is, I was > wondering if it was possible to have multiple returnVariable > in my cfinvoke? If so, can some one tell me how? No, your functions can only return one thing. However, that

CFC's and multiple returnVariable(s)

2004-11-15 Thread Charles Heizer
Hello, I'm really new to using cfc and I really like them and I'm find them to be a great time saver. My question is, I was wondering if it was possible to have multiple returnVariable in my cfinvoke? If so, can some one tell me how? Thanks, - Charles ~

RE: CSS Resources

2004-11-15 Thread Emmet McGovern
http://www.alistapart.com -e -Original Message- From: Donna French [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 3:37 PM To: CF-Talk Subject: OT: CSS Resources I am hoping some of you can recommend a good online source for CSS. I'm wanting to add dotted lines and such arou

RE: CSS Resources

2004-11-15 Thread Figy, Kam
www.csszengarden.com http://www.w3schools.com/css/default.asp Hth Kam -Original Message- From: Donna French [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 12:37 PM To: CF-Talk Subject: OT: CSS Resources I am hoping some of you can recommend a good online source for CSS. I'm

Re: CSS Resources

2004-11-15 Thread Massimo, Tiziana e Federica
> I am hoping some of you can recommend a good online source for CSS. > I'm wanting to add dotted lines and such around paragraphs, and would > like to see examples with code of what all can be done with CSS. This is an excellent starting point, containing plenty of links to additional resources:

OT: flowchart diagrams - best tools & guides?

2004-11-15 Thread Damien McKenna
I'm attempting to document my work a bit more thoroughly and am looking to do flowcharts for my work. Are there any better (free) flowcharting tools other than Dia (http://dia-installer.sf.net/)? Are there any quick reference guides online for the basic shapes? Thanks. -- *Damien McKenna* -

OT: CSS Resources

2004-11-15 Thread Donna French
I am hoping some of you can recommend a good online source for CSS. I'm wanting to add dotted lines and such around paragraphs, and would like to see examples with code of what all can be done with CSS. TIA, -- Donna French [EMAIL PROTECTED] Blog: http://dgfrench.blogspo

Re: Client Variable database

2004-11-15 Thread jjakim
That was my initial reaction. But the maintanance plan that this database uses is suppose to shrink the log/ remove old files after a certain amount of time. All the other databases under this maintenance plan have not balloned like this one. It's strange that it's only happening on this partic

Re: A Quick cry for help, figured you guys have probably seen this...

2004-11-15 Thread Jeff Small
> This should help I think. > > http://www.winnetmag.com/SQLServer/Article/ArticleID/42854/SQLServer_42854.html > > Stephen Boy howdythanks ever so much. ~| Special thanks to the CF Community Suite Gold Sponsor - CFHosting

Re: A Quick cry for help, figured you guys have probably seen this...

2004-11-15 Thread Stephen Moretti (cfmaster)
Jeff Small wrote: >We have a development database running on a little windowsXP Pro machine >that's hummed along quite nicely. Then today, we ran SP2 because we did a >monthly reboot and it reminded us. We didn't change any settings and when it >came back up we just cut off the Windows Firewall

Re: Need Book Recommendation

2004-11-15 Thread Donna French
I've looked at that one briefly and plan to look at it more in-depth on my next Books a Million outing. THX!!! On Thu, 11 Nov 2004 17:54:57 +0100, Massimo Foti <[EMAIL PROTECTED]> wrote: > > I have the CF5 Web App Kit, and have looked at the CFMX WAK but it > > appears to be mostly the same cont

A Quick cry for help, figured you guys have probably seen this...

2004-11-15 Thread Jeff Small
We have a development database running on a little windowsXP Pro machine that's hummed along quite nicely. Then today, we ran SP2 because we did a monthly reboot and it reminded us. We didn't change any settings and when it came back up we just cut off the Windows Firewall, the Virus checker, et

RE: MX sql driver issues

2004-11-15 Thread Lawrence Ng
thank you Dave. I'll ask him. >>> [EMAIL PROTECTED] 11/15/2004 11:54:21 AM >>> > Have any of you experienced any issues simliar to this with > the JDBC driver with SQL 2000 server? > > 1. Two weeks ago, they switched over to MX and it bombed > under load - it was producing constant sql deadlo

Re: MX sql driver issues

2004-11-15 Thread Lawrence Ng
thank you. I will have a look at it. >>> [EMAIL PROTECTED] 11/15/2004 11:44:27 AM >>> apart from reviewing the cf code you may want to look into the jTDS drivers available from http://jtds.sourceforge.net/ they are regarded as considerably more stable and also more performant than microsoft's

RE: MX sql driver issues

2004-11-15 Thread Dave Watts
> Have any of you experienced any issues simliar to this with > the JDBC driver with SQL 2000 server? > > 1. Two weeks ago, they switched over to MX and it bombed > under load - it was producing constant sql deadlocks. They > believe they were able to track down the problem with some > stor

Re: MX sql driver issues

2004-11-15 Thread Dirk De Bock - Listclient
apart from reviewing the cf code you may want to look into the jTDS drivers available from http://jtds.sourceforge.net/ they are regarded as considerably more stable and also more performant than microsoft's own offering - Original Message - From: "Lawrence Ng" <[EMAIL PROTECTED]> To:

RE: CF Server custom errors

2004-11-15 Thread Steve Brownlee
Actually I should be more specific, what we're doing with CF5 is making the application a bit smarter. If someone types in http://www.ourapp.com/nonexistentsubdirectory, the code will take 'nonexistentsubdirectory' and see if that user exists in the database and then redirect the browser to the lo

website not quite processing CFM file correctly.

2004-11-15 Thread Ian Skinner
I suspect there is something incomplete about the website/ColdFusion integration. If I call a complete URL, all is well (http://website/index.cfm). But, if I leave off the file, relying on the defaults to process, the index.cfm file is found by the web server (Windows 2000), but it is not hand

MX sql driver issues

2004-11-15 Thread Lawrence Ng
hello there, I came across this over the weekend with a fellow developer over the weekend... Have any of you experienced any issues simliar to this with the JDBC driver with SQL 2000 server? 1. Two weeks ago, they switched over to MX and it bombed under load - it was producing constant sql dea

Re: Weird Version Control Spot?

2004-11-15 Thread Barney Boisvert
Sorry 'bout that. https://www.cvshome.org/ http://subversion.tigris.org/ cheers, barneyb On Mon, 15 Nov 2004 13:20:41 -0600, Eric Hoffman <[EMAIL PROTECTED]> wrote: > Thanks! Any links for the two? > -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com/blog/ I currently

CF Server custom errors

2004-11-15 Thread Steve Brownlee
This is a question regarding the built-in server for CFMX. We're running both CF5 and CFMX on our development machines, and in the CF5 configuration, we have IIS redirecting users to a page on any 404 error. Is there a way to set up the CFMX server to mimic this functionality? Thanks in advance,

RE: Weird Version Control Spot?

2004-11-15 Thread Eric Hoffman
Thanks! Any links for the two? -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 1:06 PM To: CF-Talk Subject: Re: Weird Version Control Spot? Check out Subversion or CVS. Subversion is newer and more feature rich, CVS is older, more est

RE: Client Variable database

2004-11-15 Thread Figy, Kam
It's probably the transaction log, since it has to run some sql for client var requests. Theres a way to truncate the log, but I don't remember it offhand. Try the t-sql help in query analyzer. Hth Kam -Original Message- From: Janine Jakim [mailto:[EMAIL PROTECTED] Sent: Monday, Novemb

Re: Weird Version Control Spot?

2004-11-15 Thread Barney Boisvert
Check out Subversion or CVS. Subversion is newer and more feature rich, CVS is older, more established, and has a larger set of support software available. Both are free. Either one will let you branch your code so that you have two distinct lines that eveolve independantly from one another, but

Re: cfc - cffunction question

2004-11-15 Thread Charles Heizer
Thanks to all who replied. This works very well form me. Thanks again! - Charles On Nov 13, 2004, at 3:55 PM, Raymond Camden wrote: > But (normally), extends should only be used to create a "Is A" > releationship. Settings doesn't match this rule. Just in case it > wasn't too obvious for others

Re: creating a table problems

2004-11-15 Thread daniel kessler
>> Here are the two tables. > >You don't need to have marathon_entries.marathon_type - you already >reference the marathon_login table using its primary key. ok, you are correct. And this made me realize that I still need the field, but that it shouldn't be a foreign key. The marathon_login.mar

SOT: Client Variable database

2004-11-15 Thread Janine Jakim
I am using client variables for some of my applications. I have done the recommended way and made a client variable database to store all the info. (on a MSSQL db) It is the only info stored there. I just noticed today that this db is over 10 gig big! It's not like there are many rows of informta

RE: Online Email Newsletter Services

2004-11-15 Thread SStewart
Real Magnet: http://www.realmagnet.com sas Scott A. Stewart, Web Application Developer Engineering Consulting Services, Ltd. (ECS) 14026 Thunderbolt Place, Suite 100 Chantilly, VA 20151 Phone: (703) 471-8400 Fax: (703) 834-5527 -Original Message- From: Jeffrey Fongemie [mailto:[EMAI

OT: Online Email Newsletter Services

2004-11-15 Thread Jeffrey Fongemie
Hi everyone, Sorry for the off topic post. Anyone have any good experiences with any of the online email-bulk-newsletter services? Can anyone recommend a good service? Thanks! Jeff -{ ~| Special thanks to the CF Community

Re: creating a table problems

2004-11-15 Thread Ben Doom
Yes. Yes I do. Every single table should have something that distinctly identifies rows, even if all the "useful" data is duplicated. Just a good idea in general. There have been myriad discussions about this, so feel free to browse the archives. --Ben daniel kessler wrote: > Ben, I do have

RE: Delete CFMAGIC cookie?

2004-11-15 Thread Lofback, Chris
We tried that and it didn't work. Here's the background: We were using SETDOMAINCOOKIES in CFAPPLICATION. The CFMAGIC cookie is a domian cookie with no exdate and it appears to be overriding our other host cookies that we want to expire when the browser is closed. CF is "bumping" all the cookie

Weird Version Control Spot?

2004-11-15 Thread Eric Hoffman
I am in a position that I need to look at version control capabilities... The quick overview: Win2003, CFMX 6.1...built a large fulfillment/distribution house management system in all CF, from order taking in call center to warehouse/shipping and all inbetween. Peculiarity comes as they now wan

RE: creating a table problems

2004-11-15 Thread Dave Watts
> Here are the two tables. > > create table marathon_login ( > marathon_id NUMBER Primary Key, > marathon_date_added date, > marathon_fname VARCHAR2(100), > marathon_lname VARCHAR2(100), > marathon_email VARCHAR2(100), > marathon_type VARCHAR2(100) > ) > > create tab

RE: Delete CFMAGIC cookie?

2004-11-15 Thread Dave Watts
> Is there anyway to force a client browser to delete a CFMAGIC > domain-level cookie? We have users who have domain cookies > that are getting each other's sessions and need to remove the > cookie. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ phone: 202-797-5496 fax:

Delete CFMAGIC cookie?

2004-11-15 Thread Lofback, Chris
All-- Is there anyway to force a client browser to delete a CFMAGIC domain-level cookie? We have users who have domain cookies that are getting each other's sessions and need to remove the cookie. Thanks, Chris ~| Special thank

Re: creating a table problems

2004-11-15 Thread daniel kessler
It doesn't appear that adding the constraint is keeping me from creating the table. If I remove the line: marathon_type VARCHAR2(100) REFERENCES marathon_login(marathon_type), it creates the table fine. Could it have to do with it being defined varchar2(100) with incorrect syntax? I dunno. I'm

Re: creating a table problems

2004-11-15 Thread Deanna Schneider
I usually do them in two steps - first create table with pk fields being non-null create table marathon_login ( marathon_id NUMBER Not Null, marathon_date_added date, marathon_fname VARCHAR2(100), marathon_lname VARCHAR2(100), marathon_email VARCHAR2(100), marathon_type VARCHAR2(100) ) T

Re: Blackstone to provide built-in "Flash Remoting" type capabilities?

2004-11-15 Thread Rick Root
Douglas Knudsen wrote: > enterprise buyers, eh? Looking at enterprise software, Flex is not > that expensive really. I mean, take a gander at the cost of Websphere > or Lotus Domino or Seibel. We're considering building a reporting application using Flex and Coldfusion, building internally...

Re: Re: Blackstone to provide built-in

2004-11-15 Thread simon
I wouldn't say you HAVE to learn AS 2 to use flex. It's extremely helpful, however you can use it without coding any AS 2. If you're interested in seperating business logic from the rest of your applications, Flex supports invoking remote functionality not only encapsulated in compiled Flash,

RE: creating a table problems

2004-11-15 Thread Dave Watts
> Ben, I do have a pk marathon_id within marathon_login. Do > you mean that I should have one in marathon_entries? Yes, every table should have its own primary key. If a table depends on another table's primary key, it should have a foreign key as well of course. Dave Watts, CTO, Fig Leaf Softw

Re: creating a table problems

2004-11-15 Thread daniel kessler
>I can't help you with your main problem, as I usually use a tool for >creating/altering tables, but I will say this: create a pk or identity >for your entries table. For that matter, every table ever should have >an identity. I adjusted it to the following, but as you said, I'm left with my

Re: creating a table problems

2004-11-15 Thread daniel kessler
Ben, I do have a pk marathon_id within marathon_login. Do you mean that I should have one in marathon_entries? >I can't help you with your main problem, as I usually use a tool for >creating/altering tables, but I will say this: create a pk or identity >for your entries table. For that matte

RE: JVM 1.5.0 - Anyone using it?

2004-11-15 Thread Dave Watts
> Has anyone upgraded to 1.5 jvm? It's supposedly has > "improved out-of-box performance". I'm assuming anyone who > has upgraded hasn't done so on a production box. Any > noticeable benefits in your dev environments? > > I just dropped it on a dev box here, and it seems pretty > smooth. I

Re: creating a table problems

2004-11-15 Thread Ben Doom
I can't help you with your main problem, as I usually use a tool for creating/altering tables, but I will say this: create a pk or identity for your entries table. For that matter, every table ever should have an identity. --Ben Daniel Kessler wrote: > I am creating a DB to monitor the numbe

JVM 1.5.0 - Anyone using it?

2004-11-15 Thread Ryan Emerle
Hey, Has anyone upgraded to 1.5 jvm? It's supposedly has "improved out-of-box performance". I'm assuming anyone who has upgraded hasn't done so on a production box. Any noticeable benefits in your dev environments? I just dropped it on a dev box here, and it seems pretty smooth. I haven't don

Re: cfc - cffunction question

2004-11-15 Thread Matthew Drayer
The one thing that will help you to make the proper decision(s) regarding object calls will be to lay out your application framework ahead of time and set up rules to govern communications between objects. If you set the proper rules, they're easy to follow and you won't find yourself having to

creating a table problems

2004-11-15 Thread Daniel Kessler
I am creating a DB to monitor the number of steps our faculty uses on their pedometers. I have two tables, one for login and the other for the step entries. I can't get the table for the step entries to CREATE. It gives me the error, "no matching unique or primary key for this column-list." It

Re: Blackstone to provide built-in "Flash Remoting" type capabilities?

2004-11-15 Thread Douglas Knudsen
me thinks its MACRs attempt to get into the enterprise market more. CF is now with its J2EE foundation, but CF is not fetching enterprise price levels. The big boys buy expensive toys whilst holding meetings at the golf course, eh? Maybe MACR can price a 'stand alone' Flex version for developers

Re: Find first letter

2004-11-15 Thread Bert Dawson
If you need to list them alphabetically then you should just retrieve them alphabetically from the database: SELECT employee_lname FROM employees ORDER BY employee_lname If you're not getting the names from a dB, but have an actual list then you could convert the list to an array (using listToArr

RE: Find first letter

2004-11-15 Thread Katz, Dov B (IT)
I have code I use which does this combination of CF and SQL Select *,substr(Lastname,1,1) as Letter from users order by Lastname ASC, Firstname ASC #letter# #lastname#,#firstname# HTH -dov -Original Message- From: Deanna Schneider [mailto:[E

Re: Find first letter

2004-11-15 Thread Deanna Schneider
You know, this is the kind of thing that you can probably do in your database, too. So, that you pass back a column with the full last name and one with the first letter. Don't know your DB, so I can't give you any syntax. But, I just did this with Oracle, and it's a piece of cake. - Origi

Re: Find first letter

2004-11-15 Thread Aaron Rouse
Do you want to do it in the DB or in CF? If in the query then it depends on the database you are using, something like this would work in Oracle SELECT SUBSTR(EMPLOYEE_LNAME, 1, 1) AS ABBR FROM EMPLOYEES ORDER BY UPPER(EMPLOYEE_LNAME) If in CF then #Left(queryname.employee_lname, 1)# would outpu

Error in CFX_Excel Tag

2004-11-15 Thread James Watkins
I have upgraded to Windows 2003 and now my CFX_Excel tag no longer works. I use IIS and CF 6.1 I have registered the tag. I get the "Can't start Excel" error. Please help! Jim Watkins VP Technology & Inst Svcs 706 781-2305 - Blairsville 706 754-7850 - Clarkesville [EMAIL PROTECTED] http://www

Re: cfc - cffunction question

2004-11-15 Thread Deanna Schneider
I'm not an OO expert, either (hardly!). But, in our case, we have lots of apps that all use the same basic DSN configurations, but each "stand alone" in terms of application structure. So, I'm using the approach of having a settings.cfc type thing (that can either use the default configurations

RE: CFMail: Query attribute vs. cflooping

2004-11-15 Thread Dawson, Michael
I just sent 1,400+ messages using cfloop > cfmail this morning. This took only a second or two to spool all of these. This is also on a pretty slow server with one bad processor out of two. I don't see that you will have any problems if your hardware is capable of this. M!ke -Original Mes

RE: Find first letter

2004-11-15 Thread Ben Forta
Left(employee_lname, 1) -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Monday, November 15, 2004 10:03 AM To: CF-Talk Subject: Find first letter I need to output a list of names alphabetically via the field "employee_lname" (last name). What's the code that can

Find first letter

2004-11-15 Thread Robert Orlini
I need to output a list of names alphabetically via the field "employee_lname" (last name). What's the code that can check the first letter of the field employee_lname? Thanks. Robert O. HWW ~| Special thanks to the CF Communi

RE: CFMAIL ISSUE

2004-11-15 Thread Robertson-Ravo, Neil (RX)
Hmmm,we use email addresses with apostrophes in them and they are valid...they do not get any errors?! -Original Message- From: Ciliotta, Mario [mailto:[EMAIL PROTECTED] Sent: 15 November 2004 14:43 To: CF-Talk Subject: CFMAIL ISSUE HI, I was wondering if anyone has had any issues with

Re: cflogin

2004-11-15 Thread Raymond Camden
Err, I'm confused. You said that it seems like CFLOGIN always existed when you tested your app. Even when you didn't submit the form. So, I shared that doc to point out that you may be triggering another way for the cflogin scope to exist. Of course, you can make this easier by just changing your

Re: CFMail: Query attribute vs. cflooping

2004-11-15 Thread Matt Robertson
A loop is the only way to do the validation in one step. If the list is static, validate it once in a special maintenance routine in advance of your planned multi-use. -- --Matt Robertson-- President, Janitor MSB Designs, Inc. mysecretbase.com ~~

CFMAIL ISSUE

2004-11-15 Thread Ciliotta, Mario
HI, I was wondering if anyone has had any issues with email address that has an apostrophe in it: robert.o'[EMAIL PROTECTED] When I try to send an email out using this address - CF spits out an error message stating that the "TO" is invalid. I am using CFMX 6.0 - yes still trying to get my p

Re: cflogin

2004-11-15 Thread Chris Doughty
>"Authentication will always be as a result of a logon form being >submitted so i could test for form.j_username but this would be a work >around." > >This isn't exactly true. It can come also come from two other places. >From the docs: > ># A request that uses CFHTTP Basic authentication, and ther

Re: cfc - cffunction question

2004-11-15 Thread Raymond Camden
Let me start by saying I am NOT an OO expert. PLEASE remember that. :) To me, this doesn't break encapsulation because the CFCs are all in the same package, so it makes sense that they would use one another. As for flip flopping, I hear ya. Every other app I make using CFCs does things a bit diff

Re: cflogin

2004-11-15 Thread Raymond Camden
"Authentication will always be as a result of a logon form being submitted so i could test for form.j_username but this would be a work around." This isn't exactly true. It can come also come from two other places. >From the docs: # A request that uses CFHTTP Basic authentication, and therefore i

Re: cflogin

2004-11-15 Thread Chris Doughty
>> From: Chris Doughty [mailto:[EMAIL PROTECTED] >> I am using the cflogin tag to control user authentication and >> session timeout but I am finding that the cflogin structure >> always exists. > >What is the loginstorage attribute set to in your cfapplication tag? > >Michael T. Tangorre I hav

  1   2   >