Re: CF Editor

2007-06-27 Thread Brian Kotek
Unfortunately I can't, since I'm using MyEclipse (a commercial add-on for Eclipse that costs about $40), and with all the plugins and the rest my Eclipse folders are probably upwards of 700 megs in size, which really isn't distributable. However, I have access to the Adobe Community Experts

RE: CF Editor

2007-06-27 Thread Bobby Hartsfield
Just filter it. I think it's a completely on-topic worth-while discussion. Who knows what else we might learn :-) ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Cutter (CFRelated) [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 26,

Re: Good CF recommendations?

2007-06-27 Thread Mike Chabot
The free manuals are good, in addition to the Ben Forta book. -Mike Chabot On 6/26/07, Michael Stevens [EMAIL PROTECTED] wrote: I need a CF programming book. Any recommendations for a beginning to medium level book? Thanks, Mike

SQL Help, please ...

2007-06-27 Thread tjones
Hello, It's been a wile since I have had to do much in the way of SQL queries and I need some help. I have a table called installs that looks like this HostName, iDate, Package client1, 2007-06-01, Update1 client1, 2007-06-01, Update2 client1, 2007-06-01, Update3 client1, 2007-06-02, Update5

RE: CF Editor

2007-06-27 Thread Eric Roberts
They don’t have control over the pathing of their own product...jeeze...didn't know Bill had that much power ;-) Eric -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 26, 2007 1:02 PM To: CF-Talk Subject: RE: CF Editor I DONÂ’T think it was

Re: CF Editor

2007-06-27 Thread Charlie Griefer
On 6/26/07, Claude Schneegans [EMAIL PROTECTED] wrote: This is quite amusing because what you describe is EXACTLY what the CFEclipse scribble pad is. Then why would I need CF Eclipse if it does exactly what I've been doing with CF Studio for years? This is exactly my point. - free - still

Re: CF Editor

2007-06-27 Thread Charlie Griefer
On 6/26/07, Eric Roberts [EMAIL PROTECTED] wrote: I really disliked the site model as well... The big PIA with Eclipse...you can't just create a blank file without creating a file in the file system. When I am debugging javascript, I will grab the source to see the code the error is

Re: CF Editor

2007-06-27 Thread Charlie Griefer
On 6/26/07, Eric Roberts [EMAIL PROTECTED] wrote: It's the current version of both...if it is possible to set it up incorrectly, then definitely puts it in the POS file for me. I shouldn't have to worry about setting a friken ide correctly or not in this day and age. erm it's

RE: CF Editor

2007-06-27 Thread Eric Roberts
Exactly. -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 26, 2007 8:42 AM To: CF-Talk Subject: Re: CF Editor A big amen to that. I'll second also, and I would add that the trouble with many of those open source projects is that they aim at

Re: Good CF recommendations?

2007-06-27 Thread Charlie Griefer
AFAIK, the only current (covers CFMX7) print book is the ColdFusion Web Application Construction Kit (affectionately known as the WACK). http://tinyurl.com/2h6ntt -- standard (good place to start) :) http://tinyurl.com/23gf8u -- advanced On 6/26/07, Michael Stevens [EMAIL PROTECTED] wrote:

RE: CF Editor

2007-06-27 Thread Dave Watts
They don’t have control over the pathing of their own product...jeeze...didn't know Bill had that much power ;-) The Windows zip utility doesn't support the path depth that the Windows filesystem does. I don't know who to blame for that other than whoever wrote the Windows zip utility.

Re: CF Editor

2007-06-27 Thread Greg Luce
Why doesn't someone who's climbed the learning curve and HAS configured all these hundreds of things, and installed all the plugins just release/distribute their build? Being as it's java I can just stick someone else's Eclipse install on my PC and go to town right? I'd pay money for not having to

Re: Good CF recommendations?

2007-06-27 Thread Brian Kotek
http://www.amazon.com/Macromedia-ColdFusion-Web-Application-Construction/dp/0321223675/ On 6/26/07, Michael Stevens [EMAIL PROTECTED] wrote: I need a CF programming book. Any recommendations for a beginning to medium level book? Thanks, Mike

