SAN DIEGO CFUG Wednesday 6:30

2003-01-06 Thread Steven A. del Sol
San Diego CFUG Wednesday 6:30pm at NETPACQ

GIVEWAY: MACROMEDIA STUDIO MX  CERTIFIED TRAINING FROM NEW HORIZONS!

TOPIC: FUSEBOX

http://netpacq.com/nsi_contactrt.htmMAP


http://netpacq.com/nsi_contactrt.htmNETPACQ
ROOM 106
5205 Kearny Villa Way
San Diego, CA 92123

http://netpacq.com/nsi_contactrt.htm 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm

Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4



Re: Restore a backup over a current SQL Dbase

2002-12-31 Thread Steven A. del Sol
Pardon my ignorance but no the same server.  I fragged a database and need 
to restore a previous version.. Please help.



At 06:06 PM 12/31/2002 -0500, you wrote:
I assume you mean to a different server, if same server just use
enterprise manager wizard.

First Step - get database name:
restore filelistonly
from disk = 'c:\backup.bak'

Second Step:
restore database dbname
from disk = 'c:\backup.bak'
with move 'dbname_Data' to 'C:\Program Files\Microsoft SQL 
Server\MSSQL\Data\dbname.mdf',
move 'dbname_Log' to 'C:\Program Files\Microsoft SQL 
Server\MSSQL\Data\dbname.ldf'

--
jon
mailto:[EMAIL PROTECTED]

Tuesday, December 31, 2002, 4:56:04 PM, you wrote:

RJS How do you restore a .BAK file over a current Database in SQL SERVER 
2000?


RJS Joy


~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm



DATE TAG

2002-09-24 Thread Steven A. del Sol

Has anyone seen a tag or know of a way to get CF to produce the date in the 
following format:

09/22/2002 would read..The Twenty Second day of September, in the year 
Two Thousand and Two.



Steve

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: DATE TAG

2002-09-24 Thread Steven A. del Sol

Thanks, you might want to consider wrapping it into a UDF or cf_tag.

Thanks again, STEVE

At 05:21 PM 9/24/2002 -0400, you wrote:
Don't blame me if it doesn't work. Hasn't been tested. The paint is still wet.

cfparam name=dateString default=#now()#

cfset 
dayList=First,Second,Third,Fourth,Fifth,Sixth,Seventh,Eighth,Ninth,Tenth,Eleventh,Twelveth,Thirteenth,Fourteenth,Fifteenth,Sixteenth,Seventeenth,Eighteenth,Nineteenth,Twentieth,Twenty
 
First,Twenty Second,Twenty Third,Twenty Fourth,Twenty Fifth,Twenty 
Sixth,Twenty Seventh,Twenty Eighth,Twenty Ninth,Thirtieth,Thirty First
cfset 
numList=One,Two,Three,Four,Five,Six,Seven,Eight,Nine,Ten,Eleven,Twelve,Thirteen,Fourteen,Fifteen,Sixteen,Seventeen,Eighteen,Nineteen
cfset 
numTenList=Ten,Twenty,Thirty,Fourty,Fifty,Sixty,Seventy,Eighty,Ninety

cfset y=year(dateString)
cfset m=monthasstring(month(dateString))
cfset d=listGetAt(dayList,day(dateString))

cfset y=right(1+y,4)
cfset d1=mid(y,4,1)
cfset d2=mid(y,3,1)
cfset d3=mid(y,2,1)
cfset d4=mid(y,1,1)

cfset returnString=The #d# Day of #m#, in the year
cfif d4 gt 0
 cfset 
 returnString=listAppend(returnString,#listGetAt(numList,d4)# Thousand, )
/cfif
cfif d3 gt 0
 cfset 
 returnString=listAppend(returnString,#listGetAt(numList,d3)# Hundred, )
/cfif
cfif d2 gt 0 or d1 gt 0
 cfset returnString=listAppend(returnString,and, )
/cfif
cfif d2 eq 1
 cfif d2 gt 0
 cfset 
 returnString=listAppend(returnString,#listGetAt(numList,d2d1)#, )
 /cfif
cfelse
 cfif d2 gt 0
 cfset 
 returnString=listAppend(returnString,#listGetAt(numTenList,d2)#, )
 /cfif
 cfif d1 gt 0
 cfset 
 returnString=listAppend(returnString,#listGetAt(numList,d1)#, )
 /cfif
/cfif

brbr
cfoutput
#returnString#
/cfoutput


  [EMAIL PROTECTED] 09/24/02 04:34PM 
Has anyone seen a tag or know of a way to get CF to produce the date in the
following format:

09/22/2002 would read..The Twenty Second day of September, in the year
Two Thousand and Two.



Steve



__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Rock Band needs a Codie 2nd attempt

2002-09-12 Thread Steven A. del Sol

Try createODBCdate





At 05:37 PM 9/12/2002 -0400, you wrote:
Forgot to cut the latest code, so I pasted an older version. notice the 
order by in the query


Still no promises.

!--- NOTE: the access date query may be wrong, but I believe the date 
delimiter is ## ---
cfset today=dateFormat(now(),mm/dd/)
cfquery name=nextgig datasource=annie?
select top 1 NAME, LOCATION, ADDRESS, CITY_ST_ZIP, PHONE,  GIGDATE, 
GIGTIME from gigdates,giglist where gigdate =###today### and 
gigdate.gigname=giglist.name
order by gigdate
/cfquery

cfoutput query=nextgig
cfif dateCompare(gigdates.gigdate,today,d) eq 0
Tonight's Show (#GIGTIME#)
cfelse
Next Show (#GIGDATE# - #GIGTIME#)
/cfif

#Name# #location# #address# #CITY_ST_ZIP# #PHONE#br
/cfoutput

Jerry Johnson

  [EMAIL PROTECTED] 09/12/02 04:20PM 
OK I give up. I know when I am beat. This is a simple one. I know this
but I just can't get it to work for some reason. I saw something similar
in an old post, but it was not informative enough.

Here's the deal:

I have 2 tables in a Rock Band's database. (annie.mdb)

GIGLIST and GIGDATES

I have a template page that I want to show TONIGHT'S SHOW data if there
is a show tonight and IF NOT, then the NEXT SHOW date data.

as I am sure you can tell by the extension, this is an ACCESS Database,
I have the GIGDATE field set to a date field. (MM/DD/)

Fields are as follows:

GIGLISTTablename
ID, NAME, LOCATION, ADDRESS, CITY_ST_ZIP, PHONE

GIGDATESTablename
ID, GIGNAME,  GIGDATE, GIGTIME
 (GIGNAME = giglist.name)



So, let me reitterate I want to show all of the current variables
for the show record that has tonight's date (if there is a show tonight)
and set a variable NEXTSHOWTIME to either display the text Tonight's
Show  or set to Next Show if no show tonight and then show the next
available showdate's recordset from the GIGDATES table and the
corresponding venue location info from the GIGLIST table.

GIGNAME=NAME in the GIGLIST table







FREE MUSIC CD to the first one who sends me code that makes this thing
work!

Thanks!

M. Pool
[EMAIL PROTECTED]





__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Rock Band needs a Codie

2002-09-12 Thread Steven A. del Sol

The problem you are having is your date in the Access table has a timestamp 
of 00:00:00  when you say now() that has a timestamp of the current time so 
you yield no results try:

The long way:
CFSET #Year# = #dateformat(now(),)#
CFSET #Month# = #dateformat(now(),m)#
cfset #daynow# = #dateformat(now(),d)#
cfset date=#createdate(year, month, daynow)#
cfset date=#createODBCDateTime(date)#




At 04:20 PM 9/12/2002 -0400, you wrote:
OK I give up. I know when I am beat. This is a simple one. I know this
but I just can't get it to work for some reason. I saw something similar
in an old post, but it was not informative enough.

Here's the deal:

I have 2 tables in a Rock Band's database. (annie.mdb)

GIGLIST and GIGDATES

I have a template page that I want to show TONIGHT'S SHOW data if there
is a show tonight and IF NOT, then the NEXT SHOW date data.

as I am sure you can tell by the extension, this is an ACCESS Database,
I have the GIGDATE field set to a date field. (MM/DD/)

Fields are as follows:

GIGLISTTablename
ID, NAME, LOCATION, ADDRESS, CITY_ST_ZIP, PHONE

GIGDATESTablename
ID, GIGNAME,  GIGDATE, GIGTIME
 (GIGNAME = giglist.name)



So, let me reitterate I want to show all of the current variables
for the show record that has tonight's date (if there is a show tonight)
and set a variable NEXTSHOWTIME to either display the text Tonight's
Show  or set to Next Show if no show tonight and then show the next
available showdate's recordset from the GIGDATES table and the
corresponding venue location info from the GIGLIST table.

GIGNAME=NAME in the GIGLIST table







FREE MUSIC CD to the first one who sends me code that makes this thing
work!

Thanks!

M. Pool
[EMAIL PROTECTED]




__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Looking for mail tag - submit form emails contents without all the code...

2002-09-05 Thread Steven A. del Sol

I am sure there is something so simple to this...

I would like to send the users form variables to a contact email.  Is there 
a tag to do this?  Without writing some long old CFMAIL?

Steve

__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF Web based interface for database manipulation?

2002-07-24 Thread Steven A. del Sol

Does anyone know of a CF Web based interface for database manipulation?


I would like to do the following in Access:
Add, Edit, Delete a field
Compact Datebase
Add, Edit, Delete, copy Table



Steven A. del Sol
NETPACQ Internet Systems
858.541.0222 - [EMAIL PROTECTED]
http://www.NETPACQ.com

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CF Web based interface for database manipulation?

2002-07-24 Thread Steven A. del Sol

Lets start with Access?


At 03:26 PM 7/24/2002 -0600, you wrote:
Which database?

-Original Message-
From: Steven A. del Sol [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, July 24, 2002 3:26 PM
To: CF-Talk
Subject: Re: CF Web based interface for database manipulation?


Does anyone know of a CF Web based interface for database manipulation?


I would like to do the following in Access:
Add, Edit, Delete a field
Compact Datebase
Add, Edit, Delete, copy Table



Steven A. del Sol
NETPACQ Internet Systems
858.541.0222 - [EMAIL PROTECTED]
http://www.NETPACQ.com



__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Make CF Server process a new extension .NAP like it does .cfm

2002-07-22 Thread Steven A. del Sol

Does anyone know how to make the CF SERVER process pages with and uncommon 
extension?
A long time ago Ben Forta told me how to do this well now I have an 
application for it.. 

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re[2]: ColdFusion MX / Studio MX now available!

2002-05-30 Thread Steven A. del Sol

I think you should check out Dreamweaver MX... I am a die hard CF Studio 
Fan and I got to tell you Dreamweaver MX is my new development tool of 
choice...



At 02:40 PM 5/30/2002 -0400, you wrote:
oi Owen!!

homesite+ is basically your CFStudio 5.1 etc etc


--
Critz
Certified Adv. ColdFusion Developer

Crit[s2k] - CF_ChannelOP Network=Efnet Channel=ColdFusion

Thursday, May 30, 2002, 2:23:08 PM, you wrote:

  HomeSite+ is HomeSite5 plus the CF VTMs  help/reference for CF stuff. So,
OL if you want to see in general what HomeSite+ will look like, take a 
look at
OL the HomeSite5 trial.

OL Does that mean that HomeSite+ lacks advanced tools like the Databases
OL resource window, debugging tools, Query Builder, etc?  (We could tell for
OL ourselves if we could just get a look at it)

OL   -- Owen

OL

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Apology

2002-05-20 Thread Steven A. del Sol

All of us should share more code. I would like to wipe ASP off the planet!
I hate naive customers who tell me that ASP  is made from Microsoft... and it
will eventually be the only language left.


I think MM should have a poll on their site.  Asking us if they should 
separate them.
Better yet skip the poll and make it an option on the search.  Add in open 
source/encrypted.




Steven A. del Sol
NETPACQ Internet Systems
858.541.0222 - [EMAIL PROTECTED]
http://www.NETPACQ.com

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: dynamic select boxes in netscape don't work

2002-05-16 Thread Steven A. del Sol

Take a look at www.bobdaviscamera.com   let me know if this is what you 
need and I will send you the code off list...






-Original Message-
From: Donnie Bachan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 16, 2002 11:47 AM
To: CF-Talk
Subject: Re: dynamic select boxes in netscape don't work


what exactly is the problem you are having? I have done this in javascript
before and it works in netscape. How are you going about creating the
options for the second box? If you could post your code I may be able to
offer more help.

Best Regards,

Donnie Bachan
Phone: (718) 217-2883
ICQ#: 28006783
Nitendo Vinces - By Striving You Shall Conquer
==
The information transmitted is intended only for the person or entity to
which it is addressed and may contain confidential and/or privileged
material. Any review, retransmission, dissemination or other use of, or
taking of any action in reliance upon, this information by persons or
entities other than the intended recipient is prohibited. If you received
this in error, please contact the sender and delete the material from any
computer.




__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFX_IMG, AUTORESIZE, and personal photo DB with 3000 original photos.

2002-05-14 Thread Steven A. del Sol


Subject: CFX_IMG, AUTORESIZE, and personal photo DB with 3000 original photos.

Ok, here is what I am trying to do.  I would like to batch process all 
3000 of my photos using this CFX tag.  The tag works great 
individually.  Here is my situation.  To batch process I need CF to load 
the images in the input type=file but I can not get it to work.  I 
changed my server address and website see if you can help me figure this 
one out.  here is the code I am using.. the tags can be found at 
CFDEV.com.  THANKS






__
Signup for the Fusion Authority news alert and keep up with the latest news in 
ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Fwd: CFX_IMG, AUTORESIZE, and personal photo DB with 3000 original photos.

2002-05-14 Thread Steven A. del Sol

Date: Tue, 14 May 2002 10:56:34 -0700
To: [EMAIL PROTECTED]
From: Steven A. del Sol [EMAIL PROTECTED]
Subject: CFX_IMG, AUTORESIZE, and personal photo DB with 3000 original photos.

Ok, here is what I am trying to do.  I would like to batch process all 
3000 of my photos using this CFX tag.  The tag works great 
individually.  Here is my situation.  To batch process I need CF to load 
the images in the input type=file but I can not get it to work.  I 
changed my server address and website see if you can help me figure this 
one out.  here is the code I am using.. the tags can be found at 
CFDEV.com.  THANKS






!--- cfif IsDefined(action)cfoutput#url.nextone#/cfoutput
cfquery datasource=#application.db# name=goodluckselect * from photo 
where photoid=1451/cfquery
 cfset imagepath=c:\serverloc\
 cfset thumbpath=c:\serverloc\
 cfset imagedir=http://yourweb;
 cfset thumbdir=http://yourweb;

 !---Call CF_AutoResize ---
 cf_autoresize imagepath=#imagepath# maxsize=200 
 thumbsize=80 prefix=tn goof=#goodluck.photo# filefield=form.photo 
 thumbpath=#thumbpath# nameconflict=overwrite
 !---Outputs the variables #photo# and #thumbnail#---
 cfquery name=addphoto datasource=#application.db#
 UPDATE photo
SET cdphoto='#photo#', thumbnail='#thumbnail#'
WHERE   (PHOTOID = 1451)
 /cfquery





cfelse
cfparam name=url.nextone default=1451
cfquery datasource=#application.db# name=goodluckselect * from photo 
where photoid=#url.nextone#/cfquery
cfoutput
cfset nextone = #goodluck.photoid#+1
form action=batchphotos.cfm?action=submitnextone=#nextone# method=post 
enctype=multipart/form-data name=bozo
input type=file name=photo accept=image/gif,image/jpeg,image/x-MS-bmp
 input type=hidden name=checkerinput type=submit name=bozo 
 value=Submit/form/cfoutput

!---
body onload=document.bozo.submit();/body ---
/cfif ---

Steven A. del Sol
NETPACQ Internet Systems
858.541.0222 - [EMAIL PROTECTED]
http://www.NETPACQ.com

__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



CFX_IMG, AUTORESIZE, and personal photo DB with 3000 original photos.

2002-05-14 Thread Steven A. del Sol

Date: Tue, 14 May 2002 10:56:34 -0700
To: [EMAIL PROTECTED]
From: Steven A. del Sol [EMAIL PROTECTED]
Subject: CFX_IMG, AUTORESIZE, and personal photo DB with 3000 original photos.

Ok, here is what I am trying to do.  I would like to batch process all 
3000 of my photos using this CFX tag.  The tag works great 
individually.  Here is my situation.  To batch process I need CF to load 
the images in the input type=file but I can not get it to work.  I 
changed my server address and website see if you can help me figure this 
one out.  here is the code I am using.. the tags can be found at 
CFDEV.com.  THANKS






!--- cfif IsDefined(action)cfoutput#url.nextone#/cfoutput
cfquery datasource=#application.db# name=goodluckselect * from photo 
where photoid=1451/cfquery
 cfset imagepath=c:\serverloc\
 cfset thumbpath=c:\serverloc\
 cfset imagedir=http://yourweb;
 cfset thumbdir=http://yourweb;

 !---Call CF_AutoResize ---
 cf_autoresize imagepath=#imagepath# maxsize=200 
 thumbsize=80 prefix=tn goof=#goodluck.photo# filefield=form.photo 
 thumbpath=#thumbpath# nameconflict=overwrite
 !---Outputs the variables #photo# and #thumbnail#---
 cfquery name=addphoto datasource=#application.db#
 UPDATE photo
SET cdphoto='#photo#', thumbnail='#thumbnail#'
WHERE   (PHOTOID = 1451)
 /cfquery





cfelse
cfparam name=url.nextone default=1451
cfquery datasource=#application.db# name=goodluckselect * from photo 
where photoid=#url.nextone#/cfquery
cfoutput
cfset nextone = #goodluck.photoid#+1
form action=batchphotos.cfm?action=submitnextone=#nextone# method=post 
enctype=multipart/form-data name=bozo
input type=file name=photo accept=image/gif,image/jpeg,image/x-MS-bmp
 input type=hidden name=checkerinput type=submit name=bozo 
 value=Submit/form/cfoutput

!---
body onload=document.bozo.submit();/body ---
/cfif ---

Steven A. del Sol
NETPACQ Internet Systems
858.541.0222 - [EMAIL PROTECTED]
http://www.NETPACQ.com

__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: CFX_IMG, AUTORESIZE, and personal photo DB with 3000 original photos.

2002-05-14 Thread Steven A. del Sol

I tried that but the cffile said the file was not present. I believe the 
file is Binary and without the input type=file command it will not 
work.. But hey if you have an idea I am willing to hear it?



At 04:44 PM 5/14/2002 -0700, you wrote:
why are you trying to load them in a file field??

If you have the tag just do a cfdirectory of your images folder and run
the tag on each of the images in that folder.

+---+
Bryan Love
   Macromedia Certified Professional
   Internet Application Developer
   Database Analyst
Telecommunication Systems
[EMAIL PROTECTED]
+---+

...'If there must be trouble, let it be in my day, that my child may have
peace'...
 - Thomas Paine, The American Crisis



-Original Message-
From: Steven A. del Sol [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 14, 2002 12:21 PM
To: CF-Talk
Subject: Fwd: CFX_IMG, AUTORESIZE, and personal photo DB with 3000
original photos.


 Date: Tue, 14 May 2002 10:56:34 -0700
 To: [EMAIL PROTECTED]
 From: Steven A. del Sol [EMAIL PROTECTED]
 Subject: CFX_IMG, AUTORESIZE, and personal photo DB with 3000 original
photos.
 
 Ok, here is what I am trying to do.  I would like to batch process all
 3000 of my photos using this CFX tag.  The tag works great
 individually.  Here is my situation.  To batch process I need CF to load
 the images in the input type=file but I can not get it to work.  I
 changed my server address and website see if you can help me figure this
 one out.  here is the code I am using.. the tags can be found at
 CFDEV.com.  THANKS
 
 
 
 
 
 
 !--- cfif IsDefined(action)cfoutput#url.nextone#/cfoutput
 cfquery datasource=#application.db# name=goodluckselect * from photo
 where photoid=1451/cfquery
  cfset imagepath=c:\serverloc\
  cfset thumbpath=c:\serverloc\
  cfset imagedir=http://yourweb;
  cfset thumbdir=http://yourweb;
 
  !---Call CF_AutoResize ---
  cf_autoresize imagepath=#imagepath# maxsize=200
  thumbsize=80 prefix=tn goof=#goodluck.photo# filefield=form.photo
  thumbpath=#thumbpath# nameconflict=overwrite
  !---Outputs the variables #photo# and #thumbnail#---
  cfquery name=addphoto datasource=#application.db#
  UPDATE photo
 SET cdphoto='#photo#', thumbnail='#thumbnail#'
 WHERE   (PHOTOID = 1451)
  /cfquery
 
 
 
 
 
 cfelse
 cfparam name=url.nextone default=1451
 cfquery datasource=#application.db# name=goodluckselect * from photo
 where photoid=#url.nextone#/cfquery
 cfoutput
 cfset nextone = #goodluck.photoid#+1
 form action=batchphotos.cfm?action=submitnextone=#nextone# method=post
 enctype=multipart/form-data name=bozo
 input type=file name=photo
accept=image/gif,image/jpeg,image/x-MS-bmp
  input type=hidden name=checkerinput type=submit name=bozo
  value=Submit/form/cfoutput
 
 !---
 body onload=document.bozo.submit();/body ---
 /cfif ---

Steven A. del Sol
NETPACQ Internet Systems
858.541.0222 - [EMAIL PROTECTED]
http://www.NETPACQ.com



__
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Create Thumb from IMG upload

2002-05-09 Thread Steven A. del Sol

I need a CF Tag that creates a thumb of an image I upload. Then saves the 
thumb in folder thumb and image in folder image.  Do you know of any.

__
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Another Able Site

2001-12-06 Thread Steven A. del Sol

Chris, here is another able site.

http://www.iworksgallery.com


Steven A. del Sol
NETPACQ Systems, Inc.
[EMAIL PROTECTED]
http://www.netpacq.com

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: MAC File Upload Issues

2001-12-03 Thread Steven A. del Sol

Ok, I was having this same issue... I solved it by doing two things

1. I predefined my accept clause to accept *.JPEG,*.Gif, *.jpg etc.
2. I separated my uploads to only one hardcoded variable.
 (In other words I no longer tried to pass a variable in to the 
CFFILE statement.)

I believe the second action is what made the difference.




Steven A. del Sol
NETPACQ Systems, Inc.
[EMAIL PROTECTED]
http://www.netpacq.com
-
Vendor Representative
San Diego Cold Fusion
User Group
[EMAIL PROTECTED]
http://www.sdcfug.org

~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



File Upload from MAC to PC-HELP!

2001-09-18 Thread Steven A. del Sol

Ok, I am sure this is an easy issue for someone and I am just missing 
something simple but this is kicking my @$$!

I have a client who needs to upload images from his Mac to a WIN2K server 
running CF5. here is the code. If it is easier for you to rewrite the code 
please do.
Any and all help will be appreciated.


code


UPLOAD FORM PAGE
FORM action=smimgup.cfm method=post enctype=multipart/form-data

 CFOUTPUT

 cfif image eq 'medimg'
 input type=file name=medIMG 
id=medIMG size=35 accept=image/jpg, image/jpeg, image/pjpeg, 
image/gif, image/tiff, image/png
 cfelseif image eq 'smimg'
 input type=file name=smIMG 
id=smIMG size=35 accept=image/jpg, image/jpeg, image/pjpeg, image/gif, 
image/tiff, image/png
 cfelseif image eq 'lgimg'
 input type=file name=lgIMG 
id=lgIMG size=35 accept=image/jpg, image/jpeg, image/pjpeg, image/gif, 
image/tiff, image/png

/cfif
 INPUT type=Hidden name=here 
value=#image#
 input type=hidden name=prodid 
value=#url.prodid#
 /CFOUTPUT


RESULT PAGE

cffile action=UPLOAD
filefield=lgIMG
destination=#application.imgsrc#
nameconflict=MAKEUNIQUE
accept=image/jpg, image/jpeg, image/pjpeg, image/gif
!--- #file.clientfile# ---
#form.prodid#
cfquery name=checkid datasource=#application.db#
select *
from image
where prodid = #form.prodid#
/cfquery
cfif checkid.recordcount eq 0
cfquery name=insert datasource=#application.db#
insert into image(prodid, #form.here#)
values (#form.prodid#, '#file.clientfile#')
/cfquery
cfelse
cfquery name=update datasource=#application.db#
update image
set
#form.here# = '#file.clientfile#'
where prodid = #form.prodid#
/cfquery
/cfif
~~
Get the mailserver that powers this list at http://www.coolfusion.com
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



I was there and yes we did warn them...

2001-09-11 Thread Steven A. del Sol

I was there and yes we did warn them...  Lets not forget that we had a 
presence in Panama and brought economic stability to a country. Panama is 
now run over by the drug traders, and I speak from personal knowledge not 
some second hand report.  Remember the Panamanian people cheered in the 
street for his defeat.  I do not see Americans in the street yelling 
hooray.  This action is beyond words.

I want to tell you that I appreciate all of you foreign (non-US) 
individuals giving us a bit of insight.  I want to know what  you and your 
countries view of The United States is.



I am proud to be an American! I served my country in the Army and served it 
well.  My wife is in the Reserves as a Nurse.  My prayers are with all who 
are affected by this..  God Bless Us All!





At 04:53 PM 9/11/2001 -0500, you wrote:
Let's see, did we warn Panama, a sovereign state, that we were coming? No.
Did we kidnap and extradite their president? Yes. Oh, he was a BAD man and
we needed someone nice down there. Then why haven't we done this in so many
other countries that have dictators who oppress their people? Economic need.
There is none.
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



OT: DHTML-Javascript

2001-08-30 Thread Steven A. del Sol

Does someone have the code needed to change the MSIE browser to look 
customized an example would be at 
http://www.oprea.org/opreadir/intelliTags.cfm their view example launches a 
customized browser.





Steven


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Need a spell checker

2001-08-17 Thread Steven A. del Sol

CFDEV has a great one try their site!


www.cfdev.com


At 02:22 PM 8/4/2005 -0700, you wrote:
I need a spell checker, anyone have any good recommendations.  I work for a
unix shop so Netscape support is a must.
Thanks,
Ray

At 03:56 PM 8/3/01 -0700, you wrote:
 On Friday, August 03, 2001 Tangorre, Mike [SMTP:[EMAIL PROTECTED]] 
 wrote:
   I am almost done with college and wanted to spend my last year
   really hoaning in on some skills that I would like to improve in.
 
 How about English? ;)
 
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Service Pack 2 Problems?

2001-07-27 Thread Steven A. del Sol

Originally there was a problem with the MDAC's in SP2.  I think MM made 
changes in CF5 and in SP2 of CF 4.5.  I can send more detail on this if 
needed.

Steven A. del Sol



  I think the At 11:08 AM 7/27/2001 -0400, you wrote:
We are about to install windows 2000 service pack 2.  Anyone have any
problems with this on their CF servers?  I haven't heard of any, but just
wanted to be sure.

Tim P.



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Open source content management who wants to join

2001-07-17 Thread Steven A. del Sol

I would be interested in looking at your content management tool.

Steven A. del Sol
San Diego Cold Fusion User Group


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: FREE HTML Editor

2001-07-13 Thread Steven A. del Sol

ASP HTML Editor?  Try looking on the Macromedia Exchange for Ultradev there 
is one by Public Domain.


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Allaire Spectra for Content Management.

2001-07-03 Thread Steven A. del Sol

Contact me off list I might be able to give you a simple version of  what 
your are asking for.  Takes about 15 minuites to set up but then you will 
have to add the front end. (graphics).

At 12:11 PM 7/3/2001 -0400, you wrote:
Hi there..

I'm looking for a program which would allow us to provide Content 
Management solutions for a number of clients from a single
server. I.e. Clients would be able to update news, events, calendars etc. 
remotely on their websites which we host.

Is this what Allaire Spectra is supposed to do, and does it make sense 
given themerger and the future of the product with
Macromedia to even consider using it for this purpose?

If not Spectra..then what other CF integrated product is used for Content 
Management?

-Gel



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Chat Room

2001-06-25 Thread Steven A. del Sol

Can anyone recommend an inexpensive chat room to run on IIS and CF 4.5?  It 
is for a non-profit site that we are doing as a donation.  If you have an 
application you wrote and would like to donate it let me know.  I will 
ensure you get recognition for it.

Steven A. del Sol
NETPACQ Systems, Inc.
[EMAIL PROTECTED]
http://www.netpacq.com
-
Vendor Representative
San Diego Cold Fusion
User Group
[EMAIL PROTECTED]
http://www.sdcfug.org



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Image uploader from a Mac to a cf/win2K server

2001-06-14 Thread Steven A. del Sol

I have a client that needs to upload images to
his shopping cart. For some reason it is not
working from any MAC system.

Does anyone have any idea why?
Do you know a work around?



Thanks in Advance Steve..


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Image uploader from a Mac to a cf/win2K server

2001-06-14 Thread Steven A. del Sol

Now that sounds like a plan but I believe that will open up the system to 
serious security risk..



At 10:17 PM 6/14/2001 +0200, you wrote:
Often Macs have mime-type related issues, try to temporarily remove the
accept attribute from the cffile tag to see if the problems are caused
by mime-type, then go on investigating it.

In the past I had better luck with something like: accept=image/* than
accept=image/jpeg,image/gif

Hope it will lead you in the right direction

Massimo


Steven A. del Sol [EMAIL PROTECTED] wrote in message
  I have a client that needs to upload images to
  his shopping cart. For some reason it is not
  working from any MAC system.






~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: the big export...ColdFusion.NET?

2001-05-21 Thread Steven A. del Sol

Not to sound like I am on the MS bandwagon I got to admit everything I have 
built on C# seems to work on Java platforms the only difference is there is 
additional functionality on C#  that does not exist in Java. MS has great 
support for Java programers who care to make the 
switch. 
http://msdn.microsoft.com/vstudio/nextgen/technology/csharpintro.asp has 
some good support information for this platform.  It actually matches more 
up with the XML, HTML and CFML  then flat java.

Now on the con side the last company I would want to be in bed with is MS 
they will have their fun with you and tomorrow they will own you.

Good Luck MM if you OEM with them. Thank God Netscape is dying!

  At 12:44 PM 5/21/2001 -0700, you wrote:
Yuck.  I would certianly hope that Macromedia doesn't consider using C# over
Java.  One of the most exciting prospects of CF6 is it's ability to run on
any platform.  I am willing to bet that the Common Language Runtime will
_not_ run on any platform.
 It seems that Microsoft is taking another stab at killing Java, 
 except this
time on the server side.  They released JDirect a few years ago, which was
basically MFC for Java.  What a mess.  The company I was working for at the
time wanted to look into JDirect and see if it was a worthwhile platform.
IMO, it was completely worthless...An application written in JDirect wasn't
any more portable than one written using MFC!
 I do love Microsoft products (I also have very little sympathy for
Netscape), but I would hate to see Macromedia handcuff themselves.


-Original Message-
From: Jon Hall [mailto:[EMAIL PROTECTED]]
Sent: Sunday, May 20, 2001 11:58 PM
To: CF-Talk
Subject: Re: the big export...ColdFusion.NET?


C# is really more along the lines of Java than C, actually a lot closer. If
you look at the syntax, it's almost exactly java with a few MS specific
things thrown in,  that look to make the language a little more
approachable.
Not to mention it runs on what Microsoft calls a Common Language Runtime.
Which is basically just like java's JRE. This is the essence of dotNet. All
five of Microsofts major languages( C#, C++, JScript, VB, ASP) will be able
to take advantage of it. All of them have seperate compilers except asp of
course, but still run on top of the runtime.

There are already existing programs that convert C# programs into Java and
back again...What makes this really interesting to me is that if Macromedia
extends CF to C#, the possibilities for easy access to the dotNet runtime
with CF would be very powerful. Actually now that I think about it, as the
MS world migrate to XP, dotNet and beyond, it almost seems to be a
necessity...

MS seems to be trying the same strategy against Sun, that they so
successfully used against Netscape. I dont know where I stand, but I'll
develop in Java for now. I do know one thing though. Microsoft knows how to
write documentation better than anyone around. Their sdk docs blow away the
ancient looking docs that come with Sun's JDK.

jon
- Original Message -
From: John McKown [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Sunday, May 20, 2001 8:12 PM
Subject: RE: the big export...ColdFusion.NET?


  Pronounced C Sharp, I think it is the successor to C++.
 
  John McKown, Owner
  Delaware.Net, Inc.
  30 Old Rudnick Lane, Suite 200
  Dover, DE 19901
  phone: 302-736-5515
  toll free: 888-432-7965
  fax: 302-736-5945
  e-mail: [EMAIL PROTECTED] mailto:[EMAIL PROTECTED]
  icq: 1812513
 
 
 
  -Original Message-
  From: Paul Mone [mailto:[EMAIL PROTECTED]]
  Sent: Friday, May 18, 2001 7:01 PM
  To: CF-Talk
  Subject: RE: the big export...ColdFusion.NET?
 
 
  What is C#?
 
  -Original Message-
  From: Jon Hall [mailto:[EMAIL PROTECTED]]
  Sent: Friday, May 18, 2001 7:36 AM
  To: CF-Talk
  Subject: Re: the big export...ColdFusion.NET?
 
 
  Michael, before you go and learn VB, realize that vb is morphing into
  vb.net. Although the syntax is similar, the changes/improvements are quite
  drastic. You may want to skip picking up a book on the old VB and
  concentrate on learning the new stuff. Microsofts site is a great place to
  start though.
 
  bigfatsegue
  The whole dotNet thing is very interesting... Microsofts try at
interpreted
  code, like java.
  Which leads me to think back to Macromedia's repeatedly saying dotNet in
the
  press release that they were commited to dotNet.
  It isn't too far of a stretch to say that Neo may be ported to dotNet, and
  specifically C#, which is basically java anyway. The more I think about
it,
  the more I think it's a no brainer for Macromedia to do a C# port. It will
  probably run much faster on Windows. The only risk would be confusing the
  users as to which is better.
 
  That's my random Friday thought. Anyone have any comments?
  /bigfatsegue
 
  jon
  - Original Message -
  From: Michael Lugassy [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Friday, May 18, 2001 10:57 AM
  

RE: Create-edit-delete in Access - TAG

2001-05-21 Thread Steven A. del Sol

I don't know of any tag off hand but you could do the following steps to 
accomplish your goal:
1. Get Rob Munn's CF SQL TAG http://www.cf-hacker.com.
2. Get results of tables in datasource - Output list
3. Make list click-able to a multiple select form. -Nate Weiss wrote some 
good tags to do this.
4. Add form tags with actions to a output page ie
 One for delete, add, and update much like CFGRID.
OR
you could populate a radio button and all #ID#'s that are on are delated. 
or click update humm. I will try and write this little tag.


Good luck.

I am going to try and make a tag if i get it done soon I will email you it.




Um, cfquery works real well with Access.  Use it all the time.  Have
created all kinds of interfaces for clients allowing them to add, edit and
delete files.  It's just like any other cfquery ... um, you run a SQL
query to select rows, insert rows, update rows, delete rows.

In other words, I'm not sure what you're asking here.  There's no sort of
magic button available.  You still gotta write the query and deal with the
input and output.

H.


Howard Owens
Internet Operations Coordinator
www.insidevc.com
[EMAIL PROTECTED]
AIM: GoCatGo1956


  -Original Message-
  From: CF Crazy [SMTP:[EMAIL PROTECTED]]
  Sent: Monday, May 21, 2001 12:56 PM
  To:   CF-Talk
  Subject:  Re: Create-edit-delete in Access - TAG
 
  Well, I am aware of that!
  I do not want to teach my client Cold Fusion or they will no longer need
  me.  I was hoping for some kind of interface. I have seen a couple that
  worked with SQL but I was looking for one to work well with Access.
 
 
  Steph
 
 
  At 02:45 PM 5/21/2001 -0400, you wrote:
  Not to sound like a smart-aleck, but that's what cfquery is for.  You
  can
  run any sql statment there.
  
  Tim P.
  
  - Original Message -
  From: CF Crazy [EMAIL PROTECTED]
  To: CF-Talk [EMAIL PROTECTED]
  Sent: Monday, May 21, 2001 1:54 PM
  Subject: Create-edit-delete in Access - TAG
  
  
   
Does anyone know have a good tag that gives control to create, edit
  and
delete rows and fields using an access database.
   
Steph
   
   
   
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Create-edit-delete in Access - TAG

2001-05-21 Thread Steven A. del Sol

Why you are correct.   Thanks.


At 04:48 PM 5/21/2001 -0700, you wrote:
FYI the correct url is http://www.cfhacker.com

-Original Message-
From: Steven A. del Sol [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 21, 2001 3:21 PM
To: CF-Talk
Subject: RE: Create-edit-delete in Access - TAG


I don't know of any tag off hand but you could do the following steps to
accomplish your goal:
1. Get Rob Munn's CF SQL TAG http://www.cf-hacker.com.
2. Get results of tables in datasource - Output list
3. Make list click-able to a multiple select form. -Nate Weiss wrote some
good tags to do this.
4. Add form tags with actions to a output page ie
  One for delete, add, and update much like CFGRID.
OR
you could populate a radio button and all #ID#'s that are on are delated.
or click update humm. I will try and write this little tag.


Good luck.

I am going to try and make a tag if i get it done soon I will email you it.




 Um, cfquery works real well with Access.  Use it all the time.  Have
 created all kinds of interfaces for clients allowing them to add, edit and
 delete files.  It's just like any other cfquery ... um, you run a SQL
 query to select rows, insert rows, update rows, delete rows.
 
 In other words, I'm not sure what you're asking here.  There's no sort of
 magic button available.  You still gotta write the query and deal with the
 input and output.
 
 H.
 
 
 Howard Owens
 Internet Operations Coordinator
 www.insidevc.com
 [EMAIL PROTECTED]
 AIM: GoCatGo1956
 
 
   -Original Message-
   From: CF Crazy [SMTP:[EMAIL PROTECTED]]
   Sent: Monday, May 21, 2001 12:56 PM
   To:   CF-Talk
   Subject:  Re: Create-edit-delete in Access - TAG
  
   Well, I am aware of that!
   I do not want to teach my client Cold Fusion or they will no longer need
   me.  I was hoping for some kind of interface. I have seen a couple that
   worked with SQL but I was looking for one to work well with Access.
  
  
   Steph
  
  
   At 02:45 PM 5/21/2001 -0400, you wrote:
   Not to sound like a smart-aleck, but that's what cfquery is for.  You
   can
   run any sql statment there.
   
   Tim P.
   
   - Original Message -
   From: CF Crazy [EMAIL PROTECTED]
   To: CF-Talk [EMAIL PROTECTED]
   Sent: Monday, May 21, 2001 1:54 PM
   Subject: Create-edit-delete in Access - TAG
   
   

 Does anyone know have a good tag that gives control to create, edit
   and
 delete rows and fields using an access database.

 Steph



   
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



DHTML MENU

2001-05-08 Thread Steven A. del Sol

Can someone email me an example site using Ben Forta's CF_DHTMLMenu?

Steven A. del Sol
NETPACQ Internet Systems
[EMAIL PROTECTED]
http://www.netpacq.com
-
Vendor Representative
San Diego Cold Fusion
User Group
[EMAIL PROTECTED]
http://www.sdcfug.org


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Hosting

2001-05-01 Thread Steven A. del Sol

We host, manage and setup CF sites.. Our fees run:
Shared five clients
750.00 set-up
345 a month host


Also we have dedicated servers for a 950.00 set up and a 750 monthly host 
with one year contract.


At 01:01 PM 5/1/2001 -0700, you wrote:
Anyone know of a hosting company who will provide the CF/SQL server and
manage it?
I just need monthly cost for a year contract. Maybe setup too.

Steph



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Creating a Dynamic Menu

2001-04-30 Thread Steven A. del Sol



I would like to create a Dynamic Menu
like the one on MSNBC.COM using CF.

Does anybody have any ideas?





~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Creating a Dynamic Menu - SMART @SS

2001-04-30 Thread Steven A. del Sol

Wow, now why didn't I think about that Any Real Help?



At 10:37 AM 4/30/2001 -0700, you wrote:
view source.

-Original Message-
From: Steven A. del Sol [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 30, 2001 9:32 AM
To: CF-Talk
Subject: Creating a Dynamic Menu



 
 I would like to create a Dynamic Menu
 like the one on MSNBC.COM using CF.
 
 Does anybody have any ideas?
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Creating a Dynamic Menu

2001-04-30 Thread Steven A. del Sol

My request is not generic.  I gave a specific URL.  I am trying to make the 
same
look and fell as the one at MSNBC.  It is content driven and as you can 
tell from the
source code created with something like generator.  I give respect where 
due.  I admit
that I have seen some real lame answers on this board to some real lame 
questions.
I appreciate all help I receive.

Now, I can create a flash driven menu but then I must
require the user to have one more piece of technology.  I am a minimalist. 
Flash is
great on a gaming site or even on a portfolio but if you look at the top 
ecommerce and
content driven sites Flash is virtually unseen.  Why? Its a waste of time, 
and prevents
a good number of users from a smooth web experience.

I believe that I can create the Menu options in DHTML for 4.0 browsers and up.
Since, I intend to serve the pages dynamically, I was thinking about the
workload to the server.  This board has alot of top notch talent.  I was 
hoping that
someone might give me a hint or idea that might push me in the right 
direction.
Not the cynical answer.


my point is this:

your request is about as generic as hey i want to make a web page, any
ideas?

well, do you want to make a DHTML menu? will it be only for IE or do you
want it for IE and NN? do you want it to work on macs or just PCs? how many
levels of menus should it have?

i just built a very lean menu that is actually quite powerful that works in
IE 5.0 and above and netscape 4.x and above. works on PCs and macs.

most everything i looked at on the net didn't work for what i wanted to do.
in the end i just wrote my own.

so before you start casting smart ass in your subject, maybe you should
learn something. which is exactly what i meant by view source.




-Original Message-
From: Steven A. del Sol [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 30, 2001 12:21 PM
To: CF-Talk
Subject: RE: Creating a Dynamic Menu - SMART @SS


Wow, now why didn't I think about that Any Real Help?



At 10:37 AM 4/30/2001 -0700, you wrote:
 view source.
 
 -Original Message-
 From: Steven A. del Sol [mailto:[EMAIL PROTECTED]]
 Sent: Monday, April 30, 2001 9:32 AM
 To: CF-Talk
 Subject: Creating a Dynamic Menu
 
 
 
  
  I would like to create a Dynamic Menu
  like the one on MSNBC.COM using CF.
  
  Does anybody have any ideas?
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Creating a Dynamic Menu

2001-04-30 Thread Steven A. del Sol

Now, that sounds good.  I believe I could due that.

CF-WDDX-JS GOOD IDEA

THANKS



At 05:48 PM 4/30/2001 -0400, you wrote:
I believe MSNBC uses some sort of custom ActiveX control. You can get the
same look and feel though. with a Javascript/DHTML script that others have
mentioned. Just dynamically generate the Javascript with CF.
If you are worried about performance, you could get real slick, and generate
your menu as a wddx packet in cf, pass the wddx to a javascript wddx parser
and do all the hard work in javascript, this also lets the browser cache the
menu since it's javascript now.

jon

- Original Message -
From: Steven A. del Sol [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Monday, April 30, 2001 5:20 PM
Subject: RE: Creating a Dynamic Menu


  My request is not generic.  I gave a specific URL.  I am trying to make
the
  same
  look and fell as the one at MSNBC.  It is content driven and as you can
  tell from the
  source code created with something like generator.  I give respect where
  due.  I admit
  that I have seen some real lame answers on this board to some real lame
  questions.
  I appreciate all help I receive.
 
  Now, I can create a flash driven menu but then I must
  require the user to have one more piece of technology.  I am a minimalist.
  Flash is
  great on a gaming site or even on a portfolio but if you look at the top
  ecommerce and
  content driven sites Flash is virtually unseen.  Why? Its a waste of time,
  and prevents
  a good number of users from a smooth web experience.
 
  I believe that I can create the Menu options in DHTML for 4.0 browsers and
up.
  Since, I intend to serve the pages dynamically, I was thinking about the
  workload to the server.  This board has alot of top notch talent.  I was
  hoping that
  someone might give me a hint or idea that might push me in the right
  direction.
  Not the cynical answer.
 
 
  my point is this:
  
  your request is about as generic as hey i want to make a web page, any
  ideas?
  
  well, do you want to make a DHTML menu? will it be only for IE or do you
  want it for IE and NN? do you want it to work on macs or just PCs? how
many
  levels of menus should it have?
  
  i just built a very lean menu that is actually quite powerful that works
in
  IE 5.0 and above and netscape 4.x and above. works on PCs and macs.
  
  most everything i looked at on the net didn't work for what i wanted to
do.
  in the end i just wrote my own.
  
  so before you start casting smart ass in your subject, maybe you should
  learn something. which is exactly what i meant by view source.
  
  
  
  
  -Original Message-
  From: Steven A. del Sol [mailto:[EMAIL PROTECTED]]
  Sent: Monday, April 30, 2001 12:21 PM
  To: CF-Talk
  Subject: RE: Creating a Dynamic Menu - SMART @SS
  
  
  Wow, now why didn't I think about that Any Real Help?
  
  
  
  At 10:37 AM 4/30/2001 -0700, you wrote:
   view source.
   
   -Original Message-
   From: Steven A. del Sol [mailto:[EMAIL PROTECTED]]
   Sent: Monday, April 30, 2001 9:32 AM
   To: CF-Talk
   Subject: Creating a Dynamic Menu
   
   
   

I would like to create a Dynamic Menu
like the one on MSNBC.COM using CF.

Does anybody have any ideas?

   
  
 

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Contact Management App.

2001-04-26 Thread Steven A. del Sol

MS Access 2000 will create the data source for you. It's a wizard option.
You just create the code to match their Script



At 01:36 AM 4/26/2001 -0700, you wrote:
Anyone know of a CF contact app? basic profile.contact info?



..brian






~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Creating a Dynamic Menu

2001-04-26 Thread Steven A. del Sol

I would like to create a Dynamic Menu
like the one on MSNBC.COM using CF.

Does anybody have any ideas?



Steven A. del Sol
NETPACQ Internet Systems
[EMAIL PROTECTED]
http://www.netpacq.com
-
Vendor Representative
San Diego Cold Fusion
User Group
[EMAIL PROTECTED]
http://www.sdcfug.org


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Character code for a TAB

2001-04-24 Thread Steven A. del Sol

I THINK IT IS CHAR(09)




At 05:10 PM 4/24/2001 +0200, you wrote:
There must be a way to let us know the question has been answered!
Let's think about it!

- Original Message -
From: C. Hatton Humphrey [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Tuesday, April 24, 2001 3:51 PM
Subject: RE: Character code for a TAB


  I think the problem is more due to the fact that the responses are more
  hey, I know the answer to this!!! repetitions than meant to clog the
list.
  It's one of the downsides of using an e-mail list versus some other
message
  base format.  All of the replies probably got sent out at the same time
and
  the delay the list actually getting them is more due to email lag than
  anything else.
 
  It's great to get a response and frustrating not to, and I think all of us
  have experienced both sides of that coin.  So to make up for it, when we
  know how to help someone we reflexively hit reply.  The cascade effect is
  what we all see.
 
  Hatton Humphrey
 
  Barbara remains in the hospital and needs blood donors for more
  transfusions. She is also having trouble sleeping and requests tapes of
  Pastor Jack's sermons. - From Real Church Bulletin Bloopers
 
   -Original Message-
   From: Erika L Walker [mailto:[EMAIL PROTECTED]]
  
   How about everyone bookmarks this page (http://www.asciitable.com/),
   now...then no-one should ever have to ask again. Except of course
the
   newcomers. And those we'll beat into submission with a big ole CF book
or
   something...?
  
   :)
  
   Erika
  
   -Original Message-
   From: Michael Lugassy [mailto:[EMAIL PROTECTED]]
  
   I JUST LOVE IT WHEN 1203483409875 PEOPLE answer the same answer
   to a pretty easy question.
  
   I think we gotta sort this out somehow... :)
  
   Thanks,
  
   Michael Lugassy
   Interactive Music Ltd.
 
 
 


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CSV Error

2001-04-24 Thread Steven A. del Sol

I have a CFM page that will do this for you.  Would you like me to send it 
to you?

It will email you the results of the QUERY and also make it an HTML File.





At 10:13 AM 4/24/2001 +0100, you wrote:
Hi all,

I am trying to generate a CSV file for a client from their datacapture
database. They want to be able to open it in Excel.

This is the code I have so far:

CFQUERY datasource=#datasourcename# name=getdatacapture
 SELECT  *
 FROM tbl_datacapture
/CFQUERY

cfset enviro_separator = ,

CFSET newline = chr(13)

cfquery name=getFields datasource=#datasourcename#
 SELECT *
 FROM tbl_fieldnames
/cfquery

!--- set file headings ---
 CFSET fieldlist = 
 CFOUTPUT query=getFields
 CFSET fieldlist = fieldlist  #fieldName#,
 CFIF getFields.currentrow is 1
 CFSET fileContent = #fieldName#
 CFELSE
 CFSET fileContent = filecontent  
 #enviro_separator##fieldName#
 /CFIF
 /CFOUTPUT
 CFSET fileContent = fileContent  newline

!--- generate csv fields ---
 CFSET cf_fields = 
 CFOUTPUT QUERY=getdatacapture group=ID
 CFLOOP INDEX=i LIST=#fieldlist#
 CFIF i is ID
 CFSET field_value = #getdatacapture.ID#
 CFELSEIF i is title
 CFSET field_value = 
 #getdatacapture.title#
 CFELSEIF i is firstname
 CFSET field_value = 
 #getdatacapture.firstname#
 CFELSEIF i is surname
 CFSET field_value = 
 #getdatacapture.surname#
 CFELSEIF i is address1
 CFSET field_value = 
 #getdatacapture.address1#
 CFELSEIF i is address2
 CFSET field_value = 
 #getdatacapture.address2#
 CFELSEIF i is town
 CFSET field_value = #getdatacapture.town#
 CFELSEIF i is county
 CFSET field_value = 
 #getdatacapture.county#
 CFELSEIF i is postcode
 CFSET field_value = 
 #getdatacapture.postcode#
 CFELSEIF i is telephone
 CFSET field_value = 
 #getdatacapture.telephone#
 CFELSEIF i is otherinfo
 CFSET field_value = 
 #getdatacapture.otherinfo#
 /CFIF
 CFSET field_value_nocommas = 
 #ReplaceNoCase(#field_value#, ,,  ,
ALL)##enviro_separator#
 CFSET filecontent = filecontent  
 field_value_nocommas

 /CFLOOP
 CFSET filecontent = filecontent  newline
 /CFOUTPUT

CFSET filename =
glyndebourne_datacapture_#DateFormat(#now()#,ddmmyy)#.csv

 cffile action=WRITE file=#csv_root#\#filename# 
 output=#fileContent#


Everything seems to work OK, and a file is created which I can view in
Notepad, and it seems ok. But when I try to open it in Excel it tells me
that:

SYLK: File Format Not valid

I have had a look at the csv file, and compared it to one that I know
definetly works, and I can't see a difference.
Anyone know what this error means??

TIA

Will Swain
Hot Horse Ltd




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Image size

2001-04-20 Thread Steven A. del Sol

You can still get that tag at CFDEV.COM




At 03:07 PM 4/20/2001 -0400, you wrote:
The Allaire Developers forum used to have a tag called cfx_imagesize (or
something close to that). It isn't there any more, or I can't locate it.

Does anyone know of ANY way to automatically create a thumbnail from an
image as it is uploaded (with cffile)

Thanks...




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: AbleCommerce

2001-04-20 Thread Steven A. del Sol

What version of Able are you running?


At 04:35 PM 4/20/2001 -0500, you wrote:
Does anyone know of any CustomTags for AbleCommerce integration? I have to
integrate it with paperthin's commonspot, content publisher.

Thanx
btc

-- does anyone have experience using CommonSpot? My company is a reseller
and I have not seen to much notoriety about itanyone? just looking for
opinions. Dave Horan wrote an article about it for CFDJ, but that is about
the only information I have seen on it. Dave is a co-worker.
Fusion Productions --- Touching Emotions, Engaging Minds  Expanding
Imaginations...

-Original Message-
From: Greg Jordan [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 4:16 PM
To: CF-Talk
Subject: RE: CyberCash


IMHO, they weren't that great to begin with...I've used them on two
different sites, with *many* processing problems as well as Operational
problems.  Code-wise, it wasn't so badI much prefer to use AuthNet, or
Bank of America - if possible.

now that they are in a *soft* financial situation, well, that could cause
even bigger headaches for later, on many levels.

-Original Message-
From: sebastian palmigiani [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 20, 2001 3:41 PM
To: CF-Talk
Subject: OT:CyberCash



I am thinking of using CyberCash. How is their performance and service since
they have declared bankruptcy?

Sebastian


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



HARPOON 4.0

2001-04-19 Thread Steven A. del Sol

Ok, I also was on the list for Harpoon beta but 4.0 did not show up.
I had to request to be added again.  They have posted it up and
added me.  So for all those that were on the list you might have to
get added again.



Steven A. del Sol
NETPACQ Internet Systems
[EMAIL PROTECTED]
http://www.netpacq.com
-
Vendor Representative
San Diego Cold Fusion
User Group
[EMAIL PROTECTED]
http://www.sdcfug.org


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF Shopping Cart Solution?

2001-04-17 Thread Steven A. del Sol

Out of the box AbleCommerce offers a great cart.


Steve



At 01:33 PM 4/17/2001 -0700, you wrote:

Does anyone have experience with CF EZ CART or other CF
based Shopping Cart software? Im a Mid-Level Developer who is looking
for a shopping cart solution. Crystaltech www.crystaltech.com is a great ISP

which has Cold Fusion in their most basic monthly plans but their
standard Cart is Miva Merchant, which isn't currently very stable on 2000.

Thanks in Advance.

Tim Hawkins
Web Developer
Spectrum Astro Inc.
www.spectrumastro.com



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF Using 90-100% of processor time (911!)

2001-04-16 Thread Steven A. del Sol

I believe your problem is that on one of your pages you are timing out.
Check to see if you have a page where you are passing a Alpha into a 
numeric field.

It will not necessarily crash if you have a number in the sequence 
somewhere but it can stall your
cfserver for hours.  Also, set your timeout's lower and set server to 
restart on two timeouts.

This error can happen with datefields too.  Hope you find your problem it 
took us three weeks
going through thousands of line of code to fine one date field not 
validating, throwing errors and
causing  the server to have cfserver at 95% to 100% of the memory usage.



GOOD LUCK




At 12:48 PM 4/16/2001 -0400, you wrote:
My server developed a problem today. CFServer.exe is using almost all of the
available processing time. I've tried stopping and starting the services and
the NT box, but as soon as I start CF again it almost immediately grabs all
of the processor time.

I'm running NT and CF 4.01. We've had this application up and running for a
little over a year now and have only started having this problem today. I'd
greatly appreciate any suggestions, since this has my Web site running at a
crawl.

TIA!

Russell Conway
HallofSports.com, Inc.
351 West 22nd Street
New York, NY 10011
P (646) 638-2500
F (646) 638-3444
http://www.hallofsports.com
.. . . where the legends live on




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Creating Page Breaks to make page printable?

2001-04-16 Thread Steven A. del Sol

Does anyone know of a way to force printing breaks of a document?


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Note passing system?

2001-04-16 Thread Steven A. del Sol

I have a socket I wrote for my organization.  Real crude but it works.
Interested?


Steve


Sounds like you want a project management tool.

We have an internal system here we use to parse out work.  Basically the
client/project manager submits an item to a form and it appears on the
necessary persons desktop based on who they select.  They see the item, do
the work, mark their time, and reply via the form.  It's a great project
management tool and it keeps track of correspondence.

Building a system like your describing isn't too difficult, it's just time
consuming.  We have looked into outside utilities to do this, but we've
found them lacking.  As a development shop we have found that when we need
some additional functionality we build it on.  The current system we have
now has grown out of several developers efforts in the past two years to
incompass project managment, billing, contacts, work requests, logging, and
a host of other things.

A third party too may save you time in the short run, but in the long run,
it'll probably lacks the additional functionality you want.  I recommend
buiding your own system, keeping in mind you want to be able to add
additionally functionality in the future.

- Paul


- Original Message -
From: "Rey Bango" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, April 16, 2001 1:07 PM
Subject: Note passing system?


  Anyone know of a good CF-based note/messaging system? I'm not talking
about
  an email server but more of a db driven messaging software that will allow
  me to post a message to a specific suer. When that user comes in, they can
  check for their own messages and reply accordingly. Again, its not an
email
  system per se.
 
  Thanks,
 
  Rey Bango...
  Certified Allaire Instructor
  Member of Team Allaire
 
  "A browser's beauty, at its heart, is its usefulness as a *TOOL*."
 
 
 
 


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Scanner Software

2001-04-13 Thread Steven A. del Sol

Best one out there is activescan from http://www.cfdev.com

Steven A. del Sol
Vendors Representative
San Diego Cold Fusion User Group
[EMAIL PROTECTED]

At 04:13 PM 4/13/2001 -0600, you wrote:
Does anyone know where I may be able to get a custom tag (or whatever) 
that will
allow me to scan images directly into a browser that will work with 
ColdFusion?

I have looked at the software cfdev.com offers and it is pretty good 
except that
it will only scan to a .jpg image format and I need it to be able to scan to a
..tif format.

Thanks,

Kevin




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Is WDDX alive well ?

2001-04-12 Thread Steven A. del Sol

I would be interested to hear more about what you developed.


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: AbleCommerce

2001-04-05 Thread Steven A. del Sol

If you need one I think forsite-designs built one.  Check the forums on 
ABLE's site I have seen numerous messages about it.



At 04:34 PM 4/5/2001 -0400, you wrote:
Hi All,

Has anyone here built an add on to ACB for customer handling returns?

TIA,
Duane



~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Stupid Question? - Commenting Code That Does Not Show in Browser

2001-04-03 Thread Steven A. del Sol

If you are using CF just put in three dashes instead of two...
!---   Code 



At 12:34 PM 4/3/2001 -0600, you wrote:
I want to place comments in the code for the other developers.  However I do
not want the comments to show up in the browser with "view source." Am I
totally overlooking something?

Thanks,
Jeff


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Simple validation

2001-04-03 Thread Steven A. del Sol

I am in desperate need of a simple validation of two types of form fields.

1.   Date field (not a cfform just a plain form) - must validate that data 
entered is a date

2.  Number field (not a cfform just a plain form) - must validate that data 
entered is a number


Thanks

Stephanie




~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists