Re: But it IS defined!

2005-01-20 Thread Tony Pimm
Sorry! My mistake, the error is actually Holidays.stApproved is undefined in structure stRecord. Anyway, this works nearly all of the time, but on Live, if there's lots of activity, the results aren't saved to stRecord.Holidays.stApproved as defined. Thanks. Tony, It looks like your

Re: SeeFusion

2005-01-20 Thread Andy Allan
I've given it a quick test (basically a single 2 hour session) to see what it is, and what it shows, but I've not yet formed any opinion on it other than it was extremely easy to set up. Andy On Thu, 20 Jan 2005 12:34:51 +0800, James Holmes [EMAIL PROTECTED] wrote: It may, but as we are on

RE: SeeFusion

2005-01-20 Thread James Holmes
We're in the process of doing the same thing. I wrote a sleeping, long-running (10 secs) template and it does indeed show it as the currently running template when the stats page is refreshed. Hopefully we can put it under some load tomorrow and see how it goes. -Original Message- From:

RE: But it IS defined!

2005-01-20 Thread James Holmes
I'm willing to bet that it's a race condition problem somewhere that could be solved by locking, but without more code it's hard to see it. The lots of activity bit is the thing that brings race conditions to mind... -Original Message- From: Tony Pimm [mailto:[EMAIL PROTECTED] Sent:

RE: News about Macrmedia and it stock...

2005-01-20 Thread Micha Schopman
Agree, but people won't need every function of the package. Other editors also have their own feature set, of which you also don't use all of them. Eclipse has her own specific tools helping you get the job done. I can't get up with a DWMX specific feature which I would miss in a product like

Re: News about Macrmedia and it stock...

2005-01-20 Thread Will Tomlinson
DWMX still remains MM's best seller out of all of their products. Will P.S. I'm behaving!! ~| Logware: a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with

.NET under CFMX

2005-01-20 Thread Neil Middleton
I am trying to find out about using .NET components underneath a Coldfusion front end. Reason I say this is that a large number of our clients are pushing for .NET applications, but we currently have a large group of legacy CF based applications and all of our in-house expertise is also CF. So,

RE: SeeFusion

2005-01-20 Thread Calvin Ward
I've looked at this, set it up, and found it very easy to setup and review. I like the price point and the fact that it gives me information that I wouldn't necessarily have. It seems to perform very nicely, but as someone else mentioned it does need to be load tested. - Calvin -Original

RE: News about Macrmedia and it stock...

2005-01-20 Thread Micha Schopman
I would have thought their best seller would be Flash MX :) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

Re: SeeFusion

2005-01-20 Thread Neil Middleton
Wonder why this is only a 2 hour trial. If we were to purchase it it would need to be seen by about ten people. QUICK QUICK!!, It's installed!! Before it goes!! Neil On Thu, 20 Jan 2005 07:22:28 -0500, Calvin Ward [EMAIL PROTECTED] wrote: I've looked at this, set it up, and found it very

RE: News about Macrmedia and it stock...

2005-01-20 Thread Calvin Ward
Here's some information: http://www.macromedia.com/macromedia/ir/macr/web_pres/earnings/q305/ -Original Message- From: Micha Schopman [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 7:23 AM To: CF-Talk Subject: RE: News about Macrmedia and it stock... I would have thought

RE: SeeFusion

