re: Blog API for Myspace.com

2005-10-28 Thread abinidi
I'm not trying to run scripts on my blog. What I am trying to do is build a 3rd party app that users can post topics to thier blog. Just about every other Blog app has the ability to do it, mainly via XMLRPC. ~| Logwar

re: Blog API for Myspace.com

2005-10-28 Thread dave
if they catch you using any scripts they will delete you but then again they are pretty bad codes themselfs.. better read there rules and regulations. ~Dave the disruptor~ "Some people just don't appreciate how difficult it is to dispense wisdom and abuse at the same time." ---

Blog API for Myspace.com

2005-10-28 Thread Abinidi Web Services
I am trying to figure out if Myspace.com, which is built in CF, has an API, similar to what Blogger, Wordpress, and LJ has. I know that there are quite a few APIs out there already, Atom, BloggerAPI, etc. Myspace.com has no details on anything, nor does Googling offer any answers. ~~

Re: Problem in a Simple webservice: 1D array works 2D fails

2005-10-28 Thread Will Tomlinson
>Thanks to everyone else for suggesting other data structures that work. I >did some testing and there is no problem with Structs of Structs and other >combinations, but the designer wants as simple and portable a solution as >possible, so it's back to see what I can do to make the 2D Array work.

RE: OT - Complex SQL

2005-10-28 Thread Dawson, Michael
Along these lines, you might want to look into DB2's data dictionary. On our AS400, you can find the data dictionary in the qsys2 libraries. Look for a table named "syscolumns". That table will give you the details on any column in the database. I created a simple DB2 datadictionary view a few ye

RE: OT - Complex SQL

2005-10-28 Thread Dawson, Michael
You might try SELECTing the date column and see what it returns. You might also ask the DBA what the date datatype is. I know, from sad experience, that DB2 DBA's tended to use non-date datatypes because they are somewhat new in the last decade. We have DB2 on our AS400 and NO ONE uses a date/ti

Re: Big Honking Queries Make Me Want To Scream

2005-10-28 Thread Stan Winchester
Try the ColdFusion MX Bible it has some very good chapters SQL >> Is there a damned good book/tutorial somewhere on writing these things? > >"Using Complex SQL Statements in Coldfusion for Idiots" ?? > >-- >--- >Les Mizzell

Re: debugging complaint

2005-10-28 Thread Ryan Guill
Thanks charlie, thats good to know. On 10/28/05, Charlie Griefer <[EMAIL PROTECTED]> wrote: > i've seen where doctypes will remove all colors from a cfdump (border > colors and background colors), rendering it highly ineffective. > > removing the doctype declaration normally fixes this for me. (o

Re: Big Honking Queries Make Me Want To Scream

2005-10-28 Thread Les Mizzell
> Is there a damned good book/tutorial somewhere on writing these things? "Using Complex SQL Statements in Coldfusion for Idiots" ?? -- --- Les Mizzell ~| Logware (www.logware.us): a new and convenient web-based time tr

Re: debugging complaint

2005-10-28 Thread Charlie Griefer
i've seen where doctypes will remove all colors from a cfdump (border colors and background colors), rendering it highly ineffective. removing the doctype declaration normally fixes this for me. (of course, it goes back in prior to going to production) :) On 10/28/05, Ryan Guill <[EMAIL PROTECTE

Re: Big Honking Queries Make Me Want To Scream

2005-10-28 Thread Les Mizzell
> Les, without knowing the relationships between the tables (one-to-one, > one-to-many, many-to-many) this may or may not produce your desired output, > but lets start with the following: Thanks, the below is a good start. What's got me buggered is that: 1. Any of the relationships *could* be

Re: debugging complaint

2005-10-28 Thread Ryan Guill
hey ray, somewhat on and off topic, do you know if it is possible to modify the cfdump structure? particularly the stylesheet. I had a developer ping me the other day about the cfdump stylesheet color specifications did not use pound signs, something like color: 336633; He said it was using a br

