Re: FREE Homesite/CF Studio CFC VTML Generator

2005-12-01 Thread Douglas Knudsen
wow!  jamming!

Usualy I use this in oracle for sequences.  First I have a sequence
created called say seq_myseq.  Then for table foo an insert would look
like
INSERT INTO foo
(pk, col1, col2)
VALUES
(seq_myseq.nextval, 'data1','data2')

I suppose if you gave a choice for this in your wizard, you could ask
for the sequence name an duse the above for inserts.

HTH

DK

On 11/30/05, Stan Winchester <[EMAIL PROTECTED]> wrote:
> I just uploaded a new version that now supports the following primary keys: 
> max_id, autonumber, uuid, guid, text user defined, and I suppose I should add 
> a numeric user defined. The download can be found at: 
> http://www.aftershockweb.net/forums/messages.cfm/ThreadId/50
>
> Also, could someone send me an example of Oracle numeric sequenced primary 
> keys?
>
> Thanks
>
> >I just put a FREE new HomeSite+/ColdFusion Studio Wizard that builds a CFC
> >based CRUD application. Please feel free to download and use it. If you use
> >it, please let me know. If you have any comments, suggestions, complaints,
> >or whatever, please post them to on:
> >http://www.aftershockweb.net/forums/forums.cfm/ConferenceId/8
> >
> >Here is a link to the thread containing the download:
> >http://www.aftershockweb.net/forums/messages.cfm/ThreadId/50
> >
> >I know there is a lot of work to do to it still, but it is a start.
> >
> >Thank you,
> >Aftershock Web Design, Inc.
> >by: Stan Winchester
> >President/Developer
> >[EMAIL PROTECTED]
> >http://www.aftershockweb.com/
> >Phone 503-244-3440
> >Fax 503-244-3454
>
> 

~|
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 with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225859
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: FREE Homesite/CF Studio CFC VTML Generator

2005-11-30 Thread Stan Winchester
I just uploaded a new version that now supports the following primary keys: 
max_id, autonumber, uuid, guid, text user defined, and I suppose I should add a 
numeric user defined. The download can be found at: 
http://www.aftershockweb.net/forums/messages.cfm/ThreadId/50 

Also, could someone send me an example of Oracle numeric sequenced primary 
keys? 

Thanks

>I just put a FREE new HomeSite+/ColdFusion Studio Wizard that builds a CFC
>based CRUD application. Please feel free to download and use it. If you use
>it, please let me know. If you have any comments, suggestions, complaints,
>or whatever, please post them to on:
>http://www.aftershockweb.net/forums/forums.cfm/ConferenceId/8 
>
>Here is a link to the thread containing the download: 
>http://www.aftershockweb.net/forums/messages.cfm/ThreadId/50 
>
>I know there is a lot of work to do to it still, but it is a start.
> 
>Thank you,
>Aftershock Web Design, Inc.
>by: Stan Winchester
>President/Developer
>[EMAIL PROTECTED]  
>http://www.aftershockweb.com/   
>Phone 503-244-3440
>Fax 503-244-3454

~|
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 with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225785
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Using request var in CFC - was : FREE Homesite/CF Studio CFC VTML Generator

2005-11-28 Thread Aaron Rouse
I do this, then within each "function" I call a private function that checks
to see that the CFC has been initialized.

