QForms and Containers

2003-09-05 Thread Cedric Villat
Well, that didn't help much, hah. My problem is that I only have 1 select box, not 2. And on my end over here, if I simply add items to my select box through CF by looping through and adding 's those items I added through CF doesn't seem to get passed to the server. They appear in the select box

RE: cfquery??

2003-09-05 Thread Tony Weeg
i can answer this one.. is all i have used since day 1. now, you may need to use username/password for some odd reason...but thats it :)! tony -Original Message- From: Gary Hotko [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 3:59 PM To: CF-Talk Subject: Re: cfquery??

RE: state a reserved word in cf?

2003-09-05 Thread Tony Weeg
zackly what it is, im pretty sure. not a biggie, just kinda was like, WOAH!!! anyhew...later.. tw -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 5:55 PM To: CF-Talk Subject: RE: state a reserved word in cf? Ah, is state one of the

RE: CFC/Object Best Practice

2003-09-05 Thread Hal Helms
CFCs don't have true constructors at this time. To make up for that, several people have standardized around the idea of a method called init(), but it's up to the programmer to call init(); the system doesn't do it itself. Hal Helms See halhelms.com for classes in... Java for ColdFusion Programme

RE: credit card add-on

2003-09-05 Thread Matt Robertson
Verisign, at least with payflow pro, requires a cfx extension be installed in CF Administrator. You have to sign up for a verisign test account to get access to it. Other services do different things. I just finished a tie-in to Bank of America today and they don't require a cfx. Neither do a l

RE: Anyone going to MAX in November?

2003-09-05 Thread Jim Davis
I'd like to (I've gone to every DevCon so far) but it seems like this year the company isn't going to pony up. If I can afford it I may still try. Anybody want to adopt a fat man for the trip? ;^) Jim Davis > -Original Message- > From: Stacy Young [mailto:[EMAIL PROTECTED] > Sent: Thur

RE: CFMX and JTOpen

2003-09-05 Thread Joe Eugene
> I found out I was running CFMX 6.0. I upgraded to 6.1 and > everything works fine. If you are using ODBC with Client Access or something like that.. this connection will fail and is NOT Stable. You should use the JTOpen JDBC Type IV Driver. I have configured this several times before with CFMX

RE: performance of ThisTag.GeneratedContent

2003-09-05 Thread Qasim Rasheed
Hi, Have you given a thought of using instead? Qasim -Original Message- From: Michael Paris [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 12:20 PM To: CF-Talk Subject: performance of ThisTag.GeneratedContent Hi, This is a question regarding the *performance* of using

Re: request vs application scope

2003-09-05 Thread Sean A Corfield
On Thursday, Sep 4, 2003, at 10:56 US/Pacific, Mauricio Giraldo wrote: >>> In general, when using CFCs I would recommend creating the variables >> inside the CFCs as instance variables upon invocation rather than >> "look >> out" of the CFC to external data. > The idea is to have users generate th

RE: state a reserved word in cf?

2003-09-05 Thread Tony Weeg
true, very truebut...it was a stupid simple one time use page written to scrub a bad db with bad data ;) was trying to do it in as little code as possible the fastest way i could do it !!! scope tony, scope, YOU IDIOT (like ren, or was it stimpy?) -Original Message- From: Sean

Re: cfquery??

2003-09-05 Thread Gary Hotko
Does anyone know when Macromedia posted the depreciation (a date would help?) Tony Weeg wrote: >i can answer this one.. > > > > >is all i have used since day 1. > >now, you may need to use username/password for some odd >reason...but thats it :)! > >tony > >-Original Message- >From: Gary

Files with Time and date stamps...

2003-09-05 Thread Mike Mertsock
Well the cfdirectory tag works similarly to cfquery, in that it returns a set of query-type records and you can specify fields by which to sort. So try using cfdirectory to list files filtered by *.csv or FILENAME*.csv. And also specify sort="name DESC". This is assuming that the FILENAME part o

Re: Macromedians - Whitespace in CFMAIL?

2003-09-05 Thread Sean A Corfield
On Thursday, Sep 4, 2003, at 08:24 US/Pacific, Joshua Miller wrote: > How does Macromedia handle this for their outgoing mail? Or do you use > something other than CFMAIL? For complex historical reasons we currently use a legacy Perl system that processes custom template files and is driven by a

text file to database