2005-01-20 Thread Robertson-Ravo, Neil (RX)
I would like to see more and better screenshots. -Original Message- From: Neil Middleton [mailto:[EMAIL PROTECTED] Sent: 20 January 2005 12:28 To: CF-Talk Subject: Re: SeeFusion Wonder why this is only a 2 hour trial. If we were to purchase it it would need to be seen by about ten

Re: SeeFusion

2005-01-20 Thread Ian Winter
More screenshots would be very handy, the one on the site isn't clear on what's displayed. Does look like a good product though. Ian On Thu, 20 Jan 2005 12:26:32 -, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: I would like to see more and better screenshots. -Original

Re: display number of pages left

2005-01-20 Thread daniel kessler
I've not used cfqueryparam before. Can you clarify how I can implement this so that it makes my WHERE more secure? I've never really understood cfqueryparam. You can read all about it here: http://www.macromedia.com/devnet/mx/coldfusion/articles/cfqueryparam.html OK, I read that and it

RE: SeeFusion

2005-01-20 Thread Calvin Ward
Btw, it's 2 hours based on how long your CF Service has been running. Restart the service to restart the timer! -Original Message- From: Ian Winter [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 7:40 AM To: CF-Talk Subject: Re: SeeFusion More screenshots would be very handy,

Re: display number of pages left

2005-01-20 Thread daniel kessler
Is there a chance that anyone of these rows will be deleted? If so then you wont want to do a query where id between m and n Say you delete id 250... then run a query for 201-300 expecting to return 100 results, you wont.. you'll return 100 minus the people you deleted.. could mess up your output.

cftree error after an upgrade

2005-01-20 Thread Richard East
cftree error after an upgrade I recently upgraded a server from 5 to MX. I’m trying to use the cftree tag but the applet fails to load. Checking the Java Console I got the following error: load: class coldfusion.applets.CFTreeApplet.class not found. java.lang.ClassNotFoundException:

Re: display number of pages left

2005-01-20 Thread Greg Morphis
Then use what we wrote to build the query, as far as the where clause.. use cfif statements.. select * from table where 1 = 1 cfif isdefined(some.whereclause) and some.whereclause neq and id = cfqueryparam value=#some.whereclause# cfsqltype=cf_sql_varchar /cfif On Thu, 20 Jan 2005

Re: display number of pages left

2005-01-20 Thread daniel kessler
When I try to run this SQL, I receive the error FROM keyword not found where expected SELECT TOP 25 t1.* FROM (SELECT TOP 50 service_population,agency,city,state,salary_status,int_agency_id FROM internships) t1 If I remove the TOP 25 and TOP 50 it runs fine, but of course it doesn't do what I

Re: display number of pages left

2005-01-20 Thread daniel kessler
Then use what we wrote to build the query, as far as the where clause.. use cfif statements.. dang, rewrite time. . . I understand thanks. select * from table where 1 = 1 cfif isdefined(some.whereclause) and some.whereclause neq and id = cfqueryparam value=#some.whereclause#

Re: display number of pages left

2005-01-20 Thread Greg Morphis
Well good, then use what I wrote.. This is for Oracle. SELECT * FROM ( SELECT ROWNUM rID, d.* FROM DOCUMENTS d ORDER BY docid ) b WHERE b.rID BETWEEN 2 AND 8 On Thu, 20 Jan 2005 08:26:19 -0400, daniel kessler [EMAIL PROTECTED] wrote: When I try to run this SQL, I receive the

Nasa runs CF

2005-01-20 Thread Micha Schopman
Wanted to check the latest Cassini facts.. and hey .. CF ?.. http://saturn.jpl.nasa.gov/multimedia/images/raw/index.cfm Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

Re: .NET under CFMX

2005-01-20 Thread JediHomer
Depends on the Application i suppose. For a while, one one of the sites we run, because there were sections of code that didnt need access to session information or Application information (except Datasource which we hardcoded) our site ran CF and ASP.NET in tandem. It depends on how you want to

Re: Nasa runs CF

2005-01-20 Thread Adam Haskell
Yeah I remeber a while ago there was a person on cf-jobs that was rather upsaet b/c he posted a question about jobs from the wrong adress(blamed it on HoF) and I looked and noticed it was something from nasa, if I recall. Adam H On Thu, 20 Jan 2005 14:38:49 +0100, Micha Schopman [EMAIL

Re: Nasa runs CF

2005-01-20 Thread Sean Corfield
On Thu, 20 Jan 2005 14:38:49 +0100, Micha Schopman [EMAIL PROTECTED] wrote: Wanted to check the latest Cassini facts.. and hey .. CF ?.. http://saturn.jpl.nasa.gov/multimedia/images/raw/index.cfm I guess you don't read Ben Forta's blog? http://www.forta.com/blog/index.cfm?mode=eentry=1463

RE: SeeFusion

2005-01-20 Thread Robertson-Ravo, Neil (RX)
Will this work on CFMX Standalone? -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: 20 January 2005 12:47 To: CF-Talk Subject: RE: SeeFusion Btw, it's 2 hours based on how long your CF Service has been running. Restart the service to restart the timer!

Re: SeeFusion

2005-01-20 Thread Andy Allan
Yup On Thu, 20 Jan 2005 13:50:36 -, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: Will this work on CFMX Standalone? -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: 20 January 2005 12:47 To: CF-Talk Subject: RE: SeeFusion Btw, it's 2 hours based

RE: Nasa runs CF

2005-01-20 Thread Micha Schopman
Nope, too much marketing talk :) Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 AL Amersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380

Re: .NET under CFMX

2005-01-20 Thread Neil Middleton
Any links for the CFX interface? On Thu, 20 Jan 2005 13:40:13 +, JediHomer [EMAIL PROTECTED] wrote: Depends on the Application i suppose. For a while, one one of the sites we run, because there were sections of code that didnt need access to session information or Application

Re: CFMX 6.1 - Missing Template Handler

2005-01-20 Thread Thomas Chiverton
On Thursday 20 Jan 2005 01:43 am, Andrew Tyrone wrote: handler IS NOT relative to the web root as the docs say. ... You cannot use relative paths as in ../folder/file.cfm. It is relative to the web root. You can't go 'up' past the root of the web root, which is why your example fails. --

Re: SeeFusion

2005-01-20 Thread Douglas Knudsen
i'm surprised no one has got a open source tool like this yet. I've played with looking at this sort of thing after using Pete Freitag's stuffs, but alas I'm no JAR headyet. Doug On Thu, 20 Jan 2005 14:00:19 +, Andy Allan [EMAIL PROTECTED] wrote: Yup On Thu, 20 Jan 2005 13:50:36

Re: display number of pages left

2005-01-20 Thread Douglas Knudsen
for a TOP N SQL in Oracle... SELECT * FROM ( SELECT * FROM tablename WHERE foo = goo ORDER BY columnname ) WHERE rownum = N Note where the order by appears, its important to sort the results first, then nab the top N. Doug On Thu, 20 Jan 2005 07:31:31 -0600, Greg Morphis [EMAIL

Re: Nasa runs CF

2005-01-20 Thread Keith Gaughan
Micha Schopman wrote: Wanted to check the latest Cassini facts.. and hey .. CF ?.. Yup, we've sold them some CF stuff in the past. -- Keith Gaughan, Developer Digital Crew Ltd., Pembroke House, Pembroke Street, Cork, Ireland http://digital-crew.com/

Re: display number of pages left

2005-01-20 Thread Greg Morphis
Doug that will work for the initial query but he's wanting page progression... to display rownums between 1 and 25 for example.. That example wont work in this case.. SELECT * FROM ( SELECT * FROM DOCUMENTS ORDER BY title ) WHERE ROWNUM 20 AND ROWNUM 30 yields no results.. However

Re: Nasa runs CF

2005-01-20 Thread Joe Rinehart
NASA's long had a history of using CF, especially with stuff they've had developed under contract. A fair number of the gov't contracting CF jobs in the DC area (where I'm from) with groups like SAIC are for NASA projects. On Thu, 20 Jan 2005 14:30:15 +, Keith Gaughan [EMAIL PROTECTED]

Re: Oracle help please

2005-01-20 Thread Frank Mamone
Hi Jochem, With everyone's help I finally did get the syntax working but I get the famous 'non-preserved key' message. I finally did it by updating the majority doing a straight update and processing the exceptions manually. I was just wondering if you can enlighten me on the meaning of the

Re: Nasa runs CF

2005-01-20 Thread Aaron Rouse
I know Nasa down here in Houston uses a lot of CF for internal sites. There is a decently sized group of contractors housed across the street from Nasa that does solely CF projects for them. On Thu, 20 Jan 2005 06:39:47 -0800, Joe Rinehart [EMAIL PROTECTED] wrote: NASA's long had a history of

RE: .NET under CFMX

2005-01-20 Thread Vince Bonfanti
Hi Neil, BlueDragon.NET gives you everything you need: - ability to invoke .NET objects from CFML using CFOBJECT - ability to do CFINCLUDE of ASP.NET pages within CFML pages - ability to include CFML pages within ASP.NET pages - ability to run CFML code inline within ASP.NET pages -

Re: .NET under CFMX

2005-01-20 Thread Neil Middleton
Are you willing to fly someone over then? ;-) I'm in the UK. On Thu, 20 Jan 2005 10:05:25 -0500, Vince Bonfanti [EMAIL PROTECTED] wrote: If you're like, I can have a member of our sales staff contact you and arrange an on-site demonstration. -- Neil http://www.theservicefactory.com Get