On 11/28/05, Matthew Walker <[EMAIL PROTECTED]> wrote:
>
> Just pass it in as an argument.
>
>  "mycfc").init(datasource="myDatasource")>
>
> Ensure your init() method returns "this" to use the syntax above.
> Alternatively, make a small struct of useful settings and pass that in.
>
>
> -Original Message-
> From: Stan Winchester [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, 29 November 2005 2:16 p.m.
> To: CF-Talk
> Subject: Using request var in CFC - was : FREE Homesite/CF Studio CFC
> VTML Generator
>
> What is best practise for passing dsn variable to cfc? In the CFMX (v
> 6.x) Bible shows using request variables to pass dsn, but Douglas says
> that is Blasphemy!  Heresy!, well he was just kidding, but seriously
> what is best practise? Should it be passed as an argument?
>
> > >
> > > Why should I pass the DSN to the CFC and use the request scope? I
> > based this wizard off chapters in the CFMX Bible.
> >
> > CFMX Bible, you say?  Blasphemy!  Heresy!  ha!  J/K  It is excepted
> > practise to never use vars outside the CFC.
> >
>
>
>
> 

~|
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 with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225498
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


RE: Using request var in CFC - was : FREE Homesite/CF Studio CFC VTML Generator

2005-11-28 Thread Matthew Walker
Just pass it in as an argument. 

 

Ensure your init() method returns "this" to use the syntax above.
Alternatively, make a small struct of useful settings and pass that in. 


-Original Message-
From: Stan Winchester [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, 29 November 2005 2:16 p.m.
To: CF-Talk
Subject: Using request var in CFC - was : FREE Homesite/CF Studio CFC
VTML Generator

What is best practise for passing dsn variable to cfc? In the CFMX (v
6.x) Bible shows using request variables to pass dsn, but Douglas says
that is Blasphemy!  Heresy!, well he was just kidding, but seriously
what is best practise? Should it be passed as an argument?

> >
> > Why should I pass the DSN to the CFC and use the request scope? I
> based this wizard off chapters in the CFMX Bible.
> 
> CFMX Bible, you say?  Blasphemy!  Heresy!  ha!  J/K  It is excepted 
> practise to never use vars outside the CFC.
> 



~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225478
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Using request var in CFC - was : FREE Homesite/CF Studio CFC VTML Generator

2005-11-28 Thread Sean Corfield
On 11/28/05, Stan Winchester <[EMAIL PROTECTED]> wrote:
> What is best practise for passing dsn variable to cfc?

It depends.

As you get more comfortable with OO, you'll feel less comfortable with
a CFC "reaching outside itself" for data.

What people often do with their data access CFCs is to pass the DSN
into the init() method and have the CFC remember it (in variables
scope - and assuming you save the CFC to application scope).

Then maybe you'd move to using an Inversion of Control container like
ColdSpring to handle the initialization and injection.

It's all down to what you feel comfortable with - as long as you keep
an eye on where you want to go.
--
Sean A Corfield -- http://corfield.org/
Got frameworks?

"If you're not annoying somebody, you're not really alive."
-- Margaret Atwood

~|
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 with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225476
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Using request var in CFC - was : FREE Homesite/CF Studio CFC VTML Generator

2005-11-28 Thread Stan Winchester
What is best practise for passing dsn variable to cfc? In the CFMX (v 6.x) 
Bible shows using request variables to pass dsn, but Douglas says that is 
Blasphemy!  Heresy!, well he was just kidding, but seriously what is best 
practise? Should it be passed as an argument?

> >
> > Why should I pass the DSN to the CFC and use the request scope? I 
> based this wizard off chapters in the CFMX Bible.
> 
> CFMX Bible, you say?  Blasphemy!  Heresy!  ha!  J/K  It is excepted
> practise to never use vars outside the CFC.
> 

~|
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 with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225475
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: FREE Homesite/CF Studio CFC VTML Generator

2005-11-28 Thread Stan Winchester
Tony, Thanks for the kind words!

I just put a new version up. See: 
http://www.aftershockweb.net/forums/messages.cfm/ThreadId/50/

Cheers, Stan

Thank you,
Aftershock Web Design, Inc.
by: Stan Winchester
President/Developer
http://www.aftershockweb.com/   

>stan.
>
>i just downloaded, and cannot wait to start using, what a GREAT idea.
>
>when you make changes, will you notify us here so we can download the new ones?
>
>tony
>
>On 11/28/05, Stan Winchester <[EMAIL PROTECTED]> wrote:
>>

~|
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 with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225473
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: FREE Homesite/CF Studio CFC VTML Generator

2005-11-28 Thread Douglas Knudsen
On 11/28/05, Stan Winchester <[EMAIL PROTECTED]> wrote:
> Douglas, Thanks for the feedback!

np...hey, DreamWeaver users already have this functionality.  Do you use DWMX?

>
> I just had a duh experience; I'll make the username/password optional as it 
> should be.
>
> "DataSource RootURL" is a typo, I'll change it to read "RootURL"
>
> Why should I pass the DSN to the CFC and use the request scope? I based this 
> wizard off chapters in the CFMX Bible.

CFMX Bible, you say?  Blasphemy!  Heresy!  ha!  J/K  It is excepted
practise to never use vars outside the CFC.

>
> I've never seen a forum that allows anonymous posts, and it does concern me a 
> bit. Maybe I could setup an "anonymous user" account, and make it an option 
> for a future release.

If i were to add just a post or two for quick feedback and not want to
be involved, anonymous would be good.

>
> I'll make max_id an option and also provide for autonumber. What is a 
> sequenced primary key; is that like autonumber? Should I make that an option 
> too?

No relation to autonumber, but in effect its the same thing, just not
automagik.  have to access it like so

sequencename.nextval

>
> As my of my clients are small businesses/non-profits, so I've never had to 
> use Oracle. I guess I need to put it on my dev server.
>
> As I have worked on our forums, shopping cart and other apps we are selling I 
> have found designing for cross platforms can be a pain, and there are 
> definite trade offs.

Yeah, in this case, IMHO, I'd say Oracle support is not needed.  Not
many non-profs can afford it, eh?  Of course there is Oracle Express
now.  Even so, depends on who your target audience will be eventually.
 Either way me thinks this will be a difficult thing to cover, not all
PKs are sequences, auto numbers, or even numbers.  But then if this is
used for maintenance/lookup tables that have such things, a wonderful
wizard

DK

>
> >ah, ok.  Neat idea. Some things to consider.
> >I never use a uid/password in my cfquery tags, why require these in
> >this wizard?
> >The above form requiring uid/pwd for a DSN is required after you have
> >browsed for a particular DSN to use.
> >The above form has a field 'DataSource RootURL', shouldn't this
> >actually be something like 'URL to Root of Application'?  I thought it
> >wanted the JDBC url or something.
> >Should really pass in the DSN to the CFC, not access the request scope
> >from within the CFC.
> >Allow anonymous posts on your forum :)
> >Looks cool and very helpful, a bit of a way to go to support different
> >DBs though, eh?  For instance, we use Oracle.  For numeric sequenced
> >primary keys, we use a sequence.  No need for computing max id to get
> >the next one.  But then this must be a tricky part to make universal
> >code for, eh?
> >
> >DK
> >
> >
> >
> >On 11/27/05, Stan Winchester <[EMAIL PROTECTED]> wrote:
> >>
>
> 

~|
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 with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225446
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: FREE Homesite/CF Studio CFC VTML Generator

2005-11-28 Thread Tony
stan.

i just downloaded, and cannot wait to start using, what a GREAT idea.

when you make changes, will you notify us here so we can download the new ones?

tony

On 11/28/05, Stan Winchester <[EMAIL PROTECTED]> wrote:
> Douglas, Thanks for the feedback!
>
> I just had a duh experience; I'll make the username/password optional as it 
> should be.
>
> "DataSource RootURL" is a typo, I'll change it to read "RootURL"
>
> Why should I pass the DSN to the CFC and use the request scope? I based this 
> wizard off chapters in the CFMX Bible.
>
> I've never seen a forum that allows anonymous posts, and it does concern me a 
> bit. Maybe I could setup an "anonymous user" account, and make it an option 
> for a future release.
>
> I'll make max_id an option and also provide for autonumber. What is a 
> sequenced primary key; is that like autonumber? Should I make that an option 
> too?
>
> As my of my clients are small businesses/non-profits, so I've never had to 
> use Oracle. I guess I need to put it on my dev server.
>
> As I have worked on our forums, shopping cart and other apps we are selling I 
> have found designing for cross platforms can be a pain, and there are 
> definite trade offs.
>
> >ah, ok.  Neat idea. Some things to consider.
> >I never use a uid/password in my cfquery tags, why require these in
> >this wizard?
> >The above form requiring uid/pwd for a DSN is required after you have
> >browsed for a particular DSN to use.
> >The above form has a field 'DataSource RootURL', shouldn't this
> >actually be something like 'URL to Root of Application'?  I thought it
> >wanted the JDBC url or something.
> >Should really pass in the DSN to the CFC, not access the request scope
> >from within the CFC.
> >Allow anonymous posts on your forum :)
> >Looks cool and very helpful, a bit of a way to go to support different
> >DBs though, eh?  For instance, we use Oracle.  For numeric sequenced
> >primary keys, we use a sequence.  No need for computing max id to get
> >the next one.  But then this must be a tricky part to make universal
> >code for, eh?
> >
> >DK
> >
> >
> >
> >On 11/27/05, Stan Winchester <[EMAIL PROTECTED]> wrote:
> >>
>
> 

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225435
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: FREE Homesite/CF Studio CFC VTML Generator