2003-09-05 Thread Greg.Morphis
I have a text file.. a huge text file.. looks similar to this except it has 20+ columns and 4000+ rows 555 123 555 234 555 345 5999 Is there a way to take this data and dump it into an oracle database? Currently I use SQLLdr but would lik

RE: request vs application scope

2003-09-05 Thread Jim Davis
> -Original Message- > From: Mauricio Giraldo [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 04, 2003 1:56 PM > To: CF-Talk > Subject: request vs application scope > > >>In general, when using CFCs I would recommend creating the variables > >inside the CFCs as instance variables upo

Breeze Live - impressive!

2003-09-05 Thread Peter Tilbrook
Many of us would have experienced the Breeze Live enabled Studio MX 2004 presentation yesterday. Even in Australia (how far away from San Francisco can you possibly get) the experience was impressive. Well done MM! Peter Tilbrook ColdFusion Applications Developer ColdGen Internet Solutions 4/73 T

Files with Time and date stamps...

2003-09-05 Thread Mike Mertsock
Oof, immediately after postin my reply I realized a potentially much better solution. Will the last modified date/time of the files reflect the date and time mentioned in the filenames? If so, use cfdirectory as I mentioned but specify sort="datelastmodified DESC". Then first record returned wil

RE: Files with Time and date stamps...

2003-09-05 Thread Matt Blatchley
Awesome, thanks. -matt -Original Message- From: Mike Mertsock [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 10:26 PM To: CF-Talk Subject: Files with Time and date stamps... Oof, immediately after postin my reply I realized a potentially much better solution. Will the last

RE: cfquery??

2003-09-05 Thread Peter Tilbrook
I think that the ColdFusion Administrator DataSource control panel has been elevated to a degree where you can enter most of these values directly into the datasource setup screen. Unless you are in a hosted environment you should have more control over these settings. If not at least try to ensu

RE: removing a mapping programatically

2003-09-05 Thread Tim Blair
Simple, just delete the key from the structure. Extending Spike's example: // get mappings factory = createObject('java','coldfusion.server.ServiceFactory'); mappings = factory.runtimeservice.getMappings(); // create new mapping mappings['/foo'] = "c:\somepath\foo"; // remove mapping structdelet

RE: CFC/Object Best Practice

2003-09-05 Thread Tim Blair
> CFCs don't have true constructors at this time. To make up > for that, several people have standardized around the idea of > a method called init(), but it's up to the programmer to call > init(); the system doesn't do it itself. That's the one, hence the "comment" :) > Personally, I usu

RE: shared hosting security (was Re: DWMX 2004 - Whats new for us?)

2003-09-05 Thread Dan O'Keefe
Matt, Is it possible the hosting company can remove that object from the File class? Dan === Previous Message Below === -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 3:56 PM To: CF-Talk Subject: Re: sh

OT: Friday question.... any difference?

2003-09-05 Thread d.a.collie
I was mulling this over last night Should there be any preference between the following two examples of code? I prefer code block 2 as it is one less line, but are there any technical merits between the two Does it matter? Should I get out more? It c

RE: Friday question.... any difference?

2003-09-05 Thread Andy Ewings
well at a guess I would have said that code block 1 was better because you are doing 1 test and 1 set. In code block 2 you are potentially doing an unnecessary set making it slightly less efficient but if I'm gonna pull you up on this I guess I oughta get out more ;) -Original Message- Fr

RE: QForms and Containers

2003-09-05 Thread Dan O'Keefe
Are you trying to pass all values in a multi select box? I have a page similar to this, and when I click on the submit button, I see all of my values get highlighted and then the page posts. That is what the: objForm.fieldname.makeContainer(); method performs. Dan === Previous Me

RE: Friday question.... any difference?

2003-09-05 Thread d.a.collie
I see what you are saying hmmm, I still like code block two tho... looks prettier :-) -Original Message- From: Andy Ewings [mailto:[EMAIL PROTECTED] Sent: 05 September 2003 11:37 To: CF-Talk Subject: RE: Friday question any difference? well at a guess I would have said that code

RE: Friday question.... any difference?

2003-09-05 Thread d.a.collie
Don't worry Andy, I need to get out more too :-) -Original Message- From: David Collie (itndac) Sent: 05 September 2003 11:50 To: CF-Talk Subject: RE: Friday question any difference? I see what you are saying hmmm, I still like code block two tho... looks prettier :-) -Orig

RE: Friday question.... any difference?

2003-09-05 Thread Philip Arnold
> I see what you are saying hmmm, I still like code block > two tho... looks prettier :-) What you have to remember is that there is one thing a LOT more important than shaving fractions of milliseconds off of execution time... Readability and Updatability If you (the programmer) can't read

