Re: CFC to check spam score BEFORE sent...

2007-10-30 Thread Jochem van Dieten
John Skrotzki wrote: I would like to install something on our server that will check an emails spam score What do you mean by email spam score? Jochem ~| Get involved in the latest ColdFusion discussions, product development

Re: Server performance problem since upgrading to CF8

2007-10-30 Thread Jochem van Dieten
Kevin Pompei wrote: Every since upgrading to CF8 I've been having a frustrating problem. After starting CF, it will run for a while (sometimes serveral hours, sometimes less than an hour) at about 1% - 3% in terms of processor load. (It's a 2 cpu - 4 core system.) Then, all of a sudden, the

Re: Access db interface

2007-10-30 Thread Jerry Barnes
I think aquadata studios used to connect to access. ~| Enterprise web applications, build robust, secure scalable apps today - Try it now ColdFusion Today ColdFusion 8 beta - Build next generation apps Archive:

Can this be done

2007-10-30 Thread Toby King
I am developing an application for a gym. On the home page of the application I am currently displaying details of personal training sessions which are in progress, and also thos sessions which are waiting to be started. Sessions in progress P/TrainerRoom # Start Time Finish

fixing a piece of code

2007-10-30 Thread Toby King
Hi there I have a 2 programs one which displays dual select boxes on the screen. A user click on a persons name in the left-hand selection box and move the name to the right-hand box and vice versa. A button is at the bottom of the screen and when the user presses the button the names in

RE: Adding custom functions to core

2007-10-30 Thread DURETTE, STEVEN J (ATTASIAIT)
I've always wanted to be able to do something like this also. Maybe someone should make a wish list item for a directory were we can put functions and they would be used as if they were part of the ColdFusion functions. Steve -Original Message- From: Larry Lyons [mailto:[EMAIL

RE: fixing a piece of code

2007-10-30 Thread Hareni Venkatramanan
Hi Toby, There is an extra #) in the insert query inside your cfloop tag. If you remove it, it should work fine. Thanks, Hareni Adobe CF team -Original Message- From: Toby King [mailto:[EMAIL PROTECTED] Sent: 30 October 2007 18:48 To: CF-Talk Subject: fixing a piece of code Hi there

RE: Datasource question

