CFCHART

2008-12-22 Thread Khaled SAIDI
Hi everybody, I run Coldfusion 6.1 and i would like to know if it is possible in the same graph, to mix stacked and cluster display ? Thanx a lot for your help. Khaled ~| Adobe® ColdFusion® 8 software 8 is the most

Re: Slight OT: User-defined autocomplete in DW CS4?

2008-12-22 Thread Casey Dougall
On Sun, Dec 21, 2008 at 1:56 PM, Pete Ruckelshaus pruckelsh...@gmail.comwrote: After a decade of Homesite/CF Studio use, I'm slowly getting used to Dreamweaver CS4. One of the annoyances that I'd like to fix is how to create autocompletion for comment tags, CF comments only would be fine,

RE: Slight OT: User-defined autocomplete in DW CS4?

2008-12-22 Thread Dawson, Michael
I'm not sure how you could do this as DW looks for or / when closing tags. I have a wrapping snippet that inserts !---|--- when I press Ctrl+Shift+M. You might could probably script something using DW's API, but how would DW know you are closing a comment or just typing a hyphen? Mike

Re: Slight OT: User-defined autocomplete in DW CS4?

2008-12-22 Thread Pete Ruckelshaus
Well, if it would just type the closing comment as soon as I hit the space after the opening comment, I'd be happy. On Mon, Dec 22, 2008 at 9:19 AM, Dawson, Michael m...@evansville.edu wrote: I'm not sure how you could do this as DW looks for or / when closing tags. I have a wrapping snippet

Re: Slight OT: User-defined autocomplete in DW CS4?

2008-12-22 Thread Casey Dougall
On Mon, Dec 22, 2008 at 9:43 AM, Pete Ruckelshaus pruckelsh...@gmail.comwrote: Well, if it would just type the closing comment as soon as I hit the space after the opening comment, I'd be happy. Snippets are quicker. Ctrl+Shift+M. is less typing than !---

Re: Slight OT: User-defined autocomplete in DW CS4?

2008-12-22 Thread Pete Ruckelshaus
But after 10 years of coding CF, one is habit, the other isn't. On Mon, Dec 22, 2008 at 9:46 AM, Casey Dougall ca...@uberwebsitesolutions.com wrote: On Mon, Dec 22, 2008 at 9:43 AM, Pete Ruckelshaus pruckelsh...@gmail.comwrote: Well, if it would just type the closing comment as soon as I hit

Re: Slight OT: User-defined autocomplete in DW CS4?

2008-12-22 Thread Massimo Foti
Help Extending Dreamweaver Customizing Code view Code Hints This is for CS 3, CS 4 works the same as far as I know: http://livedocs.adobe.com/en_US/Dreamweaver/9.0_Extending/help.html?content=dwr_customizing_code_cc_02.html Massimo Foti, web-programmer for hire

Re: SQL2K, CFMX7, Bulk Insert XML

2008-12-22 Thread Michael Grant
XML is supported in SQL2K via the SQLXML install. I couldn't get this to work via the cfquery so I did it in a round about way. I created a .vbs file and then use cfexecute to run cscript.exe and pass the path of the .vbs file to it and it works like a charm. If anyone knows how to actually do

Re: ColdFusion 8 trial/developer edition download

2008-12-22 Thread J.J. Merrick
I think the download is served up via Akamai which in itself geo-centric. So it will find where you are at and deliver it accordingly. J.J. On Sun, Dec 21, 2008 at 6:24 PM, Don L do...@yahoo.com wrote: Since the file is huge (374.8MB) and CF8 is reasonably hot and probably the server is

Re: SQL2K, CFMX7, Bulk Insert XML

2008-12-22 Thread Dave Watts
XML is supported in SQL2K via the SQLXML install. I couldn't get this to work via the cfquery so I did it in a round about way. I created a .vbs file and then use cfexecute to run cscript.exe and pass the path of the .vbs file to it and it works like a charm. If anyone knows how to

URL's - one more time! Don't want to see the extension...

2008-12-22 Thread Les Mizzell
While I have no problem writing/decoding URLS like: mysite.com/staff.cfm/mary_smith I need a way to take it one step further. I don't want to see the .cfm extension at all: mysite.com/staff/mary_smith Can anybody point me in the right direction, or is this not a practical thing to do? (Client

Re: URL's - one more time! Don't want to see the extension...

2008-12-22 Thread J.J. Merrick
Mod_rewrite is your friend! If you are on apache then mod_rewrite. If not then there are a couple of solutions using ISAPI on IIS. http://letmegooglethatforyou.com/?q=mod_rewrite+IIS -J.J On Mon, Dec 22, 2008 at 10:32 AM, Les Mizzell lesm...@bellsouth.net wrote: While I have no problem

Re: URL's - one more time! Don't want to see the extension...

2008-12-22 Thread Justin Scott
Les Mizzell wrote: While I have no problem writing/decoding URLS like: mysite.com/staff.cfm/mary_smith I need a way to take it one step further. I don't want to see the .cfm extension at all: mysite.com/staff/mary_smith This can be done using several methods. My personal favorite is to

problem to diplay results horizontally

2008-12-22 Thread alex poyaoan
hi everybody I have this code and it works fine except that i want the results of year to display horizontally couldn't figure out how toit grouped on the title CFOUTPUT query=GetAll group=title #GetAll.title# cfoutput ul li #year# /li /ul /cfoutput /cfoutput with

Re: ColdFusion 8 trial/developer edition download

2008-12-22 Thread Don L
Interesting, good to know, thanks. I think the download is served up via Akamai which in itself geo-centric. So it will find where you are at and deliver it accordingly. J.J. OP omitted. ~| Adobe® ColdFusion® 8

Re: problem to diplay results horizontally

2008-12-22 Thread Don L
Well, list by design is in vertical order while table columns would be horizontal. hi everybody I have this code and it works fine except that i want the results of year to display horizontally couldn't figure out how toit grouped on the title CFOUTPUT query=GetAll group=title

Re: problem to diplay results horizontally

2008-12-22 Thread Greg Morphis
the element li display property is defaulted to block, try setting up some css, change the inline property of the li element to inline. I'm no css guru but that might get your started On Mon, Dec 22, 2008 at 11:57 AM, alex poyaoan ap.cli...@tiscali.it wrote: hi everybody I have this code and

Re: problem to diplay results horizontally

2008-12-22 Thread Greg Morphis
correction it's not default to block.. it's list-item... On Mon, Dec 22, 2008 at 12:05 PM, Greg Morphis gmorp...@gmail.com wrote: the element li display property is defaulted to block, try setting up some css, change the inline property of the li element to inline. I'm no css guru but that

Re: problem to diplay results horizontally

2008-12-22 Thread alex poyaoan
ok thanks will try that correction it's not default to block.. it's list-item... the element li display property is defaulted to block, try setting up some css, change the inline property of the li element to inline. I'm no css guru but that might get your started

RE: problem to diplay results horizontally

2008-12-22 Thread Robert Harrison
This should do what you want... cfset first=1 cfset lcount=0 cfloop query=GetAll group=title cfoutput cfif first eq 1#GetAll.title#cfset first eq 0p/cfif #year#nbsp;cfif lcount eq 8cfset lcount=0br //cfif cfset lcount=#lcount#+1/cfoutput /cfloop/p Robert B. Harrison

Re: problem to diplay results horizontally

2008-12-22 Thread Robert Bailey
Try this Always works for me ..ul{ margin: 0; padding: 0; cursor: default; list-style-type: none; display: inline; } ..li{ display: table-cell; position: relative; padding: 2px 6px; display:inline; } Thanks! Robert Bailey 210.748.2363

Re: problem to diplay results horizontally

2008-12-22 Thread Robert Bailey
And for the break, use the MOD operator and start your new list Thanks! Robert Bailey 210.748.2363 ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: problem to diplay results horizontally

2008-12-22 Thread Robert Bailey
should be Thanks! Robert Bailey 210.748.2363 Robert Bailey wrote: Try this Always works for me ..ul{ margin: 0; padding: 0; cursor: default; list-style-type: none; display: inline; } ..li{ display: table-cell; position: relative; padding: 2px

Re: problem to diplay results horizontally

2008-12-22 Thread alex poyaoan
Yes thanks got it and working fine with display: inline; Try this Always works for me .ul{ margin: 0; padding: 0; cursor: default; list-style-type: none; display: inline; } .li{ display: table-cell; position: relative; padding: 2px 6px; display:inline;

RE: Slight OT: User-defined autocomplete in DW CS4?

2008-12-22 Thread Andy Matthews
I'm struggling to do something with DW CS4 that's supposedly built in. I use jQuery for almost all of my projects and it's supposed to have code hinting for jQuery built in. I can't find any reference to how this works. Is it automatic? Do I have to add jQuery to a list somewhere? andy

Re: Slight OT: User-defined autocomplete in DW CS4?

2008-12-22 Thread Dave Watts
I'm struggling to do something with DW CS4 that's supposedly built in. I use jQuery for almost all of my projects and it's supposed to have code hinting for jQuery built in. I can't find any reference to how this works. Is it automatic? Do I have to add jQuery to a list somewhere?

Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Les Mizzell
Looking for advice ... Currently have FCKeditor implemented on the admin systems for most of our data-driven sites. There's one group in particular that is going to cut and paste *everything* from Word, and even with the cleanup features and stuff in FCK, this is still problematic for the

Re: Ranking questions in CFFORM

2008-12-22 Thread C S
I found some javascript, but am not sure how I can implement it into a CFFORM. I need twenty of these. Could anyone offer some advice on how I can either do a ranked selection box or how I might be able to implement this code? The javascript is hardcoded to work with a single selected

RE: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Rick Faircloth
Sorry, no answers, but a question... Do they refuse to use Notepad for their editor? Rick -Original Message- From: Les Mizzell [mailto:lesm...@bellsouth.net] Sent: Monday, December 22, 2008 2:18 PM To: cf-talk Subject: Rich Text Editor - what really handles cut'n paste from Word?

RE: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Dan G. Switzer, II
Les, There's one group in particular that is going to cut and paste *everything* from Word, and even with the cleanup features and stuff in FCK, this is still problematic for the client. Yea, I know, Word produces some of the gawd-awful bloated ... uhh, never mind - it's terrible. So, I'm

Re: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Les Mizzell
Do they refuse to use Notepad for their editor? Bunch of lawyers! You gotta be kidding! Believe me, I've been around and around with them on this issue for several *years* now! We bow at the table of Microsoft and shalt use WORD and nothing but WORD for all things written ... and you're not

Is Stored Proc that much of big deal?

2008-12-22 Thread Matthew Allen
I'm a programmer of 3 years now and only started coding in CF about a year ago whilst my database knowledge is not that great one marked difference (my very little experience anyway) from speaking to my CF colleagues is that most of them refuses to use stored procedure or even views, their main

Re: Is Stored Proc that much of big deal?

2008-12-22 Thread Dave Watts
I'm a programmer of 3 years now and only started coding in CF about a year ago whilst my database knowledge is not that great one marked difference (my very little experience anyway) from speaking to my CF colleagues is that most of them refuses to use stored procedure or even views,

FCKeditor and dynamic upload directory

2008-12-22 Thread Victor Moore
Hi, I need some advice.., I'm using cftextarea FCKeditor feature. CF version 8.01x I have modified the \FCKeditor\editor\filemanager\connectors\cfm\config.cfm file to modify the upload directory per user. The structure for the site is as follows: www.domain.com\site1

Re: Is Stored Proc that much of big deal?

2008-12-22 Thread Dave Watts
Yikes, I just dropped something on the send button prematurely. I'm a programmer of 3 years now and only started coding in CF about a year ago whilst my database knowledge is not that great one marked difference (my very little experience anyway) from speaking to my CF colleagues is that

Re: Is Stored Proc that much of big deal?

2008-12-22 Thread Ian Skinner
Matthew Allen wrote: Why not let database do what is was made for.am I missing something here? I suspect you are missing just how stubborn people can be in their ways. There are trade offs with using stored procedures, just as with any choice. But *not* using cfqueryparam... is not

RE: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Robert Harrison
Word is always an issue, but if you're using a form text field, here's a couple of CF Replace functions you can run strings through deal with Word characters. I've used this for awhile and it seems to deal very reliably with the most predictable crap that comes from word. This email may mess

RE: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Robert Harrison
All right... as I suspected the characters got replaced in the email... so I put it in a WORD DOCUMENT (ironic). Go to: http://www.austin-williams.com/word_character_parsing.doc and download that file. There are a couple of strings that will parse most WORD docs successfully enough. Just

Re: Is Stored Proc that much of big deal?

2008-12-22 Thread Matthew Allen
But you should know that those developers are full of crap about stored procedures being an old way of doing things. I absolutely agree with you, we are best of mates but really don't listen to them as far as database issues are concerned, as 80% of their websites suffered massive injection

Re: Is Stored Proc that much of big deal?

2008-12-22 Thread Matthew Allen
Thanks Ian and Dave, it was my guess that these guys were just been really stubborn, though more experienced than myself, it seems they are set in their ways. My understanding of SQL/Oracle Dbases is that you can use them to create extra layers of security, like for example restricting

Report Builder aggravation

2008-12-22 Thread Kirk Otto
I developed a report using CFRB, and designed it on my local host (desktop). It's fine when I look at it locally, and shows up on screen, and when printed in the Portrait orientation. I take that same file, move it over to our production server, and both on screen and printed are coming out

Re: Is Stored Proc that much of big deal?

2008-12-22 Thread Judah McAuley
I will also add that there is a not insignificant movement toward using ORMs for the database access layer. In that model, most all of the sql is abstracted out for you and when you do write sql, it's using a language specific to the ORM. We've got some .net guys at my office who are using

Re: Is Stored Proc that much of big deal?

2008-12-22 Thread Dave Watts
My understanding of SQL/Oracle Dbases is that you can use them to create extra layers of security, like for example restricting user-level access to objects within the database itself, All of that can be true, if you actually bother to do it. That's one of the reasons I prefer stored

RE: Slight OT: User-defined autocomplete in DW CS4?

2008-12-22 Thread Andy Matthews
Thanks Dave. -Original Message- From: Dave Watts [mailto:dwa...@figleaf.com] Sent: Monday, December 22, 2008 1:14 PM To: cf-talk Subject: Re: Slight OT: User-defined autocomplete in DW CS4? I'm struggling to do something with DW CS4 that's supposedly built in. I use jQuery for

Re: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Claude Schneegans
Bunch of lawyers! Tell'm you'll sue them if they import garbage in your system! ;-) ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Claude Schneegans
What do you folks have experience with that might be worth looking at? It was quite a while ago, but I found there was too many flaws the way FCK was designed. 1. FCK only had Word cleanup as an option. If the user doen't use it, you will get all the garbage anyway. 2. all other ways to import

Re: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Claude Schneegans
And here is the second part: //clean up H tags html = html.replace( /H1([^]*)/gi, 'H1' ) ; html = html.replace( /H2([^]*)/gi, 'H2' ) ; html = html.replace( /H3([^]*)/gi, 'H3' ) ; html = html.replace( /H4([^]*)/gi, 'H4' ) ; html = html.replace( /H5([^]*)/gi, 'H5' ) ;

Re: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Azadi Saryev
i use TinyMCE, and it handles pasting from Word very well - one just has to use the Paste from Word button, iirc... it quiet easy to set up and is highly customisable/configurable. http://tinymce.moxiecode.com/ Azadi Saryev Sabai-dee.com http://www.sabai-dee.com/ Les Mizzell wrote: Looking

Oracle Clob support?

2008-12-22 Thread Matthew Levine
Does anyone have any experience storing more than 4000 Chars of information in an oracle clob table field? I'm using the Oracle thin client with Oracle Express and CF8. Any help would be greatly appreciated. Thanks, Matt Levine

Re: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Claude Schneegans
one just has to use the Paste from Word button That's the trouble: nobody uses this button ;-) Users use cut'n paste, drag'n drop, whatever they can, except this strange button they don't know about. ~| Adobe® ColdFusion® 8

RE: Oracle Clob support?

2008-12-22 Thread Chuck
I believe that OracleXE will only allow a LOB (CLOB or BLOB) to be 32k instead of the 4Gb you get with the purchased version. I'm sure this is not what you wanted to hear, but I think that is the problem you are experiencing. Chuck

Re: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Azadi Saryev
iirc, you can customise TinyMCE in such a way that the Word cleanup is run automatiaclly on Ctrl+V and Paste button click... it's just that i have set it up such a long time ago that i can't recall the exact setting i used - i never had to change them since... Azadi Saryev Sabai-dee.com

Re: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Les Mizzell
Azadi Saryev wrote: i use TinyMCE, and it handles pasting from Word very well I started the site in question with TinyMCE, and then moved to FCKedit upon client request. This is a hard to please client - so nothing short of Microsoft releasing a inline web version of Word (gawd forbid!) is

Re: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Dave Watts
They develop their docs in Word, and they darned well better look EXACTLY LIKE IT DID IN WORD after they cut'n paste into their web pages - withoug them having to do any additionaly work. Maybe you should consider another approach. If someone needs exact layout of desktop documents, that's

Re: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Jochem van Dieten
On Mon, Dec 22, 2008 at 8:18 PM, Les Mizzell wrote: There's one group in particular that is going to cut and paste *everything* from Word, and even with the cleanup features and stuff in FCK, this is still problematic for the client. Yea, I know, Word produces some of the gawd-awful bloated

Re: Rich Text Editor - what really handles cut'n paste from Word?

2008-12-22 Thread Mike Kear
You can completely customise the toolbars on FCKEditor. You can replace the generic pastefunction with Paste from word so if they always just paste, they'll get paste from wordanyway.Or you could change the buttons used so the paste from wordbutton has the generic pastebutton instead. And

Re: CF Job Market

2008-12-22 Thread Adam Reynolds
Or better still learn Flex/Air. Look at upcoming technologies where the number of skilled individuals is low. Don't go down the I'll learn Java route because honestly you need 3+ years commercial experience. Ravi Gehlot wrote: Dave, As we all know the economy is not doing so well. It

Re: CF Job Market

2008-12-22 Thread Ravi Gehlot
Hello Adam, I couldn't agree more with you. Ravi. Adam Reynolds wrote: Or better still learn Flex/Air. Look at upcoming technologies where the number of skilled individuals is low. Don't go down the I'll learn Java route because honestly you need 3+ years commercial experience.

Re: CF Job Market

2008-12-22 Thread Justin Scott
Adam Reynolds wrote: Or better still learn Flex/Air. Look at upcoming technologies where the number of skilled individuals is low. Don't go down the I'll learn Java route because honestly you need 3+ years commercial experience. You could say that about almost any skilled position in many

Re: On line project site

2008-12-22 Thread Ennio Bozzetti
Never... I did try once and they wanted to pay me around $200 for a project over $1000 On Dec 22, 2008 7:11 PM, Jenny jenn...@jennysplace.org wrote: Has anyone had success, or otherwise, with sites such as Guru, Elance or oDesk? Jenny

Best ways to find projects

2008-12-22 Thread Jenny
Having seen replies as expected regarding on line project sites, I'd be interested in hearing about everyone's most popular/successful way of finding projects. I currently get some work through my web site www.fasttrackonline.co.uk, but not nearly as much as i would like to see. Traffic to my

Re: On line project site

2008-12-22 Thread Scott Stewart
I was on there for a bit, but kept getting out bid by someone who'll do it for $5.00/hr. Jenny wrote: Has anyone had success, or otherwise, with sites such as Guru, Elance or oDesk? Jenny ~| Adobe® ColdFusion® 8

Re: On line project site

2008-12-22 Thread C. Hatton Humphrey
I got one project on Rent-a-Coder that was less than encouraging. Maybe it was my lack of experience in managing client expectations at the time or maybe it was what this particular client had dealt with (and gotten away with) in the past but I ended up terminating the project before completion.

RE: On line project site

2008-12-22 Thread Dave Phillips
Guru.com was good for me a few years ago. Some clients post projects looking for US only coders and therefore are willing to pay a normal hourly range. I picked up a client that I kept for about 2 years until she stopped doing the business. Dave -Original Message- From: C. Hatton

Re: Best ways to find projects

2008-12-22 Thread Ravi Gehlot
Jenny, There are many ways to attract potential clients/projects. But freelancing has its drawbacks as you might already know. I prefer a job over freelancing because I get benefits and a steady pay. But back to your question, in order for you to get more clients/projects you need to

Re: On line project site

2008-12-22 Thread Ravi Gehlot
Dave, True. I heard about Guru.com as well. I think Guru.com has more long-term projects with better opportunities for pay. But I was heard that it is hard to get work there. Ravi. Dave Phillips wrote: Guru.com was good for me a few years ago. Some clients post projects looking for US