RE: Friday question.... any difference?

2003-09-05 Thread d.a.collie
>> Readability and Updatability If you (the programmer) can't read the code later, then it is >> unimportant that it runs a tiny bit faster than code that you can read and easily update A concur... >> Oh, on an semi-related note, in all but MX, putting code like this into CFSCRIPT will make it

FW: credit card add-on

2003-09-05 Thread Robert Orlini
> Hello, > > Is there an add-on I could use with CF that would link with a service such as > Verisign so that Verisign could do a credit card validation for my company? Is it > this module listed somewhere or available as freeware? Any suggestions on > incorporating this? > > Thanks. > > Robe

RE: text file to database

2003-09-05 Thread Hagan, Ryan Mr (Contractor ACI)
Hi Greg, I found this at Christian Cantrell's webblog. It's not exactly what you need, but should get you started. -- CC Says -- Anyway, did you know that CFHTTP can automatically turn a comma-delimited file into a query object for you? Let's say you have a file called data.txt that looks like t

Re: OT: Anyone going to MAX in November?

2003-09-05 Thread Candace Cottrell
I'll be there~ Candace K. Cottrell, Web Developer The Children's Medical Center One Children's Plaza Dayton, OH 45404 937-641-4293 http://www.childrensdayton.org [EMAIL PROTECTED] >>> [EMAIL PROTECTED] 9/4/2003 4:18:19 PM >>> Seems things may calm down around here come November so it lo

Re:

2003-09-05 Thread Deanna Schneider
Sweet! I never knew you could add more of those. I've only been using studio for what...5 years? Sheesh. - Original Message - From: "Tyler Silcox" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, September 04, 2003 1:42 PM Subject: RE: Yep, that's (sorta) what it is

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Tony Weeg
sho 'nuff cant wait... really going to focus on the cfc's and web services and xml track (my own little track that I came up with) who else? tony weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message-

RE: text file to database

2003-09-05 Thread Greg.Morphis
Thanks Ryan, that definitely gives me something to work off of. -Original Message- From: Hagan, Ryan Mr (Contractor ACI) [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 7:30 AM To: CF-Talk Subject: RE: text file to database Hi Greg, I found this at Christian Cantrell's webbl

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Raymond Camden
Just an FYI, Tony, I'm planning on running a BOF on CFC. BOF = Birds of a Feather. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia (http://www.macromedia.com/go/teamm

RE: CFC/Object Best Practice

2003-09-05 Thread Raymond Camden
While what you say is true, folks should remember that CF will run any code outside of cffunction tags automatically. So, if you do this: Then you will _not_ need to call init() yourself. ==

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Tony Weeg
cool. what day? uhhh, im there dude. tony weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 9:16 AM To: CF-Talk Subj

Re: OT: Anyone going to MAX in November?

2003-09-05 Thread Thomas Chiverton
On Friday 05 Sep 2003 14:16 pm, Raymond Camden wrote: > I'm planning on running a BOF on CFC. BOF = Birds of > a Feather. Great. What's a 'birds of a feather' ? -- Tom Chiverton (sorry 'bout sig.) Advanced ColdFusion Programmer Tel: +44(0)1749 834997 email: [EMAIL PROTECTED] BlueFinger Limited

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Tony Weeg
it's a meeting of a group of peeps who all are interested in the same thing hence the nameBirds of a Feather (flock together) tony weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Th

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Raymond Camden
BOF sessions are sessions run by folks at night during the conference. They are typically short discussions on various specific topics that are not covered in depth at MAX. It's kind of like an opportunity to have an informal discussion about something.

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Raymond Camden
They haven't opened the submission process yet for BOF, so I don't know. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia)

RE: CFC/Object Best Practice

2003-09-05 Thread Raymond Camden
> > Then you will _not_ need to call init() yourself. > > That depends if you need to pass any parameters in to the > "constructor" > -- if you do then that method won't be appropriate. > Unless of course it takes arguments but has default values. ;) Then of course you end up with a CFC where i

RE: CFC/Object Best Practice

2003-09-05 Thread Tim Blair
> Then you will _not_ need to call init() yourself. That depends if you need to pass any parameters in to the "constructor" -- if you do then that method won't be appropriate. Tim. --- RAWNET LTD - Internet, New Media and ebusiness Gurus. Visit

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Tony Weeg
oh ok, cool...well either way, im sure ill figger it out ;) later. tony weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Friday, September 05,