RE: CFMX 6.1 - Missing Template Handler

2005-01-20 Thread Andrew Tyrone
Tom, Okay, I'll concede that the first example is bad. But, relative to the webroot means if I have my 404 page at http://www.mysite.com/404.cfm, using /404.cfm in the missing template handler field should work (as in my second example I gave in the original post), but it doesn't. If you can

RE: CFMX 6.1 - Missing Template Handler

2005-01-20 Thread Andrew Tyrone
-Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 9:17 AM To: CF-Talk Subject: Re: CFMX 6.1 - Missing Template Handler On Thursday 20 Jan 2005 01:43 am, Andrew Tyrone wrote: handler IS NOT relative to the web root as the docs

RE: .NET under CFMX

2005-01-20 Thread Vince Bonfanti
Depending on the size of the business opportunity, it could be arranged. Part of our development team is in Scotland (Dumfries), so we have regular reason to send people over there to visit. Probably the best bet, though, is to arrange to give a demonstration remotely. We have a lot of experience

Using CFUPDATE/CFINSERT inside a CFC

2005-01-20 Thread Rick Root
Okay... so recently I've been using CFINSERT and CFUPDATE inside CFCs. I've found that, in some cases, it REALLY saves me a lot of trouble in coding... for example, I can create a function called saveUserProfile, and I can pass it the form scope as an argument, and it'll update all of the