Re: SELECT - Option selected

2007-06-27 Thread Andrew Grosset
remove =true and it should work cfloop query=myquery_1 option value=#ID# cfif ID EQ IDselected/cfif#Description#/option /cfloop Andrew. Ok I've spent that last 2 hours tearing my hair out trying to figure out what was wrong in my code. When I come to the realization to test it in IE and bam

Re: Date and Time

2007-06-27 Thread Charlie Griefer
create a field that has a default value of the current date/time. that value depends on your database. in SQL Server, it's getDate(). in Access, it's now(). not sure about other databases. On 6/26/07, Steven Sprouse [EMAIL PROTECTED] wrote: Does anyone know how I can insert a date and time

RE: CF Editor

2007-06-27 Thread Dave Watts
If it is a Vista problem, why don't I have a problem with any other zipped file that I have come across...with the SOLE exception being Eclipse. It sounds like an Eclipse problem to me. It's not really just a Vista problem, it's a problem with the MS zip functionality in Vista, XP, and

Re: eCommerce Questions

2007-06-27 Thread Mary Jo Sminkey
3. Shipping Cost: I know there was an API for USPS but I can not find it.. (yes I hit Google). Does anyone have an API such as that or know of a services/place I can get one? I just put out my updated USPS API tool for ColdFusion as an entry in the CFUnited open source contest, you might find it

Re: CF Editor

2007-06-27 Thread Robertson-Ravo, Neil (RX)
A snip at 400mb :-) This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains information which is confidential and may also be privileged. It is for the

Re: CF Editor

2007-06-27 Thread Cutter (CFRelated)
Sorry, head still spinnin' from all theWell, anyway. Good catch (note to self: read all posts prior to hitting 'Send') Rewind. Please move this to CF-Community. Steve 'Cutter' Blades Adobe Certified Expert Advanced Macromedia ColdFusion MX 7 Developer

Re: cfx_image and pjpeg read error

2007-06-27 Thread Matt Gai
Thanks for the suggestion JJ, but I figured out that by using CFX_IMAGE2 alongside CFX_IMAGE to handle PJPEG file types, it works great. So I just use CFX_IMAGE2 ACTION=READ FILE=C:\Domains\mydomain\images\filename.jpg to read any type of uploaded photo... and then IF the photo width is

Re: SELECT - Option selected

2007-06-27 Thread Andrew Grosset
remove =true and it should work. Andrew. Ok I've spent that last 2 hours tearing my hair out trying to figure out what was wrong in my code. When I come to the realization to test it in IE and bam it works. I have a dynamically generated Select drop down that marked the option tag selected that

SELECT - Option selected

2007-06-27 Thread Andrew Grosset
remove the =true and it should work Andrew. (I tried replying to the original post and it never appears.could it be connected that the author is missing?) ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience time-saving

Re: CF Editor

2007-06-27 Thread Robertson-Ravo, Neil (RX)
He told you why, the depth of the zip etc. As Eclipse contains jars etc the nested zip is pushing it beyond it's limit. This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number

Re: SELECT - Option selected

2007-06-27 Thread Andrew Grosset
remove =true and it should work. Andrew Ok I've spent that last 2 hours tearing my hair out trying to figure out what was wrong in my code. When I come to the realization to test it in IE and bam it works. I have a dynamically generated Select drop down that marked the option tag selected that

Re: .htaccess for IIS

2007-06-27 Thread Tom Chiverton
On Tuesday 26 Jun 2007, Paul Vernon wrote: be bad but I'm wondering how scalable it can be. If anyone has any experience with it, I'd appreciate any info you can share! My first thought is it only does Basic (rather than Digest) authorisation. Using Basic is just as bad as sending the username

Re: SELECT - Option selected

2007-06-27 Thread Will Tomlinson
I've run into this before with FF. I think when I made my changes, I cleared the cache and reloaded the page. Then it started working. I also like using cfselect selected=#someValue# Will ~| ColdFusion MX7 by Adobe®