RE: CFC/Object Best Practice

2003-09-05 Thread Hal Helms
That will work only if init() doesn't take any arguments. Hal Helms See halhelms.com for classes in... Java for ColdFusion Programmers Fusebox 4 Mach-II OO Applications with CFCs -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 9:18 AM To

RE: Anyone going to MAX in November?

2003-09-05 Thread d.a.collie
Pauline Quirk guest speaking? ;-) -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: 05 September 2003 14:29 To: CF-Talk Subject: RE: Anyone going to MAX in November? it's a meeting of a group of peeps who all are interested in the same thing hence the nameBird

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Greg Luce
What is MAX? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 8:16 AM To: CF-Talk Subject: RE: OT: Anyone going to MAX in November? Just an FYI, Tony, I'm planning on running a BOF on CFC. BOF = Birds of a Feather. =

RE: RE: CFC/Object Best Practice

2003-09-05 Thread Tyler Silcox
Mike, Which UDF is it, that you like? Tyler -Original Message- From: Mike Brunt [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 4:05 PM To: CF-Talk Subject: RE: RE: CFC/Object Best Practice Ian, I may have said this already but just in case. It really is worth taking a l

OT: Friday question.... any difference?

2003-09-05 Thread Mike Mertsock
I think block 1 is optimal in this case. In [I assume] the most common case, that myQuery.RecordCount is GT 0, it will result in one less string assignment, thus better performance. Also, this is probably not a situation where your cfif might in the future expand into a cfif/cfelseif/cfelseif/..

RE: CFC/Object Best Practice

2003-09-05 Thread Raymond Camden
> That will work only if init() doesn't take any arguments. I already replied to this, but again, only if it's _required_ arguments, or arguments you can't default in the automatic call. === Raymond Camden, ColdFusion Jedi M

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Raymond Camden
MAX is this years DevCon. It's the big Macromedia conference covering art crap and code crap. Forgive my generalizations. ;) More info here: http://www.macromedia.com/macromedia/conference/ I'm speaking on extending CF (udfs, custom tags, cfcs, etc). ===

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Ben Forta
>> art crap and code crap Having a rough day, Ray? :-) -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 9:58 AM To: CF-Talk Subject: RE: OT: Anyone going to MAX in November? MAX is this years DevCon. It's the big Macromedia conference

Re: shared hosting security (was Re: DWMX 2004 - Whats new for us?)

2003-09-05 Thread Matt Liotta
No -Matt On Friday, September 5, 2003, at 06:24 AM, Dan O'Keefe wrote: > Matt, > > Is it possible the hosting company can remove that object from the File > class? > > Dan > === Previous Message Below === > > > -Original Message- > From: Matt Liotta [mailt

RE: Anyone going to MAX in November?

2003-09-05 Thread Stacy Young
That depends, do you come with a 12 pack of beers? lol Stace -Original Message- From: Jim Davis [mailto:[EMAIL PROTECTED] Sent: September 5, 2003 1:36 AM To: CF-Talk Subject: RE: Anyone going to MAX in November? I'd like to (I've gone to every DevCon so far) but it seems like this year

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Raymond Camden
Crap is my official way of saying I'm not a marketer. ;) Crap = lots and lots of stuff. Just in case it wasn't clear, I defintely don't think MAX is crap (hey, I'm speaking there!) and it's the best conference you will attend this year. Sorry folks! :) =

RE:

