RE: Can I use CF 6.1 and CF 7 on the same machine?

2006-05-29 Thread Snake
Yes you can. By default CFMX7 installs to a different path c:\cfusionmx7\ so will not overwrite your CFMX6 installation. So just install it as normal, but just install it in standlone mode (i.e. using the internal jrun web server) so that your web server configuration is not altered. Then once

OT: Autorun exe from a usb key

2006-05-29 Thread Jason Rogoz
Has any one created an autorun.inf file that will run an exe when the user inserts the usb key? Jason Rogoz Programmer / Analyst Zoom Communications Inc. Calgary, Alberta, Canada Office: (403) 229-2511 Fax: (403) 229-4211 Toll Free: 1-866-698-8932 www.zoomcom.ca http://www.zoomcom.ca/

Re: cfinsert and pasted crap in a textarea

2006-05-29 Thread Denny Valliant
On 5/28/06, Les Mizzell [EMAIL PROTECTED] wrote: Denny Valliant wrote: One of the nice features of FCKEditor is the paste from Word, I forgot to mention - they're copying and pasting from a FileMaker Pro database on a Mac. Gawd only knows where the original material came from before it was

Ann: FarCry Gonzales (v3.1) Sneak Peek

2006-05-29 Thread Geoff Bowers
Folks, Don't know how many folks got a chance to see the presentation. In any event, it was recorded and I put together a script highlighting the various parts of the gig. Makes it easy to fast forward for the impatient :) FarCry Gonzales (v3.1) Sneak Peek

Re: Autorun exe from a usb key

2006-05-29 Thread Mike Tangorre
This should help you out... http://www.fatwallet.com/t/28/511697/ Mike From: Jason Rogoz [EMAIL PROTECTED] Has any one created an autorun.inf file that will run an exe when the user inserts the usb key? Jason Rogoz ~|

RE: Can I use CF 6.1 and CF 7 on the same machine?

2006-05-29 Thread Oï¿œuz_Demirkap
You can even create some new mime types such as *.cf7, *.cf6 and define required CF version. :) -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Montag, 29. Mai 2006 12:55 To: CF-Talk Subject: RE: Can I use CF 6.1 and CF 7 on the same machine? Yes you can. By default

Looking for MVC Framework Resources

2006-05-29 Thread Aaron Roberson
I am wanting to design my application using the Model View Controller (MVC) framework and I am wondering if anyone could list some good resouces on getting started with MVC. I think I understand the concept, but I don't have much of a clue on how to actually implement it in my application. Hints,

Re: Can I use CF 6.1 and CF 7 on the same machine?

2006-05-29 Thread Nathan Drury
Thanks for your replies guys. I'm going to investigate virtualization first, but if I hit a road block I'll consider your suggestions. Cheers Nathan ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241711 Archives:

Re: Looking for MVC Framework Resources

2006-05-29 Thread Nathan Drury
Hi Aaron This is a bit old now but the principles still apply - http://www.benorama.com/coldfusion/patterns/part2.htm I think Benoit does a good job of explaining MVC in CF terms. Cheers Nathan ~| Message:

RE: Looking for MVC Framework Resources

2006-05-29 Thread Eric Roberts
Check out fusebox at fusebox.org (I think that's the right addy) Eric -Original Message- From: Aaron Roberson [mailto:[EMAIL PROTECTED] Sent: Monday, 29 May 2006 20:36 To: CF-Talk Subject: Looking for MVC Framework Resources I am wanting to design my application using the Model View

Re: Looking for MVC Framework Resources

2006-05-29 Thread Aaron Roberson
Nathan, Thanks for the link. I actually came across that some time back, but I wasn't ready to tackle MVC (or CFC's at all) at that time. I read it over, and I think I understand it much better now. Eric, I am actually going to progress from straight MVC to Model Glue, so Fusebox really is out

Re: Looking for MVC Framework Resources

2006-05-29 Thread Aaron Roberson
In Forta's model layer cfc (ArticleEntity.cfc) he creates a struct named instance. Wouldn't it be better to call the psuedo-constructor function and then just reference all of the values with the this keyword? In that case, would I still use the cfproperty / tages in the constructor area? I am new

Re: Looking for MVC Framework Resources

2006-05-29 Thread Aaron Roberson
Question about the conroller: In the controller layer of Forta's example (PublicationController.cfc), he has a block of script that sets the instance parameters values as follows: cfscript article.setTitle(form.title); article.setTeaser(form.teaser); article.setBody(form.body);

Re: Looking for MVC Framework Resources

2006-05-29 Thread James Holmes
No. Properties in THIS can be overwritten from outside the component with no checks or business logic - getter and setter methods prevent this from happening. On 5/30/06, Aaron Roberson [EMAIL PROTECTED] wrote: In Forta's model layer cfc (ArticleEntity.cfc) he creates a struct named instance.

Re: Looking for MVC Framework Resources

2006-05-29 Thread Aaron Roberson
I'm getting closer to figuring this out... I am wondering, do you access class methods in the model layer directly from the view layer and instance methods through the controller layer? I keep finding myself asking, How do you pass an argument value to a class method? Also, when should you

Re: Looking for MVC Framework Resources

2006-05-29 Thread James Holmes
Perhaps this will help with some of those questions: http://coldfusion.sys-con.com/read/42077.htm On 5/30/06, Aaron Roberson [EMAIL PROTECTED] wrote: I'm getting closer to figuring this out... I am wondering, do you access class methods in the model layer directly from the view layer and