Re: Date and Time

2007-06-27 Thread Terry Schmitt
Well... The easiest method would be to create a datetime column in your table with a default value of getdate(). You may want to provide more detail. I would assume that if you know how to store the press release in the database, then you would know how to store a date. I'm probably missing

Re: cfx_image and pjpeg read error

2007-06-27 Thread Matt Gai
Hey JJ I meant to post that reply instead of just sending it to you - can you send it back to me please? Thanks - Matt ~| Deploy Web Applications Quickly across the enterprise with ColdFusion MX7 Flex 2 Free Trial

Re: Date and Time

2007-06-27 Thread James Holmes
It's SYSDATE in Oracle (if that helps round out the list). On 6/27/07, Charlie Griefer [EMAIL PROTECTED] wrote: create a field that has a default value of the current date/time. that value depends on your database. in SQL Server, it's getDate(). in Access, it's now(). not sure about other

Re: CF Report

2007-06-27 Thread Tom Chiverton
On Tuesday 26 Jun 2007, ch g wrote: Any ideas please Don't post the same question 3 times. -- Tom Chiverton Helping to evangelistically syndicate low-risk schemas on: http://thefalken.livejournal.com This email is sent for and on

Re: CF Editor

2007-06-27 Thread Brian Kotek
On 6/26/07, Claude Schneegans [EMAIL PROTECTED] wrote: This is quite amusing because what you describe is EXACTLY what the CFEclipse scribble pad is. Then why would I need CF Eclipse if it does exactly what I've been doing with CF Studio for years? This is exactly my point. I give up,

RE: CF Editor

2007-06-27 Thread Eric Roberts
You can download a configured eclipse package. I don’t remember the URL offhand, but I think the eclipse.org site has a link to it in the SDK section. That is what I am using now and that did help make it at least usable, though I have had problems with packages not loading due to

Adobe Keynote

2007-06-27 Thread Rick Root
Ben just told us that event gateways will most likely be part of CF Standard. Nothing else we heard today was really new .. though they did publish some actual numbers on increased performance which were VERY impressive. Rick -- CFMBB - Coldfusion Message Boards, Version 1.21 Now Available!

RE: Having problems with LEN()...

2007-06-27 Thread Bobby Hartsfield
9 is right next to the 0! :-) That would of course be... Numberformat(var, '') ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 26, 2007 7:33 PM To: CF-Talk

Re: CF Editor

2007-06-27 Thread Brian Kotek
Then I guess we're left with option 3 (you might not understand correctly how Eclipse works). On 6/26/07, Eric Roberts [EMAIL PROTECTED] wrote: It's the current version of both...if it is possible to set it up incorrectly, then definitely puts it in the POS file for me. I shouldn't have to

Re: cfx_image and pjpeg read error

2007-06-27 Thread J.J. Merrick
I think it went to the list... at least that is what gmail is saying. On 6/26/07, Matt Gai [EMAIL PROTECTED] wrote: Hey JJ I meant to post that reply instead of just sending it to you - can you send it back to me please? Thanks - Matt

Re: Good CF recommendations?

2007-06-27 Thread Charlie Griefer
oooh... there's also this: http://www.dcooper.org/blog/client/index.cfm?mode=entryentry=3E2F4BDD-4E22-1671-5A5ED6D0E2EFA31A (http://tinyurl.com/32xqhq) which is a pretty *friggin'* good deal. On 6/26/07, Mike Chabot [EMAIL PROTECTED] wrote: The free manuals are good, in addition to the Ben

Re: CF Editor

2007-06-27 Thread Brian Kotek
On 6/26/07, Dave Watts [EMAIL PROTECTED] wrote: If it is a Vista problem, why don't I have a problem with any other zipped file that I have come across...with the SOLE exception being Eclipse. It sounds like an Eclipse problem to me. It's not really just a Vista problem, it's a problem

RE: CF Editor