2003-09-05 Thread Mark A. Kruger - CFG
Tyler, Snippets as well - you can define a beginning and ending, highlight a block of code and the bracket it in. -Mark -Original Message- From: Tyler Silcox [mailto:[EMAIL PROTECTED] Sent: Thursday, September 04, 2003 1:42 PM To: CF-Talk Subject: RE: Settings -> Editor (it's a branch o

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Mark A. Kruger - CFG
I'm going and bringing friends!! (I finally made a couple friends!) -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 8:19 AM To: CF-Talk Subject: RE: OT: Anyone going to MAX in November? cool. what day? uhhh, im there dude. tony weeg sr. web

Re: OT: Anyone going to MAX in November?

2003-09-05 Thread Pablo Varando
I'm thinking about it, but havent reached a decision yet ;) Pablo - Original Message - From: "Candace Cottrell" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, September 05, 2003 7:43 AM Subject: Re: OT: Anyone going to MAX in November? > I'll be there~ > > Candace K

Can someone tell me what is wrong with this recursive function? [ Long e-mail - code and examples]

2003-09-05 Thread DURETTE, STEVEN J (AIT)
Hi all, I have written a recursive function that isn't displaying information correctly and I was wondering if anyone else could see what I am doing wrong. Here is the code: "> "> "> Here is the output: ScanResults

credit card add-on

2003-09-05 Thread Robert Orlini
Hello, Is there an add-on I could use with CF that would link with a service such as Verisign so that Verisign could do a credit card validation for my company? Is it this module listed somewhere or available as freeware? Any suggestions on incorporating this? Thanks. Robert O. HWW

RE: Java Include

2003-09-05 Thread Raymond Camden
http://devilm.com/ Second entry - from August 22. === Raymond Camden, ColdFusion Jedi Master for Mindseye, Inc (www.mindseye.com) Member of Team Macromedia (http://www.macromedia.com/go/teammacromedia) Email: [EMAIL PRO

Java Include

2003-09-05 Thread Brad Roberts
I saw a website the other day that told how to include a file and CF not parse the file. Anyone know what site I'm talking about, or know how to do it? Thanks, Brad ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4

Sending binary directly to the browser?

2003-09-05 Thread Claude Schneegans
Hi, I have a CFX_ that creates a gif file that I want to be returned to client browser. The only way I have found is to write the file somewhere on the disk, then use the following code in the calling template: This is kind of cumbersome and inefficient. I'm looking for a way to send the gif i

RE: credit card add-on

2003-09-05 Thread Dan Phillips \(CFXHosting.com\)
Verisign has a tag called PayFlowPro that is free once you sign up for their program. It will work with CF. IMHO, Authorize.net is much easier to work with. Dan Phillips www.CFXHosting.com 1-866-239-4678 [EMAIL PROTECTED] Do you want complete ColdFusion Administrator access? RDS? Terminal Ser

RE: credit card add-on

2003-09-05 Thread Mark A. Kruger - CFG
Robert, To use verisign your best option is "payflowPro" - it's a Java based CFX tag. It's part of the download from verisign. -Mark -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 9:15 AM To: CF-Talk Subject: credit card add-on Hello

Re: looping dilema on multiple form inserts

2003-09-05 Thread laritru
Thanks for the tip I did checked the db and is not the columns in the table is that my loop is not working properly. It is inserting the values of all events chosen in my form into one row. This is the original loop I used. This is the one that causes me to get the first error. --ins

Re: Sending binary directly to the browser?

2003-09-05 Thread Matt Liotta
The below should do the trick for you. #gifdatahere# Matt Liotta President & CEO Montara Software, Inc. http://www.MontaraSoftware.com (888) 408-0900 x901 ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscripti

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Stacy Young
Are video cameras allowed for non-MM folks? If so, Ben I gonna try and catch you for a short interview. ;) I'm hoping to do a semi-live feed back to our office for the rest of the development team. Stace -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: September 5, 20

RE: RE: CFC/Object Best Practice

2003-09-05 Thread Mike Brunt
Bloody hell what a typo and apologies to all, I meant PDF. :o| Kind Regards - Mike Brunt Webapper Services LLC Web Site http://www.webapper.com Blog http://www.webapper.net Webapper -Original Message- From: Tyler Silcox [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 6:44 AM

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Ben Forta
All interview requests need to be forwarded to my press agent. Oh, I'm kidding ... sure, that is allowed. But I reserve the right to not be videotaped while at bars. :-) -Original Message- From: Stacy Young [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 10:33 AM To: CF-Talk

RE: cfquery??

2003-09-05 Thread Dave Watts
> So when i am coding what should I use? > > Or is it going to be that all you need to do is name > and datasource? Usually, that's all you've ever needed anyway - name and datasource. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

RE: Anyone going to MAX in November?

2003-09-05 Thread John Wilker
Same boat. Last year my old employer coughed up the expense. Even with the MMUG Manager discount, On my own dime it's a no go :( Now if it were in San Diego like they said it would be last year then it might a little different since I wouldn't need to fly or get a room :) -Original Message