2005-11-28 Thread Stan Winchester
You can now post anonymous posts to:
http://www.aftershockweb.net/forums/forums.cfm/ConferenceId/8 regarding the 
FREE Homesite/CF Studio CFC VTML Generator

>Allow anonymous posts on your forum :)
>Looks cool and very helpful, a bit of a way to go to support different

~|
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 with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225434
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: FREE Homesite/CF Studio CFC VTML Generator

2005-11-28 Thread Stan Winchester
Douglas, Thanks for the feedback! 

I just had a duh experience; I’ll make the username/password optional as it 
should be.

“DataSource RootURL” is a typo, I’ll change it to read “RootURL”

Why should I pass the DSN to the CFC and use the request scope? I based this 
wizard off chapters in the CFMX Bible.

I’ve never seen a forum that allows anonymous posts, and it does concern me a 
bit. Maybe I could setup an “anonymous user” account, and make it an option 
for a future release. 

I’ll make max_id an option and also provide for autonumber. What is a 
sequenced primary key; is that like autonumber? Should I make that an option 
too?

As my of my clients are small businesses/non-profits, so I’ve never had to 
use Oracle. I guess I need to put it on my dev server. 

As I have worked on our forums, shopping cart and other apps we are selling I 
have found designing for cross platforms can be a pain, and there are definite 
trade offs.

