cfhttp does not post zip files

2005-08-11 Thread Jonathon Adam
I am trying to post a .zip file to a server outside our firewall/environment, but the CFHTTP with POST doesn't post the file. The code does work with .txt and .xml files. In addition to testing .txt and ..xml files, I wrote a basic HTML POST form and was able to manually transfer the .zip file

RE: FORM scope into SESSION

2005-08-11 Thread Dave.Phillips
If it's truly a reference, and not a deep copy, then it should. I'm curious too... Dave -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 3:26 PM To: CF-Talk Subject: RE: FORM scope into SESSION Doing a cfdump var=#session# after the

Re: Open Lazlo vs. Flex

2005-08-11 Thread P T Withington
That seems to say to me that it is based on ECMA script (as is AS2) but deviates from it in a number of ways. Laszlo's scripting language is ECMAScript (not a proprietary language, as you stated in your original post). The 'deviations' you note are bugs. Bugs don't make a proprietary

Re: SOT: tr and style=border...

2005-08-11 Thread Charlie Griefer
the tr element doesn't accept a border property according to standards (according to http://www.w3.org/TR/REC-html40/struct/tables.html#edef-TR). The fact that IE allows it is an IE...feature :) I normally add the borders to td's (which necessitate that cellspacing be set to 0 on the table) On

Re: SOT: tr and style=border...