Re: mutliple instance installation tutorial

2005-10-28 Thread Robert Munn
There was one on macromedia.com that I found useful awhile ago, but I can't find it at the moment. I googled j2ee CFMX multiple instances and was surprised by how many on target hits I got, and just how much discussion there is around the Web on this subject. You'll see big name resources lik

RE: OT - Complex SQL

2005-10-28 Thread Jillian Koskie
You're so right... Anybody happen to now offhand (I'm off to search after I send this message) what the date format is for DB2? I'm just running this at the command line, so no need for any CF stuffs... But unfortuantely also can't take advantage of CF stuffs. -Original Message- From: Daw

Re: OT - Complex SQL

2005-10-28 Thread Greg Morphis
AND table_1.table_id IN ('value1','value2','value3') try that On 10/28/05, Jillian Koskie <[EMAIL PROTECTED]> wrote: > Okay, I think it's because it is Friday at 4... can somebody help me > out? > > SELECT table_1.expiry_date, > table_3.expiry_date > FROMtable_3 >

RE: OT - Complex SQL

2005-10-28 Thread Munson, Jacob
I don't know what DBMS you are using, but should you have quotes around all of the values in your IN clause, like so: AND table_1.table_id IN ('value1','value2','value3') > -Original Message- > From: Jillian Koskie [mailto:[EMAIL PROTECTED] > Sent: Friday, October 28, 2005 4:12 PM > To: C

RE: OT - Complex SQL

2005-10-28 Thread Dawson, Michael
You need single quotes around "each" of your values in the "IN" clause. AND table_1.table_id IN ('value1','value2','value3') The date formats may be wrong, too. Check the actual data in the database and/or use createODBCDateTime() and definitely use CFQUERYPARAM. It will make your job a bit e

RE: Problem in a Simple webservice: 1D array works 2D fails

2005-10-28 Thread Mackenzie Cosens
Hi, Thanks to everyone for their help. Robert, I tried the settings suggested in the Axis Docs, but still No luck with the 2D Arrays. You were able to duplicated the problem on CFMX 6.1, Did you make the changes to server-config.wsdd and get 2DArrays to work? Thanks to everyone else for sug

OT - Complex SQL

2005-10-28 Thread Jillian Koskie
Okay, I think it's because it is Friday at 4... can somebody help me out? SELECT table_1.expiry_date, table_3.expiry_date FROMtable_3 JOIN table_2 ON table_2.table2_key = table_3.tablel2_key JOIN table_1 ON table_1.table1_key = table_2.t

RE: mutliple instance installation tutorial

2005-10-28 Thread Dawson, Michael
I sort of just wrote one yesterday since the available resources are lacking or are written for CFMX 6.1. I would be glad to share what I did. I even installed CF7 Standard alongside CF7 Developer/Multiserver. M!ke -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent:

Re: debugging complaint

2005-10-28 Thread Bryan Stevenson
Thanks for the clarification and the tips Ray...much appreciated (one part of CF I've never really looked under the hood) ;-) 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 PR

Re: debugging complaint

2005-10-28 Thread Raymond Camden
Something else to consider. My starfish project handles debugging info, stuff like the time it took to do X. It does NOT handle erorrs. However... It IS possible to modify error behaviour. I've written to blog entries on this. This entry: http://ray.camdenfamily.com/index.cfm/2005/7/14/More-CFMX

RE: cfhttp timeout

2005-10-28 Thread Munson, Jacob
Another good idea! :) I just made a page with a cfloop that runs for a long time, and I was able to test my try/catch around cfhttp. > -Original Message- > From: Dawson, Michael [mailto:[EMAIL PROTECTED] > Sent: Friday, October 28, 2005 11:16 AM > To: CF-Talk > Subject: RE: cfhttp timeo

Re: java equivalent of cffile

2005-10-28 Thread Spike
Yeah, That will create a file, rename it and delete it. File read and write operations are somewhat more involved. You'll definitely be better off wrapping up the file operations in a cffunction block, but if you really do want to find out some more about it, here's some java code to read the co

RE: Time Block

2005-10-28 Thread Bobby Hartsfield
Even easier, once you have the dates just check to see if now() is A) GTE EndDateTime OR LTE StartDateTime B) GTE StartDateTime AND LTE EndDateTime A being true means grant access B being true means deny access StartDateTime being the time on Friday that you want to close out access and the End