Heisenberg Uncertainty Principle [WAS Re: machII(too much)]

2003-09-05 Thread John Paul Ashenfelter
> I think that the concepts are different. The questions concerns what > it's called when you change the environment, the Heisenberg uncertainty > principle says that you MUST change your environment (specifically the > thing being tested). > > Or am I just being too damn pedantic in the morning?

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Douglas.Knudsen
last year they had folks doing this. I recall Jochem running around with a digital camera too. woot! Unfortunately I'm not going this year though. :( Doug >-Original Message- >From: Stacy Young [mailto:[EMAIL PROTECTED] >Sent: Friday, September 05, 2003 10:33 AM >To: CF-Talk >Subject:

RE: RE: CFC/Object Best Practice

2003-09-05 Thread Tyler Silcox
For a sec there, I thought maybe Hal or Ben snuck some super duper "kewl" UDF into Mach II...which, of course is kewl all by it's lonesome, no biggie-> -Original Message- From: Mike Brunt [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 10:45 AM To: CF-Talk Subject: RE: RE: CFC/

Re: Sending binary directly to the browser?

2003-09-05 Thread Claude Schneegans
>> #gifdatahere# I've tried, but it does not work. If gifdatahere contains binary, CFCONTENT complains it can accept only a string, if it is a string, the string is truncated to the first zero byte. ~| Archives: http://www.houseo

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Douglas.Knudsen
Bars in SLC, Utah??? as my coworkers say when on business 'outings', "NO FLASH PHOTOGRAPHY!" Speaking of thisanyone get a video of Ben singing away last year? :) Doug >-Original Message- >From: Ben Forta [mailto:[EMAIL PROTECTED] >Sent: Friday, September 05, 2003 10:57 AM >To: CF-

RE: Sending binary directly to the browser?

2003-09-05 Thread Douglas.Knudsen
tried delivering the gif via cfcontent directly??? Doug >-Original Message- >From: Claude Schneegans [mailto:[EMAIL PROTECTED] >Sent: Friday, September 05, 2003 11:04 AM >To: CF-Talk >Subject: Re: Sending binary directly to the browser? > > >>> >#gifdatahere# > >I've tried, but it does n

Re: Sending binary directly to the browser?

2003-09-05 Thread Matt Liotta
>>> > #gifdatahere# > > I've tried, but it does not work. > If gifdatahere contains binary, CFCONTENT complains it can accept only > a string, > if it is a string, the string is truncated to the first zero byte. > You aren't supposed to put the binary data in the cfcontent tag. If you look at th

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Tony Weeg
can I cfset the right to buy you a good dark beer? tony weeg sr. web applications architect navtrak, inc. [EMAIL PROTECTED] www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 10:57 AM To: CF-

Re: OT: Anyone going to MAX in November?

2003-09-05 Thread Charlie Griefer
Original Message - From: "Ben Forta" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, September 05, 2003 7:57 AM Subject: RE: OT: Anyone going to MAX in November? > All interview requests need to be forwarded to my press agent. > > Oh, I'm kidding ... sure, that is al

RE: Sending binary directly to the browser?

2003-09-05 Thread Andre Mohamed
Are you sure it's binary data? Does it return true when you try isBinary(gifdatahere)?? You can try outputting the data to the output stream directly by utilizing the underlying page context. Christian Cantrell blogged an example of doing this here: http://www.markme.com/cantrell/archives/00265

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Ben Forta
>> Bars in SLC, Utah??? A reliable source tells me that these do indeed exist. >> Speaking of thisanyone get a video of Ben singing away last year? :) No, and so I can say "it never happened!" :-) --- Ben -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent:

Re: Sending binary directly to the browser?

2003-09-05 Thread Claude Schneegans
>>tried delivering the gif via cfcontent directly??? Sure, it works, I have the CF_ tag to write the file, then CFCONTENT sends the file, but this means the file must be written then read again for nothing. The overhead is significant. What I want is return the gif image directly to the browser

RE: Massaged query output to Excel file (was query output to Excel fi le)