2005-08-11 Thread Barney Boisvert
TRs don't have a lot of things, because they're structure, not really displayed. If you want to deal with row groups, use TBODY instead; they'll accept pretty much everything. Or you can use a tr td CSS class, so you're assigning elements to the TDs inside the TRs: tr.myClass td { border-top:

cfchart and sub domains

2005-08-11 Thread Tony Weeg
hi there. i have a webserver www.navtrak.net and its our forward facing marketing server. we also have reports.navtrak.net that is essentially the same box, just a different directory elsewhere on the box and not under the same root. well... when we run cfchart tag's on pages under

Organazational Chart

2005-08-11 Thread Brian Polackoff
Does anyone know of a Coldfusion organizational chart; either application or custom tag, etc. I am looking to dynamically display an org chart and would rather not re-create the wheel. Any thoughts? Thanks, Brian R. Polackoff

Re: cfhttp does not post zip files

2005-08-11 Thread Jerry Johnson
you might need to specify the multipart attribute, to send the data as a multipart/form-date content-type. On 8/11/05, Jonathon Adam [EMAIL PROTECTED] wrote: I am trying to post a .zip file to a server outside our firewall/environment, but the CFHTTP with POST doesn't post the file. The code

RE: Organizational Chart

2005-08-11 Thread Ian Skinner
MS WORD? Sorry, but that is our current solution. The org chart is created in Visio exported to Word and we point a link at the word file. If you find something I would love to know about it. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA C code. C

CFMX Jrun updating question

2005-08-11 Thread Rey Bango
A friend asked me a question about patching CFMX that stumped me. I really wasn't sure what to tell him so I was hoping I'd get some good feedback here. On the MM site, there are patches for both CFMX 6.1 and JRun. If I install CFMX 6.1 or 7.0 Enterprise using the JRun option (as opposed to

RE: cfchart and sub domains

2005-08-11 Thread Ian Skinner
Would a virtual directory help here? That's what is in all our IIS websites, virtual directories so they all have a CFIDE directory. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA C code. C code run. Run code run. Please! - Cynthia Dunning

Re: FORM scope into SESSION

2005-08-11 Thread Asim Manzur
Thank you guys, I used cfset session.myForm = form and it works great. Thanks alot. Hi, What is the easiest way to take all the form variables (probably loop over) and put it on the session. or maybe put the whole form object into session something like that. I appriciate if someone

Re: cfchart and sub domains

2005-08-11 Thread Barney Boisvert
Add an alias/virtual directory to CFIDE on the 'reports' subdomain's virtual host. I'd personally recommend setting all your sites up that way, and just leaving CFIDE inside the CFMX install's web root. Makes for easier upgrades than if you move/copy the folder to somewhere else to make it web

Re: Error Handling for Apps

2005-08-11 Thread Ali Awan
Thanks Matt, That's an excellent tutorial you have on your site. Definitely something I would use for a site-wide error handler. But for now I'm good with an App-Wide error handler. Ali If you use a site-wide error handler, that does not mean you have to have one error handler for every site.

RE: FORM scope into SESSION

2005-08-11 Thread Ian Skinner
Asim You probably want that to be session.form = duplicate(form). Otherwise you will be losing the data once you leave the action page. And if you don't want the data to persist beyond this page why put it in session scope. -- Ian Skinner Web Programmer BloodSource

Re: SOT: tr and style=border...

2005-08-11 Thread Claude Schneegans
The fact that IE allows it is an IE...feature unless it is a bypass for an oversight in the standards ;-) -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL

Re: Organizational Chart

2005-08-11 Thread Jerry Johnson
Do you have examples/visuals of what you are looking for? What output format? (html, ascii text, svg, gif/jpg, etc) Browser based? Particular requirements? Dynamic or cached? (How fast does it need to be?) ~| Logware

Re: FORM scope into SESSION

2005-08-11 Thread Charlie Griefer
On 8/11/05, Asim Manzur [EMAIL PROTECTED] wrote: Thank you guys, I used cfset session.myForm = form and it works great. Thanks alot. Didn't we determine that that would NOT work great past the form's action page? Hi, What is the easiest way to take all the form variables (probably

RE: SOT: tr and style=border...

2005-08-11 Thread Dave.Phillips
It actually doesn't work in IE, so it's not even a feature there. so, to put a border around an entire 'row', I had to put left border on the first TD, right border on the last TD, and top and bottom on all of them. That seems kind of kludgey. Am I missing something? Is there an easier way

Re: Open Lazlo vs. Flex

2005-08-11 Thread Mike Chambers
ActionScript 2 is based on ECMA script. We didn't define ECMA script (at least not by ourselves, as we are currently on the working group). mike chambers [EMAIL PROTECTED] P T Withington wrote: AS2 is based on ECMAScript, but is a proprietary language because it is defined by Macromedia,

RE: Organizational Chart

2005-08-11 Thread Brian Polackoff
The requirements are quite open. Performance is not really an issue, to be brutally honest this application most likely will not be hit all that often. The output should either be in html, flash, jpg, etc., again quite open. We are looking to display this over our intranet. Dynamic is OK, like

Re: SOT: tr and style=border...

2005-08-11 Thread Barney Boisvert
use TBODY, like I said earlier, and just assign a border to the whole thing. That's the entire reason THEAD, TBODY, and TFOOT exist. Well, not for borders, but for managing groups of rows. cheers, barneyb On 8/11/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: It actually doesn't work in IE,

RE: SOT: tr and style=border...

2005-08-11 Thread Jason Radosevich
you probably could nest the tables, and style the nested table. The W3 validator will accept that. On Thu, 11 Aug 2005 15:05:07 -0500, Dave.Phillips wrote It actually doesn't work in IE, so it's not even a feature there. so, to put a border around an entire 'row', I had to put left border

RE: FORM scope into SESSION

2005-08-11 Thread Dave.Phillips
Asim, Use this (same thing I posted earlier, but seems to have been missed): CFLOCK SCOPE=session TYPE=exclusive TIMEOUT=10 CFSET session.MyForm = Duplicate(form) /CFLOCK Make sure you use the CFLOCK to avoid potential race conditions. If you leave it the way it is, you will open yourself

Re: cfhttp does not post zip files

2005-08-11 Thread Jonathon Adam
Thanks for the reply. If you are talking about something like this it didnt work. CFHTTP URL=https://xxx.xxx.xxx.xxx:7443/name/ocrservlet?encrstr=342j43kn234kii342342kbh3243; METHOD=POST ENCTYPE=multipart/form-data Additionally, I forgot to say that I tried CFHTTPPARAM TYPE=FILE NAME=F1

RE: SOT: tr and style=border...

2005-08-11 Thread Dave.Phillips
Thanks but TBODY doesn't allow a css border either. I still only see one way of doing it. Dave -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 4:11 PM To: CF-Talk Subject: Re: SOT: tr and style=border... use TBODY, like I said earlier,

RE: SOT: tr and style=border...

2005-08-11 Thread Dave.Phillips
Yes, but it's pretty sad I would have to do that. Although, that might be better than my previous solution. Thanks, Dave -Original Message- From: Jason Radosevich [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 4:12 PM To: CF-Talk Subject: RE: SOT: tr and style=border...

RE: SOT: tr and style=border...

2005-08-11 Thread Damien McKenna
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Thanks but TBODY doesn't allow a css border either. colgroup? -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include stdjoke.h

RE: SOT: tr and style=border...

2005-08-11 Thread Adrian Lynch
Am I missing something? Is there an easier way to accomplish that? Yes, get a pen and draw the border on your monitor :OD -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: 11 August 2005 21:05 To: CF-Talk Subject: RE: SOT: tr and style=border... It actually

RE: FORM scope into SESSION

2005-08-11 Thread Dawson, Michael
I wondered about that, too. Thanks for clarifying. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 2:18 PM To: CF-Talk Subject: RE: FORM scope into SESSION IIRC I ran into that vary problem. Session.form = form does indeed just create a

Re: cfchart and sub domains

2005-08-11 Thread Tony Weeg
hmmm that didnt work, unless i need to restart the box, and i cannot do that until tonight :( s'ok, ill try that tonight. later and thanks! tw On 8/11/05, Barney Boisvert [EMAIL PROTECTED] wrote: Add an alias/virtual directory to CFIDE on the 'reports' subdomain's virtual host. I'd

Re: Organizational Chart

2005-08-11 Thread Douglas Knudsen
we have one of these based on ASP. I can't recall who we got it from though, bought it a few years ago. It was not expensive and we got the source code even. I might be able to track it down, but you know how large corps are. FYI, in our company this is a hot tool. surprising, eh? DK On

Re: Organizational Chart

2005-08-11 Thread Jerry Johnson
Do you have visio? If so, it is easy to drive visio through data via sql server, and very easy to drive the data from cold fusion. On 8/11/05, Brian Polackoff [EMAIL PROTECTED] wrote: The requirements are quite open. Performance is not really an issue, to be brutally honest this application

Re: Best Rich Text Editor

2005-08-11 Thread Felipe Fernandes
Claude, Can I have a look at your html editor? Felipe On 8/11/05, Claude Schneegans [EMAIL PROTECTED] wrote: This is also a good way to avoid popup blocker blues. I solved this problem with a pop up enabled test on the admin login. If pop ups are not allowed, the user is sent to a page

RE: SOT: tr and style=border...

2005-08-11 Thread Dave.Phillips
Hah...with thousands of users that would keep me busy anyway.there's that job security again. And can you imagine the travel expense bill? Dave -Original Message- From: Adrian Lynch [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 4:32 PM To: CF-Talk Subject: RE: SOT: tr

Re: SOT: tr and style=border...

2005-08-11 Thread Barney Boisvert
Boy do I feel sheepish. ;) I was sure I'd done exactly that before, but you're right, it doesn't work at all. Here's a way that does work, at least in CSS2 browsers (which IE 6 isn't, unfortunately): html head style type=text/css tr#bordered td { border-top: 2px solid #f00;

Re: cfhttp does not post zip files

2005-08-11 Thread Jerry Johnson
If you look at the documentation for the cfhttp tag, it has a multipart attribute (not enctype, not mimetype). cfhttp ... multipart=yes That should get you there. On 8/11/05, Jonathon Adam [EMAIL PROTECTED] wrote: Thanks for the reply. If you are talking about something like this it didnt

Re: cfchart and sub domains

2005-08-11 Thread Douglas Knudsen
shouldn't need a restart for this. are both subdomains using the same CF instance? IIRC, the graphs are stored in the webroot/cfide/not under the CF servers cfide directory. This is changeable though in a xml file somewhere under cfusin/lib i think. DK On 8/11/05, Tony Weeg [EMAIL

RE: SOT: tr and style=border...

2005-08-11 Thread Ian Skinner
html head style type=text/css tr#bordered td { border-top: 2px solid #f00; border-bottom: 2px solid #f00; } tr#bordered td:first-child { border-left: 2px solid #f00; } tr#bordered td:last-child { border-right: 2px solid #f00; } /style /head body table tr id=bordered

RE: SOT: tr and style=border...

2005-08-11 Thread Dave.Phillips
Nope, unfortunately, it doesn't allow css border(s) in it's style element either (I tested it too). I think I'm convinced that someone messed up and left this out of the implementation. I'm sure I'm not the only person in the world who has a need to put a border around just one row (without

RE: SOT: tr and style=border...

2005-08-11 Thread Dave.Phillips
Well, thanks, but I'm designing purely for IE. In this case, I ended up doing this: html head style .FirstCell { border-left: 2px solid black; border-top: 2px solid black; border-bottom: 2px solid black;} .MiddleCell { border-top: 2px solid black; border-bottom: 2px solid black; }

RE: SOT: tr and style=border...

2005-08-11 Thread Damien McKenna
OK, stop scrolling the page, I have to wait for the white out solution to dry before I can draw any more lines. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include stdjoke.h -Original Message- From: [EMAIL

RE: SOT: tr and style=border...

2005-08-11 Thread Ian Skinner
Slight modification that gives you the same result with a bit less code. html head style tr.MiddleCell td{ border-top: 2px solid black; border-bottom: 2px solid black; } td.FirstCell { border-left: 2px solid black;} td.LastCell { border-right: 2px solid black;} /style /head body table

Faulting application jrun.exe faulting module jvm.dll .... what????????

2005-08-11 Thread Ryan Duckworth
We are having this problem on a Win 2003 Web Edition box running CF MX 6.1 updater 1 + hot fixes. It will simply post this message to the Application log and restart itself once every few days. Anyone else solve this problem or have any insights? Error Message: Faulting application jrun.exe,

Re: SOT: tr and style=border...

2005-08-11 Thread Barney Boisvert
By using a row class, you can avoid some duplication in the CSS, and the need for a 'middleCell' class. Still the same hackishness, but (at least to me) seems slightly cleaner. html head style type=text/css tr.bordered td { border-top: 2px solid #f00; border-bottom: 2px solid

Re: cfhttp does not post zip files

2005-08-11 Thread Jonathon Adam
Great info Jerry, thank you. I applied the extra attribute (which I dont see in the tag library) and received a different message: FILECONTENT Connection Failure HEADER MIMETYPE Unable to determine MIME type of file. RESPONSEHEADER STATUSCODE Connection Failure. Status code unavailable. Since

Re: Best Rich Text Editor

2005-08-11 Thread Matt Robertson
On 8/11/05, Claude Schneegans [EMAIL PROTECTED] wrote: or that because the Board of Directors wants to use Comic Sans in 96-pt Muave for their monthly report's page title that you can't accomodate them because only a bad system would allow such a thing... No, my point is that if the

Re: CFMX Jrun updating question

2005-08-11 Thread Adrocknaphobia
If you install CFMX6x you need to install the JRun Updater 5 patch. If you install CFMX7 JRun is already patched to updater 5. The JRun Updater 5 was released after CFMX but before CFMX7. Although, if in doubt, it shouldnt hurt at all to run the updater even if JRun is already updated. Same can

Re: Best Rich Text Editor

2005-08-11 Thread Barney Boisvert
User defined styles are totally the way to go. In our tool (CMS/DMS + other communications-related stuff), we expose both the ability to define entirely custom CSS, and a simple editor for creating classes with basic options (text styling, pretty much). It works really well. The system uses all

RE: SOT: tr and style=border...

2005-08-11 Thread Russ Michaels
Interesting, but in what situation what a TD exist where it's not inside a TR ? -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: 11 August 2005 20:42 To: CF-Talk Subject: Re: SOT: tr and style=border... TRs don't have a lot of things, because they're structure,

RE: Organizational Chart

2005-08-11 Thread Brian Polackoff
That would be great... let me know either way. Thanks, Brian R. Polackoff -Original Message- From: Douglas Knudsen [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 4:38 PM To: CF-Talk Subject: Re: Organizational Chart we have one of these based on ASP. I can't recall who we

RE: CFMX Jrun updating question

2005-08-11 Thread Russ Michaels
Not for enterprise. Only for J2EE/multi-server, which is running a FULL install of jrun. Russ -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: 11 August 2005 20:50 To: CF-Talk Subject: CFMX Jrun updating question A friend asked me a question about patching CFMX that

RE: Organizational Chart

2005-08-11 Thread Brian Polackoff
Yes, but not sure what version, I know it's an older one... Do you recall which version you are speaking of? In the mean time I will find out what version we have available. Thanks, Brian R. Polackoff -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED] Sent: Thursday,

Re: SOT: tr and style=border...

2005-08-11 Thread Barney Boisvert
Never in well formed markup. It's just often easier to reference all TDs by a common container, rather than individually. cheers, barneyb On 8/11/05, Russ Michaels [EMAIL PROTECTED] wrote: Interesting, but in what situation what a TD exist where it's not inside a TR ? -- Barney Boisvert

Re: CFMX Jrun updating question

2005-08-11 Thread Rey Bango
Thanks Adam! Much appreciated bud. Rey... Adrocknaphobia wrote: If you install CFMX6x you need to install the JRun Updater 5 patch. If you install CFMX7 JRun is already patched to updater 5. The JRun Updater 5 was released after CFMX but before CFMX7. Although, if in doubt, it shouldnt

RE: SOT: tr and style=border...

2005-08-11 Thread Ian Skinner
Here is the javaScript solution I spoke of. It gives IE similar behavior to CSS 2 compliant browsers. html head style type=text/css table { border-collapse: collapse; } tr#bordered td { border-top: 2px solid #f00; border-bottom: 2px solid #f00; } tr#bordered

Re: cfhttp does not post zip files

2005-08-11 Thread Jerry Johnson
I failed to ask the first, most obvious question. What version of CF? On 8/11/05, Jonathon Adam [EMAIL PROTECTED] wrote: Great info Jerry, thank you. I applied the extra attribute (which I dont see in the tag library) and received a different message:

Re: Organizational Chart

2005-08-11 Thread Jerry Johnson
I was doing it as far back as 1998, so it has been possible for a while. IIRC, it is an option when creating a new project (store as file or in database.) Of course, it might have been an option during install. I no longer have visio in my environment, so can't test. On 8/11/05, Brian Polackoff

Re: Best Rich Text Editor

2005-08-11 Thread Claude Schneegans
I have to say though that the latter is not a half bad idea. When i have some time (yeah right... free time) I'll look into adding that into my cms when I upgrade to FCKEditor 2.0 I have already made some work on that. It is not yet sufficiently client proof to be installed on a production

Re: Best Rich Text Editor

2005-08-11 Thread Claude Schneegans
Can I have a look at your html editor? It is only used on admin side on some of my sites. And since it is not (yet) a commercial product I sell with my tags, I have no sample public yet. I'll try to set up something and I'll let you know. -- ___ REUSE CODE!

Re: CF and Novell?

2005-08-11 Thread Antony Sideropoulos
What are you trying to achieve? Novell Directory Services (NDS) has an LDAP interface if you need one - like Active Directory. You can use an anonymous bind to query the directory, or I believe you can use credentials supplied by the user to confirm username and password. (I've used the first

Re: Open Lazlo vs. Flex

2005-08-11 Thread dave
(I'm not knocking the Flash player. It is an excellent piece of engineering.) could be why it's the single biggest plugin of all time, ya think? ~Dave the disruptor~ A criminal is a person with predatory instincts who has not sufficient capital to form a corporation.

Re: Open Lazlo vs. Flex

2005-08-11 Thread dave
humm, i have always heard the opposite and while laszlo has some cool things, it's still lagging IMO. I however have yet to see an example of a Flex application that rivals Laszlo I have yet to see a laszlo app outside of the examples that was anything eye catching at all or even user

Re: Open Lazlo vs. Flex

2005-08-11 Thread dave
All that being said John, here is my take. If I was going to build a scalable enterprise ria system I could: go with laszlo to try and save some money and hope to god I didn't have to purchase support and with using cfm or any language to feed the beast I would still have to add all the

RE: cfform file upload

2005-08-11 Thread dave
wow!! maybe that Malibu Barbie pc ya got there really does rock! ~Dave the disruptor~ A criminal is a person with predatory instincts who has not sufficient capital to form a corporation. From: Micha Schopman [EMAIL PROTECTED] Sent: Tuesday, August 09,

Re: Fusebox, Mach-II, GlueCode... the Oscar goes to...

2005-08-11 Thread Michel Deloux
Ok, ok. It depends. Other question: framework and speed dev are the same thing? Or not? I believe(my point of view) that using frameworks make development harder to code. I'm right? It's possible to separate 100% between M V C? Thanx MD 2005/8/11, Barney Boisvert [EMAIL PROTECTED]: Same

RE: Studio 8 announced

2005-08-11 Thread dave
would you like it to come with your name etched in gold on the cd and the box customized with your pic and have it hand delivered to your door and only include the features you want in it. And if they did and you had to pay more than a nickle for it you'd still bitch about it. It was funny

Re: Fusebox, Mach-II, GlueCode... the Oscar goes to...

2005-08-11 Thread Barney Boisvert
I didn't quite understand your question, but I'll try and answer anyway. ;) Frameworks are just pieces of code to help you do something in your code. Fusebox, Mach-II, and Model-Glue are all structure frameworks; they provide a skeleton from which to hang you application code, and take care of

Re: Fusebox, Mach-II, GlueCode... the Oscar goes to...

2005-08-11 Thread Michel Deloux
Thanks Barney. Percieved development speed is governed by the methodology, not a framework.. Really great! MD. 2005/8/11, Barney Boisvert [EMAIL PROTECTED]: I didn't quite understand your question, but I'll try and answer anyway. ;) Frameworks are just pieces of code to help you do

Re: Fusebox, Mach-II, GlueCode... the Oscar goes to...

2005-08-11 Thread Michel Deloux
Thanx Barney once more again for your patience in answer questions like that. MD 2005/8/11, Michel Deloux [EMAIL PROTECTED]: Thanks Barney. Percieved development speed is governed by the methodology, not a framework.. Really great! MD. 2005/8/11, Barney Boisvert [EMAIL PROTECTED]: I

Re: Fusebox, Mach-II, GlueCode... the Oscar goes to...

2005-08-11 Thread Barney Boisvert
I probably should have qualified that a little more. If I develop a thing from scratch, and just dive right into coding, it might take two weeks. If I spend time to gather requirements, spec it out, do a good design, and then implement it, it might take 2.5 weeks, and the coding will start after

RE: Studio 8 announced

2005-08-11 Thread Russ Michaels
Don't pick on cf developers. Eveyone else is the same, why do you think PHP has such a big community. Altho what does suck, is that no-one gives anything away for FREE in CF. Thus why we have millions of free PHP/ASP scripts and like 2 free cf scripts. There is only 1 free cf forum I know of, and

Re: Studio 8 announced

2005-08-11 Thread Paul Hastings
Russ Michaels wrote: Eveyone else is the same, why do you think PHP has such a big community. Altho what does suck, is that no-one gives anything away for FREE in CF. that's nonsense. ~| Logware (www.logware.us): a new and

Re: Studio 8 announced

2005-08-11 Thread Michael Bramwell
Between Macromedia live docs, HOF lists and a few other sites I think CF is fairly well covered. While it is sometimes helpful do you really need millions of free and mostly useless scripts, whether it be php,asp,js, or whatever. Michael B. - Original Message - From: Russ Michaels

Re: cfhttp does not post zip files

2005-08-11 Thread Jonathon Adam
CF 5 From: Jerry Johnson [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com To: CF-Talk cf-talk@houseoffusion.com Subject: Re: cfhttp does not post zip files Date: Thu, 11 Aug 2005 17:50:36 -0400 I failed to ask the first, most obvious question. What version of CF? On 8/11/05, Jonathon Adam

Passing html to cfformgroup labels?

2005-08-11 Thread Rick Schmitty
How can you pass either an ampersand or tags to the label attribute of a cfformgroup or cfinput? ie cfinput label=What is 2sup2;? or cfinput label=Do you emreally/em want to do that? Thanks for any input -Rick ~| Discover

Re: Dynamic Tree view in ColdFusion

2005-08-11 Thread simmyana a
client side widgetas our client is using CF5, we can't use recursive function to display any help would be appreciated Are you looking for a server control solution or a client side widget? Micha Schopman Project Manager Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377,

Sorting Struct

2005-08-11 Thread Brett Barnhart
I've been playing with this for awhile and I can't quite seem to get it to work. (Nothing new there!) I have a search page and I want to rate results with relevance to the search. So, I decided to loop through all the possible listings and place them into a struct Structs still confuse me a

Re: Dynamic Tree view in ColdFusion

2005-08-11 Thread Robert Munn
I built somthing like that in Flash using the Tree component and a scrollpane to display lists of files. Last time I looked at it, though, the Flash Tree component didn't support drag and drop, so I dropped it. Hi, I need the code to display the items in a dynamic tree view pattern

Re: Dynamic Tree view in ColdFusion

2005-08-11 Thread Paul Hastings
Robert Munn wrote: I built somthing like that in Flash using the Tree component and a scrollpane to display lists of files. Last time I looked at it, though, the Flash Tree component didn't support drag and drop, so I dropped it. not that i understand in the least bit *how* they did drag

Re: CFEclipse and FTP

2005-08-11 Thread Robertson-Ravo, Neil (RX)
You should be able to just Switch Workspace to get to different projects (if you want that setup) otherwise all projects are listed in the Same window so just need to expand that node - easier than DW. Also, note that Eclipse is the IDE and CFE is the plugin- it should be clear on what features

<    1   2