Okay, I've never quite run into this before...

2005-01-20 Thread Jeff Small
It's not an odd request, just something that seems probably a little more complex than it initially appears, and I just want to make sure I'm heading in the right direction, design-wise. Client has an events calendar, dates, events, details (text), possibly an image all kept in the appropriate

Re: .NET under CFMX

2005-01-20 Thread Neil Middleton
We'll get in touch when I have spoken to our IT manager. We would be interested in a remote demo as and when we know what we are after. On Thu, 20 Jan 2005 10:39:24 -0500, Vince Bonfanti [EMAIL PROTECTED] wrote: Depending on the size of the business opportunity, it could be arranged. Part of

Re: cftree error after an upgrade

2005-01-20 Thread Bert Dawson
Can you see the /CFIDE/classes from your webroot? This is where the cfapplets.jar is kept, and he reference to is is in the HTML that CF spits out when you use cftree, so you'll either need a copy of it under your webroot, or a virtual directory to point to it. Cheers Bert ps there might be a

RE: .NET under CFMX

2005-01-20 Thread Katz, Dov B (IT)
Just curious. Are there any java runtime .NET hosts? (which provides api functionality to run .NET classes from inside a running Java app)? More general than just for CF. -Original Message- From: Guy Rish [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 10:50 AM To: CF-Talk

Re: .NET under CFMX

2005-01-20 Thread Neil Middleton
No java investment yet, do Bluedragon .NET is still an option As you may have guessed we're at the Java/.NET crossroads. On Thu, 20 Jan 2005 11:02:21 -0500, Katz, Dov B (IT) [EMAIL PROTECTED] wrote: Just curious. Are there any java runtime .NET hosts? (which provides api functionality to run

RE: .NET under CFMX

2005-01-20 Thread Guy Rish
That depends upon what you are looking for specifically. There are three basic options: 1. Execute a .NET class from within a Java class through proxied calls 2. Execute a .NET class using the same syntax as you would with a Java class 3. Building from item #2 a transparent layer allowing you to

Can we save email attachments directly in the database?

2005-01-20 Thread Discover Antartica
Hello, I am using CFPOP. Currently, it is saving files in a folder on disk. I want to save it directly to the database. Is that possible with coldfusion? ~| Logware: a new and convenient web-based

OT-SQL DATE QUESTION

2005-01-20 Thread Eric Creese
Okay I have a function that retrieves the last day of the month based on feeding it todays date which would return 1/31/2005. I am trying to modify this function to determin if today is the last Thursday of the month. Does anyone have any ideas for this? I have tried a few things like using the

RE: OT-SQL DATE QUESTION

2005-01-20 Thread Adkins, Randy
Are you trying to determine what day of the month, the last Thursday falls on Or just if the 31st in this case is a Thursday? -Original Message- From: Eric Creese [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 11:19 AM To: CF-Talk Subject: OT-SQL DATE QUESTION Okay I have a

Re: cftree error after an upgrade

2005-01-20 Thread Richard East
Spot on. It was just mapping a virtual directory! Thank you. Richard Can you see the /CFIDE/classes from your webroot? This is where the cfapplets.jar is kept, and he reference to is is in the HTML that CF spits out when you use cftree, so you'll either need a copy of it under your webroot, or

RE: OT-SQL DATE QUESTION

2005-01-20 Thread Adkins, Randy
If you are determine if the last day is a Thursday then DayofWeek should have worked for you. CFIF DayOfWeek(varToday) EQ 5 Today is Thursday /CFIF If you are trying to determine when the last Thursday was for the month, CFSET varDayofWeekEOM = DayOfWeek(varToday) CFIF varDayofWeekEOM

RE: .NET under CFMX

2005-01-20 Thread Vince Bonfanti
You might want to take a look at this for generic Java-.NET interoperability: http://www.jnbridge.com/index1.htm I've never used it, so I don't have any opinions about it. My guess (from reading the documentation) is you're going to need pretty strong Java and .NET programming skills to use

Re: Can we save email attachments directly in the database?

2005-01-20 Thread Mark Drew
The actual contents of the file or the filename? if its the actual content of the file I guess you should do a if the file is a text file cfset format = text else cfset format = binary if text cffile action=read file=path file variable=theFile or depending on the file if binary cffile

pointing to cfcs from sub directories

2005-01-20 Thread Daniel Farmer
This may seem like a stupid question, so I apologize in advance for my ignorance. How can I point to cfcs when in a subdirectory? For example.. I want to go up one directory back and then into a cfc directory. I am in... root + - customTags + -

Table Layout

2005-01-20 Thread Cutter (CF related)
This probably seems like an easy question, I've just never had the need before now. I have a query with x number of records. I want to dynamically create a table on my display that displays five records per row, ie (qf = queryfield): qf | spacer | qf | spacer | qf | spacer | qf | spacer | qf

RE: Table Layout

2005-01-20 Thread Eric Creese
Here is a little thing I do but the empty cell part I do not have. table tr cfoutput query=getSpecials td width=130 valign=top centerimg src=images/products/#largeimage# border=0/center /td cfif

Re: Okay, I've never quite run into this before...

2005-01-20 Thread Casey C Cook
Does the customer want a maintenance task of updating flags? If not then they could determine up front a date range for which the event will be shown on the homepage and lets say you can have up to 5 slots. The homepage will show all events which are in the valid date range compared to todays

Re: Okay, I've never quite run into this before...

2005-01-20 Thread Casey C Cook
I just wanted to mention one other thing. Statements like the below dont fly. You either need to have the customer define the requirements or you come up with a list of solutions and have them pick the best option or a combo of the options, but if you do not get buy-off on the customer

RE: Nasa runs CF

2005-01-20 Thread Stacy Young
CF is quite popular in Canadian gov too (if that counts ;) Also met a gent at MAX from JPL in Cali and they use plenty of CF. He worked on the rovers, thought that was cool. -Stace -Original Message- From: Sandy Clark [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 11:27 AM

Re: pointing to cfcs from sub directories

2005-01-20 Thread Mark Drew
I *think* you can use the CF mappings (if you have one pointing to the root of your site) so you would still call it (as you do with java) cfinvoke component=cfcs.mycfc method=trackItem id=#url.id# returnvariable=isDone On Thu, 20 Jan 2005 16:38:54 -, Daniel Farmer [EMAIL

UDP COM Object for Game Server?

2005-01-20 Thread Bailey, Neal
Hey guys... I hope this makes sense... I am building a CF app that will pull Server Info from a Game server via sending info to the UDP port. I am doing this for the new Half-Life 2 Source engine. I have a few dedicated servers that I run for people and I want to post the info on the website. I

Re: Nasa runs CF

2005-01-20 Thread Mark Drew
Programming CF from a ROVER? glad I misheard you, that is cool ;) MD On Thu, 20 Jan 2005 12:25:41 -0500, Stacy Young [EMAIL PROTECTED] wrote: CF is quite popular in Canadian gov too (if that counts ;) Also met a gent at MAX from JPL in Cali and they use plenty of CF. He worked on the

Re: Nasa runs CF

2005-01-20 Thread Bryan Stevenson
Hey Stace, Wouild you happen to have list of Canadian govt. organizations that use CF? Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web:

Re: SeeFusion

2005-01-20 Thread pquinn
Greetings, all. It's Patrick from Webapper Services, LLC, and SeeFusion is our bouncing baby product. I thought I'd post some tidbits right from the horse's mouth, so to speak, to give you all more information about the product. (Apologies in advance for the long-ish post.) First, SeeFusion is

OT: CF Hosting Tests?

2005-01-20 Thread Nick Baker
I am looking at additional shared hosting services and I am particularly concerned with how responsive the servers - 24/7. I would like to check the response times for the servers, externally. If anyone using the below shared servers would be willing to provide their URL I would appreciate it.

RE: CF Hosting Tests?

2005-01-20 Thread Mark A Kruger
Nick, You should add Edgeweb hosting to the list. I have a customer with a large site with continual activity running there and I get practically no down time. The only downtime we've had in the last 6 months was a reboot of the db server where we have shared space. -Mark -Original

RE: UDP COM Object for Game Server?

2005-01-20 Thread Martin Parry
If I'm pulling stuff back from COM objects (in particular one that interrogates IIS for all it's sites) I use the WDDX API and serialize my own WDDX object in VB by populating it with all the known values, arrays etc. You can then dump that in CF after doing a CFDDX to convert it back.. I'd be

Question about Flash and CF

2005-01-20 Thread Ciliotta, Mario
Hi, I need to add a function to an application that I already have created in CF that will allow someone (a receptionist) to take a photo using a camera attached to their workstation and then print out a badge for visitors to our building with their photo. My question is can CF and Flash do

Re: Can we save email attachments directly in the database? Got the answer but...

2005-01-20 Thread Discover Antartica
But, I want to avoid CF saving it on a folder on the disk and instead go directly to the database. Is there a way? In the example below, cffile is being used to read the file from a folder. I want to skip this step of file being saved in folder first, then being read by cffile and then being

Inexpensive, CF-friendly payment gateway?

2005-01-20 Thread Matt Robertson
I have a new client that needs a CF-friendly payment gateway. Anyone here have any recent recommendations? Seems like the landscape is always changing. A big thing I'm looking for is low fixed fees, but something pre-built for CF is also important. Don't want to go thru what I did with Bank of

Re: Can we save email attachments directly in the database? Got the answer but...

2005-01-20 Thread Bryan Stevenson
Nope.not that I'm aware of...to drive...then from drive to DB as laid out Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell: 250.920.8830 e-mail: [EMAIL PROTECTED] web: www.electricedgesystems.com

Re: Question about Flash and CF

2005-01-20 Thread Bryan Stevenson
Skip the Flash 1) Take picture and have CF watching the directory the pic lands in (check every x seconds I guess..scheduled task) 2) If a pic is found..add to DB...and grab the record 3) Have a blank pass image stored on the drive 4) add the pic to the stock pass image (using a custom tag

RE: display number of pages left

2005-01-20 Thread Dave Watts
OK, I read that and it makes sense. Unfortunately, the example of making sure a number is a number, instead of a cmd-line string seems a bit obvious. Most examples are! Does making sure that it's a varchar do the same thing? IOW, is it making sure that it's not some sort of run

I wrote a captcha generator

2005-01-20 Thread Rick Root
While working on my blog application ( www.webworksllc.com/blogcfm ) I decided I needed some kind of captcha tool to help keep out the spambots. So with the help of a few java font rendering tutorials... I wrote one, and am releasing it under the BSD open-source license.

RE: cftree error after an upgrade

2005-01-20 Thread Dave Watts
cftree error after an upgrade I recently upgraded a server from 5 to MX. I’m trying to use the cftree tag but the applet fails to load. Checking the Java Console I got the following error: load: class coldfusion.applets.CFTreeApplet.class not found. java.lang.ClassNotFoundException:

RE: Using CFUPDATE/CFINSERT inside a CFC

2005-01-20 Thread Dave Watts
Inside the function, I've got cfset var form = arguments.details ... Is that really legal? I haven't done any in-depth testing but it seems to be working. Aside from the usual debugging issues that can come with cfinsert and cfupdate, are there any GOTCHYAs that I need to watch out

Re: Can we save email attachments directly in the database? Got the answer but...

2005-01-20 Thread Discover Antartica
I am sure there is a way...but I don't know how. Anyone else knows? Bryan Stevenson [EMAIL PROTECTED] wrote:Nope.not that I'm aware of...to drive...then from drive to DB as laid out Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone:

RE: OT-SQL DATE QUESTION

2005-01-20 Thread Dawson, Michael
I think you will need to loop backwards from the last day of the month until you find the first (last) Thursday. You will probably need to put this in a stored procedure. You will also need to use a date function that returns Monday, Tuesday, etc so you can look for Thursday. Then, you can make

RE: Table Layout

2005-01-20 Thread Dawson, Michael
Look at some calendar scripts that are freely-available. They use the technique to fill empty month days. -Original Message- From: Eric Creese [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 10:55 AM To: CF-Talk Subject: RE: Table Layout Here is a little thing I do but the

RE: Can we save email attachments directly in the database? Got the answer but...

2005-01-20 Thread Dawson, Michael
Can't you save the text of the message before you extract the attachment? You may need to use a CLOB field. I don't think CFPOP will let you save attachments to memory rather than a drive, but I'm not positive on that. -Original Message- From: Discover Antartica [mailto:[EMAIL

RE: Inexpensive, CF-friendly payment gateway?

2005-01-20 Thread Dawson, Michael
We use PayFlowPro with ASP, but I have tested it successfully with ColdFusion. I'm not sure of the cost, however, but I think it is relatively inexpensive. MAD -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 12:35 PM To: CF-Talk

RE: I wrote a captcha generator

2005-01-20 Thread Dawson, Michael
Very nice. I would suggest that you randomly stagger the vertical location of the text to make it that much harder to OCR. -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 12:44 PM To: CF-Talk Subject: I wrote a captcha generator While

Re: I wrote a captcha generator

2005-01-20 Thread Rick Root
Dawson, Michael wrote: Very nice. I would suggest that you randomly stagger the vertical location of the text to make it that much harder to OCR. good idea! Done! =) - Rick ~| Logware: a new and convenient web-based time

RE: I wrote a captcha generator

2005-01-20 Thread Paul Vernon
You can also put the image name in the form, which would allow you to delete it upon form submission. Alternatively, you could just delete the images it creates with a scheduled task. You could use a cfm file to serve the image and use something like the following in the form.. img

RE: I wrote a captcha generator

2005-01-20 Thread Damien McKenna
How about defining an X*Y grid for each character and randomly placing the character within these boundaries to add an extra element of randomness? Then maybe add a touch of rotation (no idea how to do that, sorry)? -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company -

Re: Inexpensive, CF-friendly payment gateway?

2005-01-20 Thread Adam Churvis
Matt, I can set you up with everything you need, including the ColdFusion code to request authorization and process the response: http://www.productivityenhancement.com/services/Affiliates.cfm Respectfully, Adam Phillip Churvis Member of Team Macromedia http://www.ProductivityEnhancement.com

RE: UDP COM Object for Game Server?

2005-01-20 Thread Bailey, Neal
Ok I'm resending this a sit seems it did not make it through... Hi Martin, Ok well I have no clue about WDDX... I tried to mess with it a while back using a shopping cart by Quildesign.com but just could not figure it out. I'm more of the Design Guy... I only know CF from forced exposure...

RE: UDP COM Object for Game Server?

2005-01-20 Thread Bailey, Neal
Ok I'm resending this as it seems the body text was too long... Hi Martin, Ok well I have no clue about WDDX... I tried to mess with it a while back using a shopping cart by Quildesign.com but just could not figure it out. I'm more of the Design Guy... I only know CF from forced exposure...

ANNOUNCE: ColdFusion, Fusebox and .Net classes January and February 2005

2005-01-20 Thread Michael Smith
Come to an intensive class on ColdFusion or Fusebox in Rockville Maryland. Moving to DotNet from CF? We have a new Dot Net class by CF Gurus Adam and David Churvis, see DN101 below. Classes limited to 12 students each so that you can be sure to get your own questions answered! Sign up today to

RE: ANNOUNCE: ColdFusion, Fusebox and .Net classes January and February 2005

2005-01-20 Thread Dawson, Michael
Less than $10 for an Intro to ColdFusion class? I'll take two! M!ke -Original Message- ** Tue 1/11/05 CF 101 - Welcome to ColdFusion $9.95 Tue 1/18/05 CF 102 - Introduction to ColdFusion $349 ~| Find out how

CFMX + UTF8 vs Javascript

2005-01-20 Thread Claude Schneegans
Hi, The host I have some of my sites recently moved to CFMX. As a result, all the text is converted to UTF-8. First I find this a bit abusive since I only need latin-1, but anyway... The trouble is that my Javascript files are still in Latin-1, but Explorer is so minded it receives everything

Flash Remoting Issue

2005-01-20 Thread Rey Bango
Hey all. I'm trying to get Flash Remoting working correctly but there seems to be some type of issue on the CFMX side. Everything that I've read says that if I put in a URL like this: http://10.24.1.47/flashservices/gateway I should get a blank page back. The blank page would be the indicator

Re: Flash Remoting Issue

2005-01-20 Thread dave
if you are on a shared server make sure the host has activated remoting on your account -- Original Message -- From: Rey Bango [EMAIL PROTECTED] Reply-To: cf-talk@houseoffusion.com Date: Thu, 20 Jan 2005 15:24:50 -0500 Hey all. I'm trying to get Flash

RE: Flash Remoting Issue

2005-01-20 Thread Dave Watts
Hey all. I'm trying to get Flash Remoting working correctly but there seems to be some type of issue on the CFMX side. Everything that I've read says that if I put in a URL like this: http://10.24.1.47/flashservices/gateway I should get a blank page back. The blank page would be the

Access to MySQL conversion

2005-01-20 Thread Chris Tilley
Could I get some advice on converting an MS Access database to a MySQL database? I have a app that is live and I need to convert the database and all records over to MySQL. Any pointers/experiences are welcome. This needs to be a free conversion. Thanks -- Chris Tilley

Re: Flash Remoting Issue

2005-01-20 Thread Rey Bango
Hi Dave. Its a standard CFMX install, not JRun based. Any ideas? - Original Message - From: Dave Watts [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Thursday, January 20, 2005 3:42 PM Subject: RE: Flash Remoting Issue Hey all. I'm trying to get Flash Remoting working

RE: Access to MySQL conversion

2005-01-20 Thread Adkins, Randy
Use NaviCat MySQL Manager and it has a GREAT Import feature. I have converted about 5 different Access DBs into MySQL. So if you have questions let me know. -Original Message- From: Chris Tilley [mailto:[EMAIL PROTECTED] Sent: Thursday, January 20, 2005 3:34 PM To: CF-Talk Subject:

  1   2   >