2003-09-05 Thread Andre Mohamed
George, I have done this and it works quite successfully. I use XSLT to transform the XML into both tab delimited and csv format amongst others then in combination with cfcontent I allow the user to "export/save" the data in their desired format. The XML document is built up at the same time as

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Ben Forta
Sure, but not as a karaoke bar. :-) -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 11:22 AM To: CF-Talk Subject: RE: OT: Anyone going to MAX in November? can I cfset the right to buy you a good dark beer? tony weeg sr. web applications ar

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Ben Forta
:-) -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 11:33 AM To: CF-Talk Subject: Re: OT: Anyone going to MAX in November? Original Message - From: "Ben Forta" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Fri

MVDB

2003-09-05 Thread LI, Chunshen \(Don\)
Hello, I'm wondering if anyone has ever worked on a Multi-valued Database system like UniData from ROI. Thanks. ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?lin

Re: OT: Anyone going to MAX in November?

2003-09-05 Thread Pablo Varando
Ben is speechless ;) hehe Pablo - Original Message - From: "Ben Forta" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, September 05, 2003 10:49 AM Subject: RE: OT: Anyone going to MAX in November? > :-) > > > > -Original Message- > From: Charlie Griefer [m

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Hal Helms
As Mr. Forta's press agent, all queries should be passed through me. You'll find a form at my site for initiating a request; just remember to include the $7495.00 "processing fee". ;-) Hal Helms See halhelms.com for classes in... Java for ColdFusion Programmers Fusebox 4 Mach-II OO Applications w

Re: OT: Anyone going to MAX in November?

2003-09-05 Thread Jim Campbell
>> "Forta Gone Wild" ... and me without Photoshop here at work... Oh, the humanity! - Jim Charlie Griefer wrote: > Original Message - >From: "Ben Forta" <[EMAIL PROTECTED]> >To: "CF-Talk" <[EMAIL PROTECTED]> >Sent: Friday, September 05, 2003 7:57 AM >Subject: RE: OT: Anyone going to

Re: QForms and Containers

2003-09-05 Thread Cedric Villat
Dan, Yes, I am trying to pass all values from a multi-select box. In my case, I have a simple text box which people type into, and when they click "Add" it gets added to the multi select box. Here is my code. Email Existing Email Addresses #a# So when p

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Ben Forta
And if agents typically take 15% ... hu -Original Message- From: Hal Helms [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 12:06 PM To: CF-Talk Subject: RE: OT: Anyone going to MAX in November? As Mr. Forta's press agent, all queries should be passed through me. You'll

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Stacy Young
I'd have nothing to hold the camera with considering I'll have a beer in each hand. ;) -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: September 5, 2003 10:57 AM To: CF-Talk Subject: RE: OT: Anyone going to MAX in November? All interview requests need to be forwarded

Compare list vs. recordset?

2003-09-05 Thread Jeff Chastain
I am looking for suggestions on the best way to go about this. I am receiving two comma separated lists from a form - one is a list of numerical object ids and the other is a corresponding list of numerical object classes (i.e. the first item in the object id list has a class corresponding to the

Another CFC question.

2003-09-05 Thread Ian Skinner
If I am understanding and using this correctly, a variable in a cfc that is declared into the "Variables" scope will be visible to all other methods on the CFC, but not to callers outside of the cfc. A variable in a cfc that is declared into the "This" scope is also visible to all other methods, b

Re: OT: Anyone going to MAX in November?

2003-09-05 Thread Jim Campbell
Sounds like "[EMAIL PROTECTED]" got busted by the RIAA. - Jim Hal Helms wrote: >As Mr. Forta's press agent, all queries should be passed through me. >You'll find a form at my site for initiating a request; just remember to >include the $7495.00 "processing fee". > >;-) > >Hal Helms >See halhelms

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread John Wilker
Utah has no idea what is in store for it :) -Original Message- From: Stacy Young [mailto:[EMAIL PROTECTED] Sent: Friday, September 05, 2003 9:14 AM To: CF-Talk Subject: RE: OT: Anyone going to MAX in November? I'd have nothing to hold the camera with considering I'll have a beer in each

RE: OT: Anyone going to MAX in November?

2003-09-05 Thread Sean
And only if you promise to NEVER use that joke again ;> -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED] Sent: Saturday, 6 September 2003 01:45 To: CF-Talk Subject: RE: OT: Anyone going to MAX in November? Sure, but not as a karaoke bar. :-) -Original Message- From:

  1   2   3   >