2007-06-27 Thread Dave Watts
I wasn't referring to Mark at all...that was directed at the people responding to bug reports for Eclipse. Instead of basically telling everyone with Vista they are SOL because the zipping protocol they use or something within how they zip their files doesn't work in Vista...they should

Re: CF Editor

2007-06-27 Thread Brian Kotek
Thanks Greg, now there is something I didn't know since I haven't used Homesite in a long time. IF you are on Windows and you have Tortoise installed, you can indeed use the Tortoise commands from inside Homesite. However, it does mean anyone on another OS or that doesn't have Tortoise installed

RE: CF Editor

2007-06-27 Thread Bobby Hartsfield
Wash, rinse, repeat ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Eric Roberts [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 26, 2007 9:32 PM To: CF-Talk Subject: RE: CF Editor ECLIPSE...not CFECLIPSE -Original Message-

Re: CF Editor

2007-06-27 Thread Brian Kotek
On 6/26/07, Greg Luce [EMAIL PROTECTED] wrote: What do you mean by Seamless integration with SVN? In HS I can right-click on a dir and select Update or Commit from Tortoise and it's done. How can you be more seamless than that? Greg I mean seamless integration with Subversion from within

Re: CF Editor

2007-06-27 Thread Greg Luce
Using Tortoise in the Files pane in Homesite is about as seamless as using some plugin in Eclipse IMO. Especially since I never did get Subclipse working in CFE. I did use the SVN Repository Explorer and didn't find it any simpler than Tortoise. Subclipse made me install a bunch of other stuff

RE: CF Editor

2007-06-27 Thread Peterson, Chris
Maybe we should all just say 'to each his own' and let everyone figure it out. =) Dreamweaver is great for a designer who wants to code some, and is easy to figure out. Its even great for newbs and WYSIWYG, and works out of the box. Eclipse is great for multi-purpose coders who do much more

RE: SQL Help, please ...

2007-06-27 Thread Brad Wood
Let me get this straight, you want a report to summarize the number of installs by date and client. So client 1 ran 3 installs on 6/1 and 2 installs on 6/2. I believe you simply need to group by hostname, and then date and then use an aggregate function (count()) to add up the records in between

Re: SOLVED? Re: Method=GET received as POST by CF

2007-06-27 Thread Claude Schneegans
A little late to this thread. I even started a new one on the same issue ;-) Let's look at it this way, there are many ways to submit. Of course there are, but whatever way is used, if the form has its attribute METHOD=POST, the only way it could be submitted as GET would be to change it by

Re: CF Editor

2007-06-27 Thread exH
- Original Message - From: Brian Kotek [EMAIL PROTECTED] On 6/26/07, Greg Luce [EMAIL PROTECTED] wrote: What do you mean by Seamless integration with SVN? In HS I can right-click on a dir and select Update or Commit from Tortoise and it's done. How can you be more seamless than

Problem with pattern attribute on cfinput