(Admin) Site move

2005-10-28 Thread Michael Dinowitz
AHPHosting (www.ahphosting.net), who has been providing hosting to House of Fusion and all related sites for the last number of years will be moving all of the House of Fusion hardware over to a new network center. This move will occur late tonight (Friday night). As I will not be on at the time

Re: java equivalent of cffile

2005-10-28 Thread Nathan Strutz
If you want to check out the java way, you can browse through java.IO.*, which has a lot of IO general classes including working with the file system, and when in doubt, google it. Generally speaking, you do something sort of like this: myFile = createObject("java","java.IO.File").init("c:\myfile.

RE: MySQL DSN

2005-10-28 Thread Snake
MySQL 4.1.13 I dunno what the grant statement was as I use HELM or MySQL Administrator to create the databases. But I have the same MySQL 4.1.13 on another server which works fine with CFMX7. Russ -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: 28 October 2005 16

RE: java equivalent of cffile

2005-10-28 Thread Paul
I had the same thought, but was curious to learn a little more about how Java works. But I did find the wrapper functions already written on cflib.org so maybe I'll just do that... -Original Message- From: Simeon Bateman [mailto:[EMAIL PROTECTED] Sent: Friday, October 28, 2005 1:39 PM To

Re: debugging complaint

2005-10-28 Thread Bryan Stevenson
Some good points Jim,...thanks...good points to ponder for sure.. 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: debugging complaint

2005-10-28 Thread Ken Ferguson
and what's even better is a gool ole Oracle error Error ORA-00060 What, that's it? Really? Are you serious? I can't get ANY more insight than that? I mean, you had to notice that it was a deadlock and then look up the code in the internal database. So it was actually MORE difficult to show

RE: debugging complaint

2005-10-28 Thread Jim Davis
> -Original Message- > From: Bryan Stevenson [mailto:[EMAIL PROTECTED] > Sent: Friday, October 28, 2005 2:36 PM > To: CF-Talk > Subject: debugging complaint > > Hey All, > > You know it just hit me that CF debugging could be so much more > informative in certain situations...and I wonder

Re: java equivalent of cffile

2005-10-28 Thread Simeon Bateman
The stupid simple answer I came up with in seeing your questions, was why not just write a couple cffunctions to wrap cffile so you can access it from script? I am probably missing something, but thats where I would look first. simeon On 10/28/05, Paul <[EMAIL PROTECTED]> wrote: > > I know this

Re: debugging complaint

2005-10-28 Thread Bryan Stevenson
yep...so much better...it makes me laugh everytime I see a .NET error...like reading a foreign language 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.elec

Re: debugging complaint

2005-10-28 Thread Bryan Stevenson
> I am, of course, only messing with you here Bryan. However, I do think > that this is one of those sort of, "just how much IS enough" type of > things. CF's error messages and debugging, in my opinion, are infinitely > better than most languages/software. > > --Ferg It's Friday...I'd expect noth

Re: debugging complaint

2005-10-28 Thread Ryan Guill
>CF's error messages and debugging, in my opinion, are infinitely > better than most languages/software. amen. We dont often realise how good we have it. -- Ryan Guill BlueEyesDevelopment [EMAIL PROTECTED] www.ryanguill.com (270) 217.2399 got google talk? Chat me at [EMAIL PROTECTED] The Coldf

java equivalent of cffile

2005-10-28 Thread Paul
I know this has been covered but I don't know what phrase to search for exactly so here we are. How can I do CFFILE-like actions (create, overwrite, delete) within cfscript? I'm sure I can use the built-in Java functionality but I don't know what that is. TIA Paul ~~

Re: mutliple instance installation tutorial

2005-10-28 Thread Simeon Bateman
The documentation on CF Admin has an installing pdf, as well as a configuring cf pdf. I found these to have wonderful information in them. I suspect that the step by step instructions in them will be exactly what you need. simeon On 10/28/05, Mark A Kruger <[EMAIL PROTECTED]> wrote: > > Anyone k

Re: debugging complaint

2005-10-28 Thread Ken Ferguson
Should it also look at the code in question and try to fix it for you? Should it suggest a page in the CFWACK where you can read about this particular error? How about if it included a quick-link which would automatically send a message to the HOF message board to ask others how to fix it? Mayb

mutliple instance installation tutorial

2005-10-28 Thread Mark A Kruger
Anyone know of a good step by step tutorial on installing CF muliple instances? -mark Mark A. Kruger, CFG, MCSE www.cfwebtools.com www.necfug.com http://mkruger.cfwebtools.com ~| Logware (www.logware.us): a new and convenient

RE: WAY OT: Configuring FCKEditor

2005-10-28 Thread Matthew Small
Thanks man I figured a solution to my problem. I needed to have image upload on one domain, but the files displayed on another. I ended up mapping virtual directory and that solved my problem. Thanks for your help, Matt Small -Original Message- From: Jay Greer [mailto:[EMAIL PROTECTED]

RE: debugging complaint

2005-10-28 Thread Michael T. Tangorre
> From: Ray Champagne [mailto:[EMAIL PROTECTED] > Tried, but couldn't get the mirror in the right position to > see anything. > > :) LOL. That's because you are too busy watching your neighbor try on her new "purchases" (head over to cf-community for the rest of the story) :-)

Re: debugging complaint

2005-10-28 Thread Bryan Stevenson
> Tried, but couldn't get the mirror in the right position to see anything. > > :) > > Ray Yep it's Friday alright ;-) 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 PROTECT

Re: debugging complaint

2005-10-28 Thread Bryan Stevenson
Yeah I'll have to sneek a peak at Ray's Starfish ;-) but I guess I'm really wondering why MM doesn't add something that seems so simple? Thanks Charlie Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264 cell

Re: debugging complaint

2005-10-28 Thread Ray Champagne
Tried, but couldn't get the mirror in the right position to see anything. :) Ray Charlie Griefer wrote: > I don't know if it's the answer you seek... but have you looked at > Ray's Starfish? (there's a question i never pictured myself asking). > > > http://ray.camdenfamily.com/index.cfm/2005/1

Re: debugging complaint

2005-10-28 Thread Charlie Griefer
I don't know if it's the answer you seek... but have you looked at Ray's Starfish? (there's a question i never pictured myself asking). http://ray.camdenfamily.com/index.cfm/2005/10/24/Starfish-ColdFusion-Debugger-Version-0-Released On 10/28/05, Bryan Stevenson <[EMAIL PROTECTED]> wrote: > Hey

Re: WAY OT: Configuring FCKEditor

2005-10-28 Thread Jay Greer
(for versiion 2.1.1) /FCKEditor/editor/filemanager/browser/default/connectors/cfm/config.cfm Lines 9 & 11 Good Luck! ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and doc

debugging complaint

2005-10-28 Thread Bryan Stevenson
Hey All, You know it just hit me that CF debugging could be so much more informative in certain situations...and I wonder if anyone can tell me why it isn't?? ;-) Here's a great example to do with CFCs Pass an argument of type numeric to a method (but the value passed is not numeric). So we g

WAY OT: Configuring FCKEditor

2005-10-28 Thread Matthew Small
I need to configure FCKEditor to upload images into a non-default folder, but I have no idea where to change this setting. I've looked on the support website, but I can't find it. Might anybody here know where I can do this? (sorry for the OT and the cross post) Thanks Matt Small ~

RE: Time Block

2005-10-28 Thread Justin D. Scott
> Hi. I trying create a function in this format: > IsBlockedTime(startdayofweek,starthour, startminute, > enddayofweek, endhour,endminute) This should be simple... Once you have the values, create datetime objects using createDateTime() and then use the DateDiff() function against those and now()

RE: cfhttp timeout

2005-10-28 Thread Dawson, Michael
Create a broken-page simulator by creating a new CF page, then adding the Sleep() function (link below) to make your page "unavailable" for a lengthy amount of time. Call this page with CFHTTP and then catch the timeout errors. You can then simulate a failure of any time period you choose. htt

RE: Create XML for download

2005-10-28 Thread Bobby Hartsfield
No, it will be viewed in the browser, not prompt for download. You could zip it and link to that or look into forced downloads with cfcontent. ..:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Wally Randall [mailto:[EMAIL PROTECTED] Sent: F

RE: Create XML for download

2005-10-28 Thread Emmet McGovern
You'll need to use cfheader/content to force the download otherwise it will display in the browser. e -Original Message- From: Wally Randall [mailto:[EMAIL PROTECTED] Sent: Friday, October 28, 2005 1:05 PM To: CF-Talk Subject: Create XML for download I need to create an XML file version

RE: Unusual Image Rotation Request

2005-10-28 Thread Andy Matthews
You could also do it Flash. -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Friday, October 28, 2005 11:59 AM To: CF-Talk Subject: Re: Unusual Image Rotation Request I'd wager that adding arbitrary rotation angles would be pretty trvial to your choice of image

Create XML for download

2005-10-28 Thread Wally Randall
I need to create an XML file version of the contents of a report which a user can choose to download. How do I provide a link for that date/file? Will a normal WEB link work? ~| Logware (www.logware.us): a new and convenient w

Re: Unusual Image Rotation Request

2005-10-28 Thread Barney Boisvert
I'd wager that adding arbitrary rotation angles would be pretty trvial to your choice of image manipulators, as long as you can get the source. Even if you can't get the source, a wrapper/extension should be able to package the functionality pretty easily. The trick is that you'll have to explici

RE: spam scoring

2005-10-28 Thread Emmet McGovern
Since the majority of mail is caught through non pattern based filtering you'll have a difficult time with this. Very few filters weigh out of the box on keywords. It's just not effective past pharm, enlargement, mortgage and cheap software. The easiest way to avoid spam is to have a proper serv

Re: File Upload Tool

2005-10-28 Thread Peter Shaw
>Is this what you are looking for? > Yes, that's the one. Thanks ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a project or with a client wi

Unusual Image Rotation Request

2005-10-28 Thread Peter Shaw
I see that many of the image manipulation tools can rotate images 90, 180 degrees etc. I am looking to rotate an image an arbitrary amount, perhaps 35 or 68 degrees for example. This would give me a larger rectangular image than the one that I started off from, with the corners of rotated image

Re: FlashForm

2005-10-28 Thread Felipe Fernandes
http://www.asfusion.com/blog/entry/consuming-a-web-service-through-flash Take also a look at some other posts from them, they got everything you need to work with cfform and flash remoting On 10/28/05, Asim Manzur <[EMAIL PROTECTED]> wrote: > thanks for your help, I have a strong concept of remo

Re: File Upload Tool

2005-10-28 Thread Steve Bryant
Is this what you are looking for? http://cfopen.org/projects/cffm/ Steve Bryant. Bryant Web Consulting LLC http://www.BryantWebConsulting.com/ http://steve.coldfusionjournal.com/ > Hi, > > My memory has failed but I seem to recall a comprehensive upload tool > being made available by one gener

File Upload Tool

2005-10-28 Thread Peter Shaw
Hi, My memory has failed but I seem to recall a comprehensive upload tool being made available by one generous contributor here a while ago - file type restrictions, overwrites + much more good functionality. I had thought that it was set up as a project on CFLIB but I can't find any sign there

Time Block

2005-10-28 Thread Ken
Hi. I trying create a function in this format: IsBlockedTime(startdayofweek,starthour, startminute, enddayofweek, endhour,endminute) This will compare the current date and time to the parameters passed through the function, and return a boolean. Basically, I am trying to stop my users from accessin

RE: cfhttp timeout

2005-10-28 Thread Munson, Jacob
That's a good idea. The problem I'm having is actually getting a timeout for testing. I spent a long time last night trying to find a URL that would timeout, and wouldn't you know it if the Internet works PERFECTLY the one time I actually want it to fail. :) > -Original Message- > From

RE: cfhttp timeout

2005-10-28 Thread Dawson, Michael
Wrap it with a CFTRY and then CFCATCH the error. In CFHTTP set THROWONERROR="YES". I'm not sure what type of exception is thrown, but you can find that easily by CFDUMPing the CFCATCH structure. M!ke -Original Message- From: Munson, Jacob [mailto:[EMAIL PROTECTED] Sent: Friday, Octobe

cfhttp timeout

2005-10-28 Thread Munson, Jacob
So I know I need to set a timeout for a cfhttp, but I'm not sure what to do if a timeout does occur. Here's what I've got now: Do I need to have the cfif to make sure I don't have a timeout, or do I just use the cfhttp results assuming they're there (and the CF server takes care of t

Re: CF based Flash Detection

2005-10-28 Thread John Beynon
cf is in the wrong place...cf is server remember, not client...flash is client :) >AM in a super tight pinchI know how to detect flash via javascript...and >then output the results in document.write method...but it seems not to be >working for huge amounts of text. > >Is there a tag somewher

CF Session vars timing out at different times

2005-10-28 Thread Howard Cope
hi anyone have experience of session variables timing out at different times? for example, session.currUserID is defined and set, but session.currUserName has become "undefined in session" also, this only causes and error if we are using a to catch errors and politely inform the user that an

Re: CF based Flash Detection

2005-10-28 Thread Howie Hamlin
http://www.macromedia.com/software/flashplayer/download/detection_kit/ HTH, -- Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server PrismAV - Virus scanning for ColdFusion and BlueDragon a

RE: MySQL DSN

2005-10-28 Thread Damien McKenna
> -Original Message- > From: Snake [mailto:[EMAIL PROTECTED] > > Create a MySQL DSN, put the username password into the DSN > and it works fine. Pass the username/password in the code and it > doesn't work. Which version of MySQL? What was the GRANT statement used to give permissions t

CF based Flash Detection

2005-10-28 Thread Eric Hoffman
AM in a super tight pinchI know how to detect flash via javascript...and then output the results in document.write method...but it seems not to be working for huge amounts of text. Is there a tag somewhere or a cf based routine to help with this? Thanks! Eric

Re: printing

2005-10-28 Thread Terry Schmitt
I have successfully used an ActiveX object called ScriptX (just Google it). They have a limited freeby and a more robust one for cost. This was using CF5 for an internal Work Order app where getting a quality printed Work Order was a pain in the butt. In this case it really needed to be printed

RE: formatting a date in cfgrid

2005-10-28 Thread Mike Nimer
Upgrade to 7.0.1, we fixed some bugs in cfgrid in the updater. I think this was fixed as well. ---nimer ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours

Re: printing

2005-10-28 Thread Simon Smith
>> From: Simon Smith [mailto:[EMAIL PROTECTED] >> I'm looking to develop an intranet app, that will print a >> browser page without the "number of prints" etc window >> appearing. I have access to client browser if that helps > >Luckily it is not possible to print something without the printer

RE: formatting a date in cfgrid

2005-10-28 Thread Mike Nimer
Upgrade to 7.0.1, we fixed some bugs in cfgrid in the updater. I think this was fixed as well. ---nimer > -Original Message- > From: Jean-Baptiste Emanuel Zorg [mailto:[EMAIL PROTECTED] > Sent: Monday, October 24, 2005 8:48 AM > To: CF-Talk > Subject: Re: formatting a date in cfgrid > > t

RE: Inline frames a good alternative for creating web applications?

2005-10-28 Thread Rick Faircloth
Thanks for the tip, Michael... Rick > -Original Message- > From: Dawson, Michael [mailto:[EMAIL PROTECTED] > Sent: Friday, October 28, 2005 9:47 AM > To: CF-Talk > Subject: RE: Inline frames a good alternative for creating web > applications? > > > If you are going to do AJAX or DHTML

RE: printing

2005-10-28 Thread Robertson-Ravo, Neil (RX)
Can't be done. If you are printing via the web it will always popup the Printer Dialog. -Original Message- From: Simon Smith [mailto:[EMAIL PROTECTED] Sent: 28 October 2005 14:39 To: CF-Talk Subject: printing HI, I'm looking to develop an intranet app, that will print a browser page w

RE: printing

2005-10-28 Thread Michael T. Tangorre
> From: Simon Smith [mailto:[EMAIL PROTECTED] > I'm looking to develop an intranet app, that will print a > browser page without the "number of prints" etc window > appearing. I have access to client browser if that helps Luckily it is not possible to print something without the printer dialog

Re: spam scoring

2005-10-28 Thread Howie Hamlin
If you want a free solution then you can install perl and spamassassin and use cfexecute to call spamassassin (I've done this in the past and it does work). If you want an easier solution and are running on Windows then you could try PrismAS - http://www.coolfusion.com/Products/PrismAS/index.c

RE: email code in cfc

2005-10-28 Thread Dawson, Michael
It would probably make better sense to have an emailer-type CFC that you pass into another CFC. Not that I always make sense, but that would keep the details of CFMAIL from the other CFCs. M!ke -Original Message- From: John C. Bland II [mailto:[EMAIL PROTECTED] Sent: Thursday, October

RE: Inline frames a good alternative for creating web applications?

2005-10-28 Thread Dawson, Michael
If you are going to do AJAX or DHTML stuff, there really is no point to using IFRAMEs. You can pretty much stick to DIVs. M!ke -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Thursday, October 27, 2005 11:01 PM To: CF-Talk Subject: RE: Inline frames a good altern

Re: FlashForm

2005-10-28 Thread Asim Manzur
thanks for your help, I have a strong concept of remoting. so, I can write something up. What I was wondering that I was using the following Now that not gonna work becuase that query will generate dynamically from remoting call. How can I assign the query object which is received by the Flash

RE: MINUS and INTERSECT support for query of queries

2005-10-28 Thread Michael T. Tangorre
> From: wolf2k5 [mailto:[EMAIL PROTECTED] > It looks like you can do an UNION in a query of queries with > ColdFusion MX 6.1, while MINUS and INTERSECT are not supported. > Is this a known limitation? > What about ColdFusion MX 7? QoQ doesn't support all the operators http://livedocs.macrome

printing

2005-10-28 Thread Simon Smith
HI, I'm looking to develop an intranet app, that will print a browser page without the "number of prints" etc window appearing. I have access to client browser if that helps anyone done anything similar ?? ~| Discover CFTick

Re: FlashForm

2005-10-28 Thread Robert Everland III
With remoting your function will submit a call back to coldfusion which will then send your query back into a structure that actionscipt can read. You then would have your values available in Flash and when you would need to go back and do another query could just do another remoting call. I don

MINUS and INTERSECT support for query of queries

2005-10-28 Thread wolf2k5
Hi, It looks like you can do an UNION in a query of queries with ColdFusion MX 6.1, while MINUS and INTERSECT are not supported. Is this a known limitation? What about ColdFusion MX 7? Thanks. ~| Find out how CFTicket can incr

Re: FlashForm

2005-10-28 Thread Robert Everland III
If this is HTML you will have to post back to your page so that ColdFusion knows what (var) is , if it's a self contained flash form then you just need to grab the var and do a flash remoting call since flash already knows what (var) is. ColdFusion has no idea what (var) is because you're on the

Re: FlashForm

2005-10-28 Thread Asim Manzur
I assume that actionscript function will run on the client but subsequent query has to run on the server. if I could run the query in advance, turn the query into arrays, and make them available to my actionscript. then how can I filter that query later based on the Situation above? Can somebody p

Re: Big Honking Complex Queries Make Me Want To Scream

2005-10-28 Thread Deanna Schneider
Ditto to what the others said, but you also haven't told us if all those tables will always have matching records - which will make the difference between using inner joins and outer joins. I think the main thing that you're not understanding is how to build up the inner join syntax. Here's an exa

RE: Inline frames a good alternative for creating web applications?

2005-10-28 Thread Rick Faircloth
Thanks for the tip, Calvin... Rick > -Original Message- > From: Calvin Ward [mailto:[EMAIL PROTECTED] > Sent: Friday, October 28, 2005 7:39 AM > To: CF-Talk > Subject: RE: Inline frames a good alternative for creating web > applications? > > > The Javascript Cookbook from O'Reilly. >

Re: Big Honking Complex Queries Make Me Want To Scream

2005-10-28 Thread Stan Winchester
I find it more useful for debugging purposes to build complex queries in a SQL ide such as SQLyog or MySQL Front, in the case of SQL Server I use Query Analyzer. You will get better information and it will take less time to debug. Stan Winchester Aftershock Web Design, Inc. President/Developer [

FlashForm

2005-10-28 Thread Asim Manzur
Hi all, A quick question. I have a flash form and on cfinput type="checkbox" I have a function call with a value on onClick event. on that function I can alert(var) and its displaying the value. The problem I am having is I need to run the query there with this var. i.e. WHERE ID = var its not wo

Re: email code in cfc

2005-10-28 Thread Aaron Rouse
Who decides if it is right or wrong? Go with what works best for you, that should be "right" On 10/27/05, John C. Bland II <[EMAIL PROTECTED]> wrote: > > I've been doing it for years but it doesn't mean its right. :-) It > definitely works and I don't seen any reason why you wouldn't/shouldn't. >

RE: Inline frames a good alternative for creating web applications?

2005-10-28 Thread Calvin Ward
The Javascript Cookbook from O'Reilly. It gets you right into the meat of the matter with very little fuss. -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent: Thursday, October 27, 2005 11:07 PM To: CF-Talk Subject: RE: Inline frames a good alternative for creating

Re: Big Honking Complex Queries Make Me Want To Scream

2005-10-28 Thread Michael Traher
best advice might be to build up the sql slowly - table at a time - that way you will see at what point it goes pear shaped. Mike ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start track

RE: Big Honking Queries Make Me Want To Scream

2005-10-28 Thread Michael T. Tangorre
> From: Les Mizzell [mailto:[EMAIL PROTECTED] Les, without knowing the relationships between the tables (one-to-one, one-to-many, many-to-many) this may or may not produce your desired output, but lets start with the following: SELECT p.FName, p.LName, s.Title, s.Network, c.Credit

FW: MySQL DSN

2005-10-28 Thread Snake
Anyone know this would happen. ?? CFMX6.1 on win2k Create a MySQL DSN, put the username password into the DSN and it works fine. Pass the username/password in the code and it doesn't work. The DSN also appears to randomly timeout after a certain period, and you need to re-reverify it in the cfad