2007-10-30 Thread Billy Cox
So...should I go with the ODBC connection to Pervasive SQL or try to connect to Pervasive via linked server in SQL 2005 Express, or am I barking up the wrong tree? -Original Message- From: Billy Cox [mailto:[EMAIL PROTECTED] Sent: Monday, October 29, 2007 8:04 AM To: CF-Talk Subject:

RE: Can this be done

2007-10-30 Thread Bobby Hartsfield
Sounds like a good place for a little ajax magic. When you check a box, it'd be cool to update the status without leaving or refreshing the page. You could also use some ajax to have the remaining time update in real time as well. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield

RE: fixing a piece of code

2007-10-30 Thread Bobby Hartsfield
VALUES ('#q#', #form.girlwname#)#) You have an extra #) It should be... VALUES ('#q#', #form.girlwname#) But REALLY should be... VALUES (cfqueryparam cfsqltype=cf_sql_varchar value=#q# /, cfqueryparam cfsqltype=cf_sql_int value=#form.girlwname# /) If those datatypes are varchar and int (or

Re: Datasource question

2007-10-30 Thread Cutter (CFRelated)
Do they have a JDBC driver for Pervasive SQL? Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Billy Cox wrote: So...should I go with the ODBC connection to Pervasive SQL or try to

Re: Datasource question

2007-10-30 Thread Jochem van Dieten
Billy Cox wrote: So...should I go with the ODBC connection to Pervasive SQL or try to connect to Pervasive via linked server in SQL 2005 Express, or am I barking up the wrong tree? Depends on which Pervasive you are talking about. If you mean the one that started life as BTrieve I would try

RE: Datasource question

2007-10-30 Thread Billy Cox
This is the Pervasive formerly known as bTrieve. I am running the free edition of BlueDragon Server, so JDBC is not an option. Pervasive's ODBC driver seems to have a problem with transaction management or locking when doing inserts/updates so I am hoping that I can find a way around ODBC.

Re: CFGRID ajax loading icon

2007-10-30 Thread Asim .
I know this hack, I was wondering if there is a way to customize it through code. You can replace the loading.gif image in cfide/scripts/ajax/resources/cf/images with any image you like. ~| Check out the new features and

Re: fixing a piece of code

2007-10-30 Thread Peter Tanswell
OK - that made a difference I'm now getting the following: Variable GIRLS is undefined. The error occurred in *C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\gkpro\act_checkin.cfm: line 55* 53 : /CFQUERY 54 : *55 : cfloop list=#girls# index=q * 56 : cfquery

RE: Can this be done

2007-10-30 Thread Ben Nadel
Pete, I would look into jQuery for AJAX. It is rockin' simple: $( input.status ).click( function(){ var jCheckbox = $( this ); $.get( change_status.cfm, { id: jCheckbox.attr( id ) }, function(){ ... Callback ... } ); } ); .. Ben Nadel Certified Advanced ColdFusion MX7

Nice cf8 writeups on today's TechRepublic We Dev Zone alert

2007-10-30 Thread Jerry Johnson
http://nl.com.com/view_online_newsletter.jsp?list_id=e055 Kudos to Brian Kotek! Jerry Johnson ~| ColdFusion is delivering applications solutions at at top companies around the world in government. Find out how and where now

Re: Can this be done

2007-10-30 Thread Peter Tanswell
Yeah I had just been browsing a book on AJAX, but havent used it before so a liitle bit lost. Any suggestions or anywhere where I can get enough info to let me do this? Thanks in advance. On 10/30/07, Bobby Hartsfield [EMAIL PROTECTED] wrote: Sounds like a good place for a little ajax

Re: Can this be done

2007-10-30 Thread Cutter (CFRelated)
JQuery is your friend:) Something like this should work: script $(document).ready(function(){ // Here's a reference to our form var frm = $('form##testForm'); // Assign an onChange event handler

Dynamic Created xml and txt going into Flahs file

2007-10-30 Thread coldfusion . developer
Help, Why is my dyanamic text and png that are being imported into a Flash movie not showing up when printing. The dynamic text and png show up on the Web page, but not when I print. What the fudge? D ~| Download the

Re: Server performance problem since upgrading to CF8

2007-10-30 Thread Kevin Pompei
You're correct. One core is at 100%. On 10/29/07, James Holmes [EMAIL PROTECTED] wrote: On a four core system, a CPU pegged at 25% means one core is at 100%; CF has probably filled the JVM memory and is permanently garbage collecting. I agree with Dave - get FusionReactor and set a memory

Re: Server performance problem since upgrading to CF8

2007-10-30 Thread Kevin Pompei
Thanks Dave. I'll try this. On 10/29/07, Dave Watts [EMAIL PROTECTED] wrote: Anyone seen this, or have any ideas. BTW, I'm running the standard edition of CF so I don't have access to the server monitor. I suggest you invest in one of the other monitoring tools available - SeeFusion or

How do I bypass the missing template handler?

2007-10-30 Thread Phill B
I have a site that needs to bypass the missing template handler that is set up in CF8. What is them best way to go about this? Thanks -- Phil ~| Get the answers you are looking for on the ColdFusion Labs Forum direct from

RE: Server performance problem since upgrading to CF8

2007-10-30 Thread Mark A Kruger
That makes me think you should try a different GC... How about the concMarksweep GC? Theoretically it should handle scheduling across multiple procs better than the default parallel GC. Can you post your java args from the JVM.config file - and the general config of the server? -Mark

Alagad Affiliate Program - or - We'll pay you for leads

2007-10-30 Thread Doug Hughes
Hi, Please pardon the spam-like nature of this message. It's the only one like this I'll send to the list. I promise! Anyhow, I just wanted to let as many people as I can know about the Alagad Affiliate Program. This is a program where you can get paid for projects you refer to Alagad.

Re: fixing a piece of code

2007-10-30 Thread Charlie Griefer
On Oct 30, 2007 6:04 AM, Peter Tanswell [EMAIL PROTECTED] wrote: OK - that made a difference I'm now getting the following: Variable GIRLS is undefined. The error occurred in *C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\gkpro\act_checkin.cfm: line 55* 53 : /CFQUERY

RE: Access db interface

2007-10-30 Thread Scott Raley -ITC
says it requires CF8 and we are still on MX 7 -Original Message- From: Ryan Heldt [mailto:[EMAIL PROTECTED] Sent: Monday, October 29, 2007 5:10 PM To: CF-Talk Subject: RE: Access db interface Is this what you're looking for? http://cfdbexplorer.riaforge.org/ All you'd need to do is

RE: How do I bypass the missing template handler?

2007-10-30 Thread Russ
Use apache's mod_rewrite and redirect all the missing templates elsewhere. Russ -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 30, 2007 11:05 AM To: CF-Talk Subject: How do I bypass the missing template handler? I have a site that needs to

Re: fixing a piece of code

2007-10-30 Thread Jon Clausen
That's a common problem for men who spend too much time on their computer. :-) Seriously, though, The missing variable means you have failed to define it earlier in the template or didn't return it properly if you are using a CFC to take care of your business logic. From your previous

Re: Adding custom functions to core

2007-10-30 Thread Mike Chabot
What you are suggesting would be a nice feature. I cache certain global functions in the server scope or the application scope, which is fairly close to what you are trying to achieve. So throughout the application, I always have available server.fcn.X and application.fcn.Y, without having to

Re: How do I bypass the missing template handler?

2007-10-30 Thread Phill B
D'Oh! I should have said this is on a Win2k3 IIS6 server. Sorry On 10/30/07, Russ [EMAIL PROTECTED] wrote: Use apache's mod_rewrite and redirect all the missing templates elsewhere. Russ -Original Message- From: Phill B [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 30,

RE: Access db interface

2007-10-30 Thread Scott Raley -ITC
This will work if the users can produce all the sql. I'm hoping to give them 50/50 where they can browse a table and do simple gui updates like changing info in a certain column without having to type out all the sql to do it. -Original Message- From: Russ [mailto:[EMAIL PROTECTED]

RE: Access db interface

2007-10-30 Thread Scott Raley -ITC
But this appears to be something you install on the pc. I'm looking for a web tool. -Original Message- From: Jerry Barnes [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 30, 2007 6:57 AM To: CF-Talk Subject: Re: Access db interface I think aquadata studios used to connect to access.

RE: How do I bypass the missing template handler?

2007-10-30 Thread Bobby Hartsfield
1) what do you mean by set up in CF8. Do you mean that it's the server wide handler in the administrator? 2) What do you mean BYPASS?. Do you mean you want to see the error on the screen or do you mean you want to use a separate handler for a particular site. If so, just use cferror in your

RE: Alagad Affiliate Program - or - We'll pay you for leads

2007-10-30 Thread Mark A Kruger
Ahem... CF Webtools also pays generous referral fees. If anyone wants a rate sheet email me directly and I will send them one. As for the spam please blame Doug - he opened the door (ha). -Mark -Original Message- From: Doug Hughes [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 30,

RE: How do I bypass the missing template handler?

2007-10-30 Thread Ben Nadel
Can you delete the OnMissingTemplate() event handler in the Application.cfc pseudo constructor? cfset StructDelete( THIS, OnMissingTemplate ) / Not sure if this work as expected?? .. Ben Nadel Certified Advanced ColdFusion MX7 Developer www.bennadel.com Need ColdFusion

Re: Access db interface

2007-10-30 Thread Cutter (CFRelated)
Wouldn't it be better to use something like DataMgr to help you migrate your Access db to MS SQL or MySQL? Then your options open up significantly... Steve Cutter Blades Adobe Certified Professional Advanced Macromedia ColdFusion MX 7 Developer _

RE: Access db interface

2007-10-30 Thread Russ
If possible, stop using access... that's so 1999. Install SQL Express 2005 (or use your host's) and then your clients can do whatever they want using the SQL Express Client. Russ -Original Message- From: Scott Raley -ITC [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 30, 2007

Re: CFC to check spam score BEFORE sent...

2007-10-30 Thread Steve Bryant
I would like to install something on our server that will check an emails spam score before we send it out to catch any problems. Is there any solution cfc, java, .net, server software ( windows 2003 ) that anyone knows about. John, I wrote something recently that might meet your needs:

ColdFusion to Generate Cutlists?

2007-10-30 Thread Matthew Reinbold
I've been working on this problem for some time and I'm about ready to throw in the towel. The client has a sheet of plywood and needs to have an application show the most efficient way to make a series of cuts (cutlist) so that waste is minimized. I know this problem has to have been solved

Re: Adding custom functions to core

2007-10-30 Thread Brian Kotek
I just create a Utility CFC and pass that into any CFCs that need it (or have ColdSpring do it for me since I am lazy), as well as place it in the variables scope so that normal CF templates can use it as well. It's not the automatic solution being asked for but it's really not much extra work and

Generating a Cutlist with ColdFusion

2007-10-30 Thread Matthew Reinbold
(my apologies if this appears twice - I posted to the web and then logged in and, because I didn't see the post on the list, assumed it was discarded) I've been working on this problem for some time and I'm about ready to throw in the towel. The client has a sheet of plywood and needs to have

RE: ColdFusion to Generate Cutlists?

2007-10-30 Thread Adam Churvis
The process is quite different between square-sided-only versus curved parts, and things like material properties, machine type, and tooling affect minimum distances between cuts. There is no one system for automating this that I know of. Back in my day it required an expert or two and some time

RE: CFC to check spam score BEFORE sent...

2007-10-30 Thread Mark A Kruger
Steve, I took a look at this and it's nifty.. But does it actually score the email? Or does it just flag is Spam or not spam. From the samples I saw it was just the latter. I'd be interested if the spam was a score. I have a couple of folks with applications where this would be of benefit.

CFDocument to make dynamic pdf file - CFADMIN

2007-10-30 Thread coldfusion . developer
What needs to be configured in the MX7 CFAdmin in order to get the cfdocument working? It's not working at my Web hosting company, but when I try it locally it works. Thanks D ~| Download the latest ColdFusion 8 utilities

PDF to HTML

2007-10-30 Thread Varun Dixit
Hi everyone, I have a PDF file which i would like to convert to HTML. If anyone could point me to a custom tag or a utlity for the conversion it would be great. Thanks in advance. ~| Download the latest ColdFusion 8 utilities

Re: CFDocument to make dynamic pdf file - CFADMIN

2007-10-30 Thread Josh Nathanson
What needs to be configured in the MX7 CFAdmin in order to get the cfdocument working? It's not working at my Web hosting company, but when I try it locally it works. IIRC there was a problem with 7.01 and CFDOCUMENT, do you know what specific version your host is using? At my host,

RE: Access db interface

2007-10-30 Thread Scott Raley -ITC
yes yes but the person already has access reports built in to print out things a certain way that we are not looking to redevelop in web reports at this time, but we are also not looking to build an entire admin interface custom. Trying to use this solution so every night at 11pm they don't have

Re: ColdFusion to Generate Cutlists?

2007-10-30 Thread Claude Schneegans
my Google searches are either turning up commercial products and there is a good reason: this is really a commercial application. These programs are parts of CAD/CAM systems. Who will ever program such a complicated algorithm just for fun if he has one sheet to cut once a year? And what

RE: CFC to check spam score BEFORE sent...

2007-10-30 Thread Mark A Kruger
Gotcha Very cool. I will check it out. -Original Message- From: Steve Bryant [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 30, 2007 1:51 PM To: CF-Talk Subject: Re: CFC to check spam score BEFORE sent... Mark, It assigns points to each email (actually to each structure that

Re: CFC to check spam score BEFORE sent...

2007-10-30 Thread Ryan Stille
C. Hatton Humphrey wrote: I would like to install something on our server that will check an emails spam score before we send it out to catch any problems. If you know of one I'd love to hear about it as well. One idea that came to mind - if there were a way to use CFExecute to fire

Register a web folder on client's computer?

2007-10-30 Thread Johnny Le
Hi, When you open a word document in Sharepoint, it registers a web folder to your computer. When you save, you have the option to save directly into that folder. That way you won't have to upload the file to sharepoint. Does anyone know how to do that in ColdFusion? I can't find any

Re: CFC to check spam score BEFORE sent...

2007-10-30 Thread Steve Bryant
Mark, It assigns points to each email (actually to each structure that it is given). http://www.bryantwebconsulting.com/cfcs/SpamFilter.htm You can pass the structure to the getPoints method and it will return the number of points it gives to that structure (based on the defined words and

Re: Adding custom functions to core

2007-10-30 Thread Nicholas Vacek
Thanks everyone for all your suggestions on this! I'm currently using a Utility CFC, as Brian suggests. That works fine enough. I was just hoping for an even easier solution. Thanks again! Nicholas Vacek Vivid Image - Programmer 320-587-8974 ext. 111 [EMAIL PROTECTED] http://www.vimm.com

RE: PDF to HTML

2007-10-30 Thread Billy Cox
I am working on the opposite conversion, but I have noticed that the iText java library can do HTML encoding from the contents of a pdf. I'm just beginning to dive into iText and I am finding all kinds of interesting stuff. -Original Message- From: Varun Dixit [mailto:[EMAIL PROTECTED]

Manipulating Binary Files with CF

2007-10-30 Thread Shane Trahan
Does anyone know how I can manipulate a binary file using CF? What I am trying to do is to upload binary files via a service and they are differing sizes and then merge them together once all the pieces are received.. The filename, starting position and the actual piece of the file is sent

wsdl issue in cfmx 7

2007-10-30 Thread Steve Dworman
unfortunately, i can't post the wsdl. we have plenty of developers using this wsdl without an issue in c#, java, and php code. what is so different about CF? here is the error Web service parameter name request could not be found in the provided parameters {param_name}. and the code

Setting up MacMini as full featured local webserver - with ColdFusion

2007-10-30 Thread Andy Matthews
I have a Intel Core Solo MacMini that I bought to use for testing websites. It only gets turned on and used when it's time to fire up Safari and Firefox. What I'd like to do is to take that unused piece of hardware and turn it into my local web server. I have a friend who gave me some input on

RE: ColdFusion to Generate Cutlists?

2007-10-30 Thread Dawson, Michael
The first hit on Google: http://cutlistplus.com/ Back in my day, when I was programming CNC machinery, we would have our sample shop cut out a set of individual parts, then lay them on a piece of raw material. We would then move them about, manually, until we thought we had the best efficiency.

RE: wsdl issue in cfmx 7

2007-10-30 Thread Dave Watts
unfortunately, i can't post the wsdl. we have plenty of developers using this wsdl without an issue in c#, java, and php code. what is so different about CF? Without the WSDL, who can say? Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ Fig Leaf Software provides the highest

Re: Setting up MacMini as full featured local webserver - with ColdFusion

2007-10-30 Thread Josh Nathanson
Mark Drew did a post a few days ago on setting up CF/Leopard - there's a lot of good information there: http://www.markdrew.co.uk/blog/index.cfm/2007/10/27/Running-ColdFusion-8-on-Leopard -- Josh - Original Message - From: Andy Matthews [EMAIL PROTECTED] To: CF-Talk

Re: ColdFusion to Generate Cutlists?

2007-10-30 Thread Matthew Reinbold
Who will ever program such a complicated algorithm just for fun if he has one sheet to cut once a year? And what would be the advantage vs. complexity to run such an application on the Web? Hi Claude, in response to your questions: The application is to be a web based for a number of cabinetry

Re: Setting up MacMini as full featured local webserver - with ColdFusion

2007-10-30 Thread [EMAIL PROTECTED]
There is a special 'MAMP' version of the 'LAMP' environment for the Mac. Always be sure, if there is a choice, to pick the 'intel' version of a program, when you install it. You set up the network to issue 'static' ips to your computers (static on your internal network). Install MAMP and

RE: Setting up MacMini as full featured local webserver - with ColdFusion

2007-10-30 Thread Andy Matthews
FTP from the PC to the Mac? That would sort of crimp things. The goal is to be able to save a file, then reload the browser just as if I was devving on my PC. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 30, 2007 4:12 PM To: CF-Talk

Re: wsdl issue in cfmx 7

2007-10-30 Thread Steve Dworman
the problem is that i can't expose it to the world because it's sitting on our intranet. What is so different about the Coldfusion implementation of web services versus that of .NET? It works for anyone that doesn't use Coldfusion. unfortunately, i can't post the wsdl. we have plenty of

Re: CFC to check spam score BEFORE sent...

2007-10-30 Thread John Skrotzki
Thanks Mark, I will definitely look at this - right now just compiling a Email Procedures Report for proper handling of email and making sure it conforms to all the rules. Also, maybe I should start a new thread but, I was wondering how do you all handle email failure notices. I have found a

RE: Setting up MacMini as full featured local webserver - with ColdFusion

2007-10-30 Thread [EMAIL PROTECTED]
so you want to setup your 'docroot' for your server as your 'PC'? -Original Message -From: [EMAIL PROTECTED] -Date: Oct 30, 2007 13:25 -To: CF-Talkcf-talk@houseoffusion.com -Subj: RE: Setting up MacMini as full featured local webserver - with ColdFusion - -FTP from the PC to the Mac?

RE: wsdl issue in cfmx 7

2007-10-30 Thread Dave Watts
the problem is that i can't expose it to the world because it's sitting on our intranet. No, but you can cut and paste the WSDL into an email, or copy it to a public web server. If there's anything really confidential in it, you could replace those parts with fake values. What is so

Re: Server performance problem since upgrading to CF8

2007-10-30 Thread Kevin Pompei
Well I've isolated the problem down. It happens 1 hour and 7 minutes after restart which it time that is set for the client stores to be purged. This must be a bug in CF because once it starts the one CPU core is at 100% and stays there even for days until the server is restarted. On 10/30/07,

RE: Setting up MacMini as full featured local webserver - with ColdFusion

2007-10-30 Thread Andy Matthews
Hrm... No. I want all files to exist on the Mini, but I want to be able to browse them as if they existed on my PC. Soem sort of mapped network drive or something? Can PCs see the Mac directory structure? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent:

RE: Setting up MacMini as full featured local webserver - with Co ldFusion

2007-10-30 Thread Dave Watts
FTP from the PC to the Mac? That would sort of crimp things. The goal is to be able to save a file, then reload the browser just as if I was devving on my PC. You can do that with most IDEs; they include FTP functionality. Alternatively, you could presumably use Samba on your Mac to mount an

Re: Server performance problem since upgrading to CF8

2007-10-30 Thread Jochem van Dieten
Kevin Pompei wrote: Well I've isolated the problem down. It happens 1 hour and 7 minutes after restart which it time that is set for the client stores to be purged. This must be a bug in CF because once it starts the one CPU core is at 100% and stays there even for days until the server is

Re: CFC to check spam score BEFORE sent...

2007-10-30 Thread Jochem van Dieten
John Skrotzki wrote: I will definitely look at this - right now just compiling a Email Procedures Report for proper handling of email and making sure it conforms to all the rules. Make sure you include RFC 3098 :) You probably want to test on more then just SpamAssassin though. I have had

Re: ColdFusion to Generate Cutlists?

2007-10-30 Thread Claude Schneegans
In response to an earlier comment, the sizes of the cuts are all rectangles Ah ok, in that case, the algorithm is going to be much simpler, otherwise I was wondering how the user could enter the shape of each piece by Internet. I'm affraid you'll have to write the code yourself, it's quite an

RE: wsdl issue in cfmx 7

2007-10-30 Thread Kevin Aebig
In case you didn't know, there are ton of differences between C#, PHP and CF when it comes to webservices and complex types. Without seeing what you're talking about, it's pretty well impossible to help you. My advice, either post a dump of the raw information coming back, or better describe

Re: Access db interface

2007-10-30 Thread Scott Pinkston
I think Ray Camden's Database explorer might work: http://www.coldfusionjedi.com/index.cfm/2007/9/21/Database-Explorer-Updated is there any open source admin style interface from CF to an MS access database to give access to raw tables information or a query window or anything of this type?

Re: ColdFusion to Generate Cutlists?

2007-10-30 Thread Matthew Reinbold
It is a fairly common optimization problem and there are hints of other stuff being out there. For example, there is an open source cutlist app written in Delphi that, if I had more patience, I would sit down and try and reverse engineer for CF. There also seems to be shadows of a ruby api(?)

Re: ColdFusion to Generate Cutlists?

2007-10-30 Thread James Holmes
That Ruby code is sitting right there in the thread at the link you provided. With CF8 and Sean Corfield's jRuby/CF stuff, you can probably run the Ruby within CF. On 10/31/07, Matthew Reinbold [EMAIL PROTECTED] wrote: It is a fairly common optimization problem and there are hints of other stuff

Flash CFFORM for MySpace?

2007-10-30 Thread Xtendboy25
I am trying to accomplish a user being able to paste code on their myspace profile that would allow them to submit form data to my site. I assumed I could create a flash form on my server and then save the SWF output using CFFILE, which seemed to work, but I can't get the saved SWF file to

Re: Alagad Affiliate Program - or - We'll pay you for leads

2007-10-30 Thread Mike Chabot
Any experienced consultant and any consulting organization would pay referral fees. Typical referral fees would be in the 10% - 20% range. That is the range I pay in. So if I get a project that results in income of $300,000, I would pay out at least $30,000 to the person who referred the project

Re: PDF to HTML

2007-10-30 Thread Mike Chabot
Varun, Are you looking for a one-time conversion of a single document, or a repeatable automated process set up on a server? -Mike Chabot On 10/30/07, Varun Dixit [EMAIL PROTECTED] wrote: Hi everyone, I have a PDF file which i would like to convert to HTML. If anyone could point me to a