2007-06-27 Thread Michael Beins
I am using a regular expression to validate a field for alpha characters only and spaces. (pattern=[A-Za-z\s]+ If I type leadership1, that will not pass and I will get the prompt that there is an error. If I type L1, I get the prompt that there is an error. However if I type Leasdership1,

RE: CF Editor

2007-06-27 Thread Dave Watts
It's not mudslinging...it's my opinion of their rather rude responses to error reporting. While I'm not a fan of rude behavior, imagine that you're on the Eclipse project yourself. You're not getting paid, of course, and you're getting all these questions about why people can't unzip Eclipse

Re: Adobe Keynote

2007-06-27 Thread Greg Luce
Published? Link us? Greg On 6/27/07, Rick Root [EMAIL PROTECTED] wrote: Ben just told us that event gateways will most likely be part of CF Standard. Nothing else we heard today was really new .. though they did publish some actual numbers on increased performance which were VERY

Re: help on dynamic position of fields in cfoutput for postal code

2007-06-27 Thread Tanjible Developer
This should do it for you. cfoutput query=test cfif position EQ 1 #CITY# #CODE# cfelse #CODE# #CITY# /cfif /cfoutput On 6/27/07, alex poyaoan [EMAIL PROTECTED] wrote: HI everybody... need help on how to position the postal code on either left or right of the city depending on the given

Problem with pattern attribute on cfinput

2007-06-27 Thread Michael Beins
I am using a regular expression to validate a field for alpha characters only and spaces. (pattern=[A-Za-z\s]+ If I type leadership1, that will not pass and I will get the prompt that there is an error. If I type L1, I get the prompt that there is an error. However if I type Leasdership1,

Re: CF Editor

2007-06-27 Thread Greg Luce
Alright, this thread got me to open CFE back up after more than a week. Like I said earlier, is there a licensing problem with Brian setting up Eclipse how he does with all his bells and whistles and releasing it as the Brian Kotek Signature Edition or something? Greg On 6/27/07, Dave Watts

Re: CF Editor

2007-06-27 Thread Charlie Griefer
as he said... he's using a specific plugin that's commercial. so, yeah :) On 6/27/07, Greg Luce [EMAIL PROTECTED] wrote: Alright, this thread got me to open CFE back up after more than a week. Like I said earlier, is there a licensing problem with Brian setting up Eclipse how he does with all

RE: help on dynamic position of fields in cfoutput for postal code

2007-06-27 Thread Bobby Hartsfield
cfoutput query=test cfif position is 1 #CITY# #CODE# cfelse #CODE# #CITY# /cfif /cfoutput ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: alex poyaoan [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 27, 2007 9:15 AM To:

RE: Adobe Keynote

2007-06-27 Thread Damien McKenna
-Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 27, 2007 9:47 AM Subject: Adobe Keynote Ben just told us that event gateways will most likely be part of CF Standard. Unrestricted? Nothing else we heard today was really new .. though they did

Re: css in blog layout

2007-06-27 Thread Josh Nathanson
It looks great in FireFox and people have told me that in IE7 it looks ok as well. In IE6 however (i know..haha) the navigation menu and the right menu is all screwed up. Dan, this happens when the main content area is too wide. Because it's all css, it will either overlap columns or push

help on dynamic position of fields in cfoutput for postal code

2007-06-27 Thread alex poyaoan
HI everybody... need help on how to position the postal code on either left or right of the city depending on the given value.. have this table CITY CODE POSITION CITYA 001001 CITYB 12 IF POSITION IS 1 THE CODE SHOULD BE ON THE RIGHT OF THE CITY cfoutput

Re: SQL Help, please ...

2007-06-27 Thread Jochem van Dieten
[EMAIL PROTECTED] wrote: HostName, iDate, Package client1, 2007-06-01, Update1 client1, 2007-06-01, Update2 client1, 2007-06-01, Update3 client1, 2007-06-02, Update5 client1, 2007-06-02, NewApp client2, 2007-06-01, Update1 client2, 2007-06-01, Update2 client2, 2007-06-01, Update3

SOT: Ajax Rain: Showcase of Awesome Ajax Controls

2007-06-27 Thread Rey Bango
I came across a great link today on DZone.com for Ajax Rain (http://www.ajaxrain.com). It has one of the best lists of Ajax widgets and controls I've ever seen. It includes controls from almost every lib including jQuery, Prototype, YUI, Ext MooTools. So for all of those using mxAjax,

RE: CF Editor

2007-06-27 Thread Bobby Hartsfield
I think this all started out as a civil conversation of opinions but you seem to be becoming increasingly irate... what with 'dealing' with people and all... maybe this thread has ran its course. I know you (and others) taught me a few new things about CFE that I didn't know so thanks for that.

RE: Adobe Keynote

2007-06-27 Thread Che Vilnonis
Here ya go... http://www.forta.com/blog/index.cfm?mode=entryentry=6DC727BD-3048-80A9-EF7E 611248F6934A -Original Message- From: Greg Luce [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 27, 2007 11:10 AM To: CF-Talk Subject: Re: Adobe Keynote Published? Link us? Greg On 6/27/07, Rick

Easy-to-develop recurring billing?

2007-06-27 Thread Matt Robertson
Whats the easiest gateway to deal with (as in program a solution for... preferably something with a tag already developed) with respect to setting up recurring payments? Ideally it would support monthly and weekly open-ended. It would also have to support single transactions. Anyone have a

Re: CF Editor

2007-06-27 Thread Claude Schneegans
- free As far as CF STudio has been paid years ago, it is as free for me as any other free tool. - still being actively developed (new features/functionality/plugins) with new things that I do not need anyway... - plethora of plugins (xml, css, javascript, etc) which I do not

RE: Adobe Keynote

2007-06-27 Thread Jason Manaigre
http://www.forta.com/blog/index.cfm/2007/6/27/ColdFusion-8-Performance-N umbers Has the Data... -Original Message- From: Greg Luce [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 27, 2007 10:10 AM To: CF-Talk Subject: Re: Adobe Keynote Published? Link us? Greg On 6/27/07, Rick Root

Re: CF Editor

2007-06-27 Thread Mary Jo Sminkey
Come on now. If you are seriously saying you can't use CFEclipse because you don't have enough RAM, I have to point out that you can buy a 2Gb stick of DDR2 400 RAM for $68. That's nice if it's what your system uses...the sticks my Dell Dimension uses are ridiculously expensive...Dell charges

Re: CF Editor

2007-06-27 Thread Dinner
Not to mention mylar, and whatnot... having bug reports and tasks linked right into the bug reporting/project website intelligent targeting of stuff you're going to edit... These things are becoming development AIs, ya know? Sweet... On 6/27/07, Dinner [EMAIL PROTECTED] wrote:

Re: CF Editor

2007-06-27 Thread Dinner
TortoiseSVN, while quite awesome, does NOT compare to the level of integration Subclipse offers. Not even close. There is so much more, I won't even go into the list, but it's WAY different than using HomeSite or DW and tortoise. Clicking on an incomming or outgoing change, and getting a

Re: CF Editor

2007-06-27 Thread Aaron Rouse
That really is the best thing to say because everyone is different in what they like to work with. I personally use DW8 all day long, could not even tell you how to use any WYSIWYG features in it and really do not use it any different than I used Studio/Homesite. I simply made the change because

Re: css in blog layout

2007-06-27 Thread Dan Vega
Josh, I agree that thats why it usually happens. This happend before the google docs post went up. To check this issue I made the right menu 100px instead of the 210px it is now and I still had the problem. Also with the navigation I found something out. If I change the li a below and take away

Default Value for Select box - Very Urgent!!!

2007-06-27 Thread Devi r
Hi All, I'm populating the select box using cfquery. I want a particular value to be selected as default. How can i do that?? It's very urgent. Please help me!!! ~| Create robust enterprise, web RIAs. Upgrade integrate Adobe

Re: Default Value for Select box - Very Urgent!!!

2007-06-27 Thread Charlie Griefer
why are all of your questions very urgent!!!? cfloop query=foo option value=#foo.id#cfif condition selected=selected/cfif#foo.data#/option /cfloop it's up to you to determine what condition is, since you didn't specify. On 6/27/07, Devi r [EMAIL PROTECTED] wrote: Hi All, I'm populating

Re: CF Editor

2007-06-27 Thread Doug Bezona
On 6/27/07, Dinner [EMAIL PROTECTED] wrote: Not to mention mylar, Mylar (now called Mylyn) is amazing. The webinar linked at the top of this page: http://www.eclipse.org/mylyn/start.php, is worth spending the time to watch if you want to get it fairly quickly. Yes, it'a an hour long, but about

Re: css in blog layout

2007-06-27 Thread Dan Vega
Update The navigation issue has been fixed. For some reason putting the following structure all on 1 line. I am not quite sure why that happens. Now I just need to fix the menu and Im all good! ul li/li li/li li/li /ul On 6/27/07, Dan Vega [EMAIL PROTECTED] wrote: Josh, I agree

Re: css in blog layout

2007-06-27 Thread Dan Vega
Josh, You were right, it wasnt just the width though, it was the darn box model error in IE with margins and padding, thanks for the help. On 6/27/07, Dan Vega [EMAIL PROTECTED] wrote: Update The navigation issue has been fixed. For some reason putting the following structure all on 1 line.

Re: Easy-to-develop recurring billing?

2007-06-27 Thread Irvin Gomez
Authorize.net. There are several tags for it. Whats the easiest gateway to deal with (as in program a solution for... preferably something with a tag already developed) with respect to setting up recurring payments? Ideally it would support monthly and weekly open-ended. It would also have to

Code for reoccurring events

2007-06-27 Thread Jerome Huff
I am looking for code to input data, similar to the way outlook accepts input for reoccurring events, anyone know of any thing close? ~| CF 8 – Scorpio beta now available, easily build great internet experiences – Try it

Re: CF Editor

2007-06-27 Thread Robertson-Ravo, Neil (RX)
I am still aghast at how anyone can say Eclipse is hard/complicated to use ? It's just an editor in all reality. Is it the wealth of extra options etc? Is it using outside of a comfort zone? This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN,

Re: Default Value for Select box - Very Urgent!!!

2007-06-27 Thread Will Tomlinson
Hi All, I'm populating the select box using cfquery. I want a particular value to be selected as default. How can i do that?? It's very urgent. Please help me!!! Are you using cfselect? If so, it has an attribute called selected. cfselect name=thename query=thequery selected=#somevalue#

RE: Default Value for Select box - Very Urgent!!!

2007-06-27 Thread Bobby Hartsfield
Disregarding how annoying the recent omg omg it's urgent trend is... try this. cfset defaultvalue=whatever / select name=myselect size=1 cfloop query=myquery option value=#valuecolumn#cfifvaluecolumn is defaultvalue selected/cfif#disaplycolumn#/option /cfloop /select

RE: CF Editor

2007-06-27 Thread Russ
-Original Message- From: Mary Jo Sminkey [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 27, 2007 12:51 PM To: CF-Talk Subject: Re: CF Editor Come on now. If you are seriously saying you can't use CFEclipse because you don't have enough RAM, I have to point out that you can buy a

Using LylaCaptcha 0.1 alpha

2007-06-27 Thread Walter Conti
I need to refresh the captcha image remotely (Spry.Utils.loadURL(...)) Thank you for samples, hints. ~| Upgrade to Adobe ColdFusion MX7 The most significant release in over 10 years. Upgrade see new features.

RE: Easy-to-develop recurring billing?

2007-06-27 Thread Rob O'Brien
Payflowpro is a good service that I used for an eCommerce solution a few years back. There's a CF tag floating around out there somewhere. PayPal also offers a good SDK for CF7 that I've implemented to the point of a fully-operational demo, but haven't put it into production yet. It's on my

Query of Query with dates

2007-06-27 Thread Jim McAtee
Using ColdFusion5. Is there a secret to working with dates in a query of a query? I keep getting zero rows from any date comparision I do in a WHERE clause. ~| ColdFusion MX7 and Flex 2 Build sales marketing dashboard

RE: Easy-to-develop recurring billing?

2007-06-27 Thread Bobby Hartsfield
Ive only used payflowpro and verisign for this. It was ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 27, 2007 1:59 PM To: CF-Talk Subject: Easy-to-develop recurring

Re: CF Editor

2007-06-27 Thread Jochem van Dieten
Eric Roberts wrote: It's not mudslinging...it's my opinion of their rather rude responses to error reporting. I dare say that not only the response is far from rude, but also that the 'bad attitude' you claimed originally is in fact extremely professional. Not to mention that you make an

Re: CF Editor

2007-06-27 Thread Jochem van Dieten
Greg Luce wrote: Why doesn't someone who's climbed the learning curve and HAS configured all these hundreds of things, and installed all the plugins just release/distribute their build? In my case: because it is a product. Together with configuration, documentation and training in SVN, Ant,

Re: Easy-to-develop recurring billing?

2007-06-27 Thread Matt Robertson
On 6/27/07, Irvin Gomez [EMAIL PROTECTED] wrote: Authorize.net. There are several tags for it. Actually thats not correct unless I have been unable to find something that is hiding. Single billings are typically managed thru Auth.net's AIM interface. And for that there are indeed several tags

reading page dimensions with activepdf

2007-06-27 Thread Judah McAuley
We are currently using ActivePDF Toolkit version 4 for a small pdf-related need. The function currently reads in an existing pdf, adds some text to it, then writes it out to a new file. I need to make a slight change to the process and for it to work, I need to be able to get the page height

Re: CF Editor

2007-06-27 Thread Jochem van Dieten
Eric Roberts wrote: I wasn't referring to Mark at all...that was directed at the people responding to bug reports for Eclipse. Instead of basically telling everyone with Vista they are SOL because the zipping protocol they use or something within how they zip their files doesn't work in

Re: CF Editor

2007-06-27 Thread Mary Jo Sminkey
What kind of system are you using? Even server type systems with ECC and FBDIMM don't cost that much, AFAIK. Here's the link to the Dell page for the 512MB memory for my system. I'd certainly love to know if there is a reasonable alternative to it, it does indeed seem ridiculously high-priced

Re: CF Editor

2007-06-27 Thread Robertson-Ravo, Neil (RX)
Yeah, but EX5.5 is defunk now, I mean didn't support stop on this like 2 or so years ago? This e-mail is from Reed Exhibitions (Gateway House, 28 The Quadrant, Richmond, Surrey, TW9 1DN, United Kingdom), a division of Reed Business, Registered in England, Number 678540. It contains

Re: Easy-to-develop recurring billing?

2007-06-27 Thread Mary Jo Sminkey
Authorize.net. There are several tags for it. Problem is, you have to manually set recurring billing up through your merchant area, there is no API to do it. There are really two ways to do recurring billing through the application, use a gateway that supports it through an API (PaymentOnline

Re: CF Editor

2007-06-27 Thread Doug Bezona
http://www.newegg.com/Product/Product.aspx?Item=N82E16820147005 Still surprisingly expensive ($224), but half of Dell's price. On 6/27/07, Mary Jo Sminkey [EMAIL PROTECTED] wrote: What kind of system are you using? Even server type systems with ECC and FBDIMM don't cost that much, AFAIK.

CFFTP

2007-06-27 Thread Chad Gray
Does any one have code or suggestions on using CFFTP to check an FTP server to see if a file exists on the FTP server? ~| Create Web Applications With ColdFusion MX7 Flex 2. Build powerful, scalable RIAs. Free Trial

Re: Easy-to-develop recurring billing?

2007-06-27 Thread Josh Nathanson
Authorize.net. There are several tags for it. Are there tags for recurring billing, or just the regular one-time authorization? I know the Authorize.net API for recurring billing just debuted a couple of months ago (they were horribly slow in putting it together), so I'd be surprised if

Re: CF Editor

2007-06-27 Thread Brian Kotek
I can't Greg, but as I said, if you think it would be helpful I'd be happy to record some Connect presentations on using various things. Also, did you see my link to the CFEclipse TV videos that Mark put up? On 6/27/07, Greg Luce [EMAIL PROTECTED] wrote: Alright, this thread got me to open CFE

RE: Easy-to-develop recurring billing?

2007-06-27 Thread Bobby Hartsfield
pretty easy ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 27, 2007 4:59 PM To: CF-Talk Subject: RE: Easy-to-develop recurring billing? Ive only used payflowpro

Meeting Reservation System

2007-06-27 Thread Eric J. Hoffman
Does one exist in CF? I have googled, and checked CFTagStore, but not seen much. Before I go hire out to get it built, I just wanted to check so we don't reinvent the wheel. Thanks for any pointers. Eric J. Hoffman Managing Partner

RE: CF Editor

2007-06-27 Thread Eric Roberts
I think the point was that it doesn't go seamless I the editor...that is one of the good sides of Eclipse...the subclipse plugin is great. I think your issue with it, though, goes along with what I had to say about dependancies. If a software package requires something tat may not be present,

  1   2   >