>ah, ok.  Neat idea. Some things to consider.
>I never use a uid/password in my cfquery tags, why require these in
>this wizard?
>The above form requiring uid/pwd for a DSN is required after you have
>browsed for a particular DSN to use.
>The above form has a field 'DataSource RootURL', shouldn't this
>actually be something like 'URL to Root of Application'?  I thought it
>wanted the JDBC url or something.
>Should really pass in the DSN to the CFC, not access the request scope
>from within the CFC.
>Allow anonymous posts on your forum :)
>Looks cool and very helpful, a bit of a way to go to support different
>DBs though, eh?  For instance, we use Oracle.  For numeric sequenced
>primary keys, we use a sequence.  No need for computing max id to get
>the next one.  But then this must be a tricky part to make universal
>code for, eh?
>
>DK
>
>
>
>On 11/27/05, Stan Winchester <[EMAIL PROTECTED]> wrote:
>>

~|
Find out how CFTicket can increase your company's customer support 
efficiency by 100%
http://www.houseoffusion.com/banners/view.cfm?bannerid=49

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225427
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: FREE Homesite/CF Studio CFC VTML Generator

2005-11-28 Thread Douglas Knudsen
ah, ok.  Neat idea. Some things to consider.
I never use a uid/password in my cfquery tags, why require these in
this wizard?
The above form requiring uid/pwd for a DSN is required after you have
browsed for a particular DSN to use.
The above form has a field 'DataSource RootURL', shouldn't this
actually be something like 'URL to Root of Application'?  I thought it
wanted the JDBC url or something.
Should really pass in the DSN to the CFC, not access the request scope
from within the CFC.
Allow anonymous posts on your forum :)
Looks cool and very helpful, a bit of a way to go to support different
DBs though, eh?  For instance, we use Oracle.  For numeric sequenced
primary keys, we use a sequence.  No need for computing max id to get
the next one.  But then this must be a tricky part to make universal
code for, eh?

DK



On 11/27/05, Stan Winchester <[EMAIL PROTECTED]> wrote:
> DK, I added more instructions in the thread titled "Install the Wizard" found 
> at:
> http://www.aftershockweb.net/forums/messages.cfm/ThreadId/53/
>
> I hope this helps you.
> Stan
>
> >so I unzip it to /custom and then what?  forgive me if the obvious is
> >alluding me this evening, but how to kick off the wizard?
> >
> >DK
> >
> >On 11/26/05, Stan Winchester <[EMAIL PROTECTED]> wrote:
> >>
>
> 

~|
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 with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225400
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: FREE Homesite/CF Studio CFC VTML Generator

2005-11-27 Thread Stan Winchester
DK, I added more instructions in the thread titled "Install the Wizard" found 
at:
http://www.aftershockweb.net/forums/messages.cfm/ThreadId/53/

I hope this helps you.
Stan

>so I unzip it to /custom and then what?  forgive me if the obvious is
>alluding me this evening, but how to kick off the wizard?
>
>DK
>
>On 11/26/05, Stan Winchester <[EMAIL PROTECTED]> wrote:
>>

~|
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 with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225369
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


Re: FREE Homesite/CF Studio CFC VTML Generator

2005-11-27 Thread Douglas Knudsen
so I unzip it to /custom and then what?  forgive me if the obvious is
alluding me this evening, but how to kick off the wizard?

DK

On 11/26/05, Stan Winchester <[EMAIL PROTECTED]> wrote:
> I just put a FREE new HomeSite+/ColdFusion Studio Wizard that builds a CFC
> based CRUD application. Please feel free to download and use it. If you use
> it, please let me know. If you have any comments, suggestions, complaints,
> or whatever, please post them to on:
> http://www.aftershockweb.net/forums/forums.cfm/ConferenceId/8
>
> Here is a link to the thread containing the download:
> http://www.aftershockweb.net/forums/messages.cfm/ThreadId/50
>
> I know there is a lot of work to do to it still, but it is a start.
>
> Thank you,
> Aftershock Web Design, Inc.
> by: Stan Winchester
> President/Developer
> [EMAIL PROTECTED]
> http://www.aftershockweb.com/
> Phone 503-244-3440
> Fax 503-244-3454
>
> 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225365
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54


FREE Homesite/CF Studio CFC VTML Generator

2005-11-26 Thread Stan Winchester
I just put a FREE new HomeSite+/ColdFusion Studio Wizard that builds a CFC
based CRUD application. Please feel free to download and use it. If you use
it, please let me know. If you have any comments, suggestions, complaints,
or whatever, please post them to on:
http://www.aftershockweb.net/forums/forums.cfm/ConferenceId/8 

Here is a link to the thread containing the download: 
http://www.aftershockweb.net/forums/messages.cfm/ThreadId/50 

I know there is a lot of work to do to it still, but it is a start.
 
Thank you,
Aftershock Web Design, Inc.
by: Stan Winchester
President/Developer
[EMAIL PROTECTED]  
http://www.aftershockweb.com/   
Phone 503-244-3440
Fax 503-244-3454

~|
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 with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225300
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54