CFImage and WriteToBrowser

2008-06-13 Thread CFDEV
I am using CFIMAGE to read CLOB data from an oracle database and then write
it to the browser for the end user to view.
My thought was that the writetobrowser attribute will be creating an
instance in memory therefore the file is not written to the file server.

is this true?

If so, after the image is displayed in the web browser, by viewing the
properties of the image, it is shown as:
/CFFileServlet/_cf_image/_cfimg[xx]

Am I correct in assuming that the file is being written to the file server
within that area and then viewed by the browser?
As well, how long does the CF Server maintain the image (just for the
request or is it there until the server restarts)?

Now to throw another monkey wrench into the whole schema
How effective is this within a Load Balancing configuration?
Is the image generated on SERVER A and then the request is moved to SERVER B
for the remaining requests (all one single web transaction),
and then the image is no longer viewable since the end user is now on SERVER
B but the image is on SERVER A?

Our goal is to display the images from the database without the need to
write them to the file server and run a cleanup process afterwards..


-- 
Fred Allen  - Imitation is the sincerest form of television.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:307405
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Re: Delete prior to an insert as a safeguard

2008-05-30 Thread CFDEV
since an update is not allowed, yes, then for interity, I would do the DEL
then INSERT

On Fri, May 30, 2008 at 12:50 PM, Cameron Johnson [EMAIL PROTECTED] wrote:

 Hello.

 I'm looking for some best practice advice with this one.

 In our membership database, we have a table where we assign membership to a
 community/group. A user can join or leave these groups on the web (simple
 checkbox form), or staff can add or remove group membership through the
 desktop client. By nature of the desktop client, there is the possibility of
 a data error, ex: populated fieldA and fieldB, but not fieldC.

 For the web application, upon submitting the form, I'm looping through a
 list of itemsToAdd and inserting those. In the event that there are bad
 records because of bad data entry from the desktop client, should I be
 deleting the to-be-inserted record before inserting?

 (Please forgive the ham-fisted, partial object orientation of invoking the
 component for each item.)

 So, if I call the insert method:

 cfloop list=#itemsToAdd# index=itemsToAddIndex
   cfinvoke component=components.myComponent method=insertMethod
  cfinvokeargument name=fieldA value=#itemsToAddIndex# /
  cfinvokeargument name=fieldB value=#form.fieldB# /
  cfinvokeargument name=fieldC value=#form.fieldC# /
   /cfinvoke
 /cfloop

 Should I be calling the delete method first?

 cfloop list=#itemsToAdd# index=itemsToAddIndex
   cfinvoke component=components.myComponent method=deleteMethod
  cfinvokeargument name=fieldA value=#itemsToAddIndex# /
  cfinvokeargument name=fieldB value=#form.fieldB# /
  cfinvokeargument name=fieldC value=#form.fieldC# /
   /cfinvoke
   cfinvoke component=components.communities method=insertCommunities
  cfinvokeargument name=fieldA value=#itemsToAddIndex# /
  cfinvokeargument name=fieldB value=#form.fieldB# /
  cfinvokeargument name=fieldC value=#form.fieldC# /
   /cfinvoke
 /cfloop

 I've never seen something like this, but it seems like an OK idea. Anyone
 have a better solution or suggestion? Please note that I have to keep to
 inserts and deletes; no updates.

 Thanks for the help.

 Cameron


 

~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:306391
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


CF8 / CFXML

2008-05-13 Thread CFDEV
Does anyone have an example on creating an xml file based on data being
pulled from a query?

I have found a few examples (google) but not quite there yet.


~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;192386516;25150098;k

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:305154
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4


Cfdirectory alternative

2006-02-01 Thread CFDEV
If the cfdirectory tag is not allowed on our host, is there an alternative
like a CFC?
 
Thanks
 
Pat


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230930
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


CF server version

2005-11-28 Thread CFDEV
What's the code to know the cf version on the server already?
 
thanks
 
Pat


~|
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:225481
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


NHL stats web services

2005-10-05 Thread CFDEV
Any of you doing hockey pool? I'm looking for a web services or something
like that to update statistics daily.
 
Thanks
 
Pat


~|
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:220178
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


DBASE coldfusion 4 problem

2005-08-13 Thread CFDEV
Hi,
 
I have to modify an old site of a client which is under CF 4 and DBase IV
(ouch!!!) and when i try to insert data in a table i get this message :
 
[INTERSOLV][ODBC dBase driver]Cannot modify a table which has been opened
read only.
 
Anyone knows a solution?
 
Thanks
 
Pat


~|
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:214906
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: DBASE coldfusion 4 problem

2005-08-13 Thread CFDEV
The app never inserted value in the database, it was only reading.

I never worked with dbase.. Started CF in 1999 with oracle so... :(

I downloaded the .dbf file but I can only open them with Excel. SO I don't
know how to insert data in beside by CF.

Thanks

Pat 

-Original Message-
From: Connie DeCinko [mailto:[EMAIL PROTECTED] 
Sent: August 13, 2005 19:13
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

Can you provide more information?  Did it work at one time and recently
started to error?  Typical questions: any changes been made to the server
and or app recently?  Do you get the error if you try and add data outside
of CF?
 

-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 13, 2005 3:58 PM
To: CF-Talk
Subject: DBASE coldfusion 4 problem

Hi,
 
I have to modify an old site of a client which is under CF 4 and DBase IV
(ouch!!!) and when i try to insert data in a table i get this message :
 
[INTERSOLV][ODBC dBase driver]Cannot modify a table which has been opened
read only.
 
Anyone knows a solution?
 
Thanks
 
Pat






~|
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:214909
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: DBASE coldfusion 4 problem

2005-08-13 Thread CFDEV
Well this program works just fine..

I still get the error as read only.. Maybe something on the server? I asked
the sysadmin but no answer yet.

Thanks

Patrick 

-Original Message-
From: Connie DeCinko [mailto:[EMAIL PROTECTED] 
Sent: August 13, 2005 19:30
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

Download this and see if you can gain some more insight into the database:
http://www.dbfmanager.com/download/
 

-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 13, 2005 4:18 PM
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

The app never inserted value in the database, it was only reading.

I never worked with dbase.. Started CF in 1999 with oracle so... :(

I downloaded the .dbf file but I can only open them with Excel. SO I don't
know how to insert data in beside by CF.

Thanks

Pat 

-Original Message-
From: Connie DeCinko [mailto:[EMAIL PROTECTED]
Sent: August 13, 2005 19:13
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

Can you provide more information?  Did it work at one time and recently
started to error?  Typical questions: any changes been made to the server
and or app recently?  Do you get the error if you try and add data outside
of CF?
 

-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 13, 2005 3:58 PM
To: CF-Talk
Subject: DBASE coldfusion 4 problem

Hi,
 
I have to modify an old site of a client which is under CF 4 and DBase IV
(ouch!!!) and when i try to insert data in a table i get this message :
 
[INTERSOLV][ODBC dBase driver]Cannot modify a table which has been opened
read only.
 
Anyone knows a solution?
 
Thanks
 
Pat










~|
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:214911
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: DBASE coldfusion 4 problem

2005-08-13 Thread CFDEV
By ftp, I can write in the directory since a downlaoded the file, change
some fields in dbfmanager and upload it back.

Patrick 

-Original Message-
From: Connie DeCinko [mailto:[EMAIL PROTECTED] 
Sent: August 13, 2005 20:22
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

Well since it is a file based system, much like MS Access, I wonder if you
need write permission on the folder the DB is located in?  Can you get an
insert to work locally?
 
 
Constanty Connie DeCinko III
Web Architect, Webmaster, Web Developer
Lone Jet Enterprises
Glendale, Arizona
www.LoneJet.com
 

 

-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 13, 2005 5:14 PM
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

Well this program works just fine..

I still get the error as read only.. Maybe something on the server? I asked
the sysadmin but no answer yet.

Thanks

Patrick 






~|
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:214915
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: DBASE coldfusion 4 problem

2005-08-13 Thread CFDEV
It is on a remote server and I upload it there.

Patrick 

-Original Message-
From: Dawson, Michael [mailto:[EMAIL PROTECTED] 
Sent: August 13, 2005 20:29
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

This may be too obvious, but I fall for it occasionally, but do you have the
file open for reading, in a different program, while you are trying to
insert the data with CF?

-Original Message-
From: Connie DeCinko [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 13, 2005 7:22 PM
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

Well since it is a file based system, much like MS Access, I wonder if you
need write permission on the folder the DB is located in?  Can you get an
insert to work locally?
 
 
Constanty Connie DeCinko III
Web Architect, Webmaster, Web Developer
Lone Jet Enterprises
Glendale, Arizona
www.LoneJet.com
 

 

-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 13, 2005 5:14 PM
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

Well this program works just fine..

I still get the error as read only.. Maybe something on the server? I asked
the sysadmin but no answer yet.

Thanks

Patrick 








~|
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:214916
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: DBASE coldfusion 4 problem

2005-08-13 Thread CFDEV
Thanks, I pointed everything to the sysadmin and will wait on his reply.

Thanks to all

Patrick 

-Original Message-
From: Connie DeCinko [mailto:[EMAIL PROTECTED] 
Sent: August 13, 2005 20:57
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

Another issue worth double checking, are the settings of the datasource in
the CFAdmin.  It is possible that write permissions are not enabled there
since they were not needed before.
 

-Original Message-
From: Connie DeCinko [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 13, 2005 5:52 PM
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

But does the user ID the ColdFusion service runs under have permission.  It
should, but worth checking. 

-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 13, 2005 5:44 PM
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

By ftp, I can write in the directory since a downlaoded the file, change
some fields in dbfmanager and upload it back.

Patrick 








~|
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:214921
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: DBASE coldfusion 4 problem

2005-08-13 Thread CFDEV
I changed the permission with a CHMOD through FTP and now it works so thanks
to everyone.

Pat 

-Original Message-
From: Connie DeCinko [mailto:[EMAIL PROTECTED] 
Sent: August 13, 2005 20:57
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

Another issue worth double checking, are the settings of the datasource in
the CFAdmin.  It is possible that write permissions are not enabled there
since they were not needed before.
 

-Original Message-
From: Connie DeCinko [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 13, 2005 5:52 PM
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

But does the user ID the ColdFusion service runs under have permission.  It
should, but worth checking. 

-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 13, 2005 5:44 PM
To: CF-Talk
Subject: RE: DBASE coldfusion 4 problem

By ftp, I can write in the directory since a downlaoded the file, change
some fields in dbfmanager and upload it back.

Patrick 








~|
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:214922
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


Last dbase 4 question

2005-08-13 Thread CFDEV
Since some of you seems to have work with dbase before.. when i use the
delete query my record seems to be deleted but when i download the dbf file
and open it, i still see my records? how do we completly delete them? I
remember something about this in flat file database like foxpro and dbase..
 
Thanks
 
Pat


~|
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:214924
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: Last dbase 4 question

2005-08-13 Thread CFDEV
Do you know if there is a way to do this by ColdFusion?

Pat 

-Original Message-
From: Connie DeCinko [mailto:[EMAIL PROTECTED] 
Sent: August 13, 2005 21:44
To: CF-Talk
Subject: RE: Last dbase 4 question

As I recall, that's by design.  Dbase tags the record as deleted until you
do a cleanup (purge/compact).  Then it finally comes out of the database.
 
 
Constanty Connie DeCinko III
Web Architect, Webmaster, Web Developer
Lone Jet Enterprises
Glendale, Arizona
www.LoneJet.com
 

 

-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: Saturday, August 13, 2005 6:13 PM
To: CF-Talk
Subject: Last dbase 4 question

Since some of you seems to have work with dbase before.. when i use the
delete query my record seems to be deleted but when i download the dbf file
and open it, i still see my records? how do we completly delete them? I
remember something about this in flat file database like foxpro and dbase..
 
Thanks
 
Pat






~|
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:214930
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


Calendar

2005-06-06 Thread CFDEV
Hi all,
 
I'm sure it's been asked already but I'm looking for a calendar of events...
with an admin panel and pop up (or div over) for events that have a long
description...
 
I would also like recurrence and multi-language but it's not priority.
 
Any ideas?
 
Thanks
 
Patrick


~|
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:208680
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


FW: calendar

2005-06-06 Thread CFDEV
A nyone has a copye of thie calendar.. the link is dead on the site.
 
 http://www.infusiontechnology.com/web
http://www.infusiontechnology.com/web 
 
Pat 


~|
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:208730
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


DBase and coldfusion

2005-06-01 Thread CFDEV
Hi all,
 
I have a client with an old dbase application and I want to read some
information from that database to put in a new application online (mysql and
coldfusion).
 
His secretary is already inputing information on her dbase software and
sends only the update information in a .DBF file to the directory who then
append the main dbase file. I would like to let the secretary also upload
the .DBF file on a web page so I can read from that file and update the
mysql Database. 
 
Does anyone knows a way to do this? maybe a javaobject to go trought the
..DBF file?
 
Thanks
 
Pat


~|
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:208220
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: DBase and coldfusion

2005-06-01 Thread CFDEV
It's hosted on a linux box, I don't believe you can create a dbase
datasource...?

Pat 

-Original Message-
From: Claude Schneegans [mailto:[EMAIL PROTECTED] 
Sent: June 1, 2005 12:23
To: CF-Talk
Subject: Re: DBase and coldfusion

 Does anyone knows a way to do this?

Just create an ODBC datasource on the dbf file and use it as any other
datasource.

--
___
REUSE CODE! Use custom tags;
See http://www.contentbox.com/claude/customtags/tagstore.cfm
(Please send any spam to this address: [EMAIL PROTECTED]) Thanks.




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client 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:208235
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: CF Tag for Next and Previous searching (like Google)

2005-05-23 Thread CFDEV
I'd like it as well.

Patrick 

-Original Message-
From: Allan Cliff [mailto:[EMAIL PROTECTED] 
Sent: May 23, 2005 06:38
To: CF-Talk
Subject: RE: CF Tag for Next and Previous searching (like Google)

It's called cf_break_recordset

Copy on its way off list

Allan

-Original Message-
From: Stuart Kidd [mailto:[EMAIL PROTECTED]
Sent: 23 May 2005 12:34
To: CF-Talk
Subject: CF Tag for Next and Previous searching (like Google)


Hi guys,

I remember in the past seeing a next/previous CFTag which would create
NEXT and PREV buttons like Google does as well as other search engines.

Does anyone know what it is called off hand?

Thanks,

Saturday








~|
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:207417
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: DB Design, Engineering Re-Engineering Software

2005-05-20 Thread CFDEV
I use dbdesigner by fabforce 

Fabforce.net

Open source project ;)

Pat 

-Original Message-
From: Dave Merrill [mailto:[EMAIL PROTECTED] 
Sent: May 20, 2005 16:40
To: CF-Talk
Subject: RE: DB Design, Engineering  Re-Engineering Software

Haven't gotten around to actually trying it, but DDS-Lite looks good:
http://www.dds-lite.com/

Interesting bullets from their feature list:

---
- Enhanced Entity Relationship Diagram modeling allows you to design a fully
relational database, complete with Cascading Referential Integrity
Constraints, Indexes, Checks, Defaults and Unique constraints.

- Data Structure Diagram that is created automatically from the Enhanced
Entity Relationship Diagram shows the complete table structure.

- Data Definition Language (DDL) Scripts for creating, dropping and loading
the database can be quickly and easily generated for all of the supported
database servers.

- Cross DBMS Target Compatibility allows you to design once and create for
all. No need to concern yourself with vendor specific variations to SQL
syntax. All is handled by the application.

- Supports All Major Databases including Oracle, DB2, SQL Server, Informix,
Sybase (ASA and ASE), MySQL, PostgreSQL, Interbase, Access, SQLBase, Ingres,
ANSI and Pervasive SQL.

- Template Language to define the Data Definition Language scripts allows
you to create the scripts exactly as you want them.

- Java Source Code can be created directly from the Enhanced Entity
Relationship Diagram to contain the Data Definition Language for any of the
supported database targets. Source code can be compiled and executed from
within the DDS-Lite environment.
---

The $100 version doesn't do views, procedures, triggers, reverse engineering
from existing dbs, or splitting big projects into multiple models. The $400
version does.

Dave Merrill


 Any recommendations on DB software much less expensive then Erwin?

 Andy





~|
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:207315
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: DB Design, Engineering Re-Engineering Software

2005-05-20 Thread CFDEV
Yes it's better with mysql but works also through ODBC with other DB.. I
personnaly use it as well with oracle and for a free tool, it's doing the
job..

Pat 

-Original Message-
From: Andy Ousterhout [mailto:[EMAIL PROTECTED] 
Sent: May 20, 2005 19:33
To: CF-Talk
Subject: RE: DB Design, Engineering  Re-Engineering Software

Looks like it only works with MySQL and I use MS SQL.

-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: Friday, May 20, 2005 4:31 PM
To: CF-Talk
Subject: RE: DB Design, Engineering  Re-Engineering Software


I use dbdesigner by fabforce 

Fabforce.net

Open source project ;)

Pat 

-Original Message-
From: Dave Merrill [mailto:[EMAIL PROTECTED]
Sent: May 20, 2005 16:40
To: CF-Talk
Subject: RE: DB Design, Engineering  Re-Engineering Software

Haven't gotten around to actually trying it, but DDS-Lite looks good:
http://www.dds-lite.com/

Interesting bullets from their feature list:

---
- Enhanced Entity Relationship Diagram modeling allows you to design a fully
relational database, complete with Cascading Referential Integrity
Constraints, Indexes, Checks, Defaults and Unique constraints.

- Data Structure Diagram that is created automatically from the Enhanced
Entity Relationship Diagram shows the complete table structure.

- Data Definition Language (DDL) Scripts for creating, dropping and loading
the database can be quickly and easily generated for all of the supported
database servers.

- Cross DBMS Target Compatibility allows you to design once and create for
all. No need to concern yourself with vendor specific variations to SQL
syntax. All is handled by the application.

- Supports All Major Databases including Oracle, DB2, SQL Server, Informix,
Sybase (ASA and ASE), MySQL, PostgreSQL, Interbase, Access, SQLBase, Ingres,
ANSI and Pervasive SQL.

- Template Language to define the Data Definition Language scripts allows
you to create the scripts exactly as you want them.

- Java Source Code can be created directly from the Enhanced Entity
Relationship Diagram to contain the Data Definition Language for any of the
supported database targets. Source code can be compiled and executed from
within the DDS-Lite environment.
---

The $100 version doesn't do views, procedures, triggers, reverse engineering
from existing dbs, or splitting big projects into multiple models. The $400
version does.

Dave Merrill


 Any recommendations on DB software much less expensive then Erwin?

 Andy









~|
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:207326
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


French CF documentation

2005-05-13 Thread CFDEV
Hi all,
 
Some months ago, someone on this list was looking for french CF ressources..
I was woundering if he found some because we have som issue with CF and
verity on the french side of our site and would like to read some docs on
it.. english docs is quite ok for what we need but we are looking for the
french counterpart of it.
 
Thanks
 
Pat


~|
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:206598
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


cf5 question

2005-05-08 Thread CFDEV
Hi, I have a blank, it's been too long since I worked with CF5. I'm trying
to do something that works fine on cf mx but not on cf 5
 
#evaluate(application.  client.version  .s  scenario)#
 
How should I do it in cf5?
 
Thanks
 
Patrick


~|
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:206018
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: cf5 question NEVERMIND

2005-05-08 Thread CFDEV
Oops.. Sorry..it works fine on CF5, the error was just beside ... 

Pat 

-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED] 
Sent: May 8, 2005 17:12
To: CF-Talk
Subject: cf5 question

Hi, I have a blank, it's been too long since I worked with CF5. I'm trying
to do something that works fine on cf mx but not on cf 5
 
#evaluate(application.  client.version  .s  scenario)#
 
How should I do it in cf5?
 
Thanks
 
Patrick




~|
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:206021
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: Need cfcomet article

2005-05-06 Thread CFDEV
Maybe it's there :

http://cfregex.com/cfcomet/

Pat
 

-Original Message-
From: Adam Haskell [mailto:[EMAIL PROTECTED] 
Sent: May 6, 2005 09:17
To: CF-Talk
Subject: Re: Need cfcomet article

I tried wayback machine but it did not archive the article I needed...infact
it seems it doesn;t play nice with dynamic urls

Adam H

On 5/6/05, Micha Schopman [EMAIL PROTECTED] wrote:
 Adam,
 
 The archive, saved the latest version on the 22-05-2004. That one 
 seems to work.
 
 http://web.archive.org/web/*/http://www.cfcomet.com
 
 Micha Schopman
 Project Manager
 
 Modern Media, Databankweg 12 M, 3821 AL  Amersfoort Tel 033-4535377, 
 Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380
 
 --
 --
 --
 --
 -
 Modern Media, Making You Interact Smarter. Onze oplossingen verbeteren 
 de interactie met uw doelgroep.
 Wilt u meer omzet, lagere kosten of een beter service niveau? Voor 
 meer informatie zie www.modernmedia.nl
 --
 --
 --
 --
 -
 -Original Message-
 From: Adam Haskell [mailto:[EMAIL PROTECTED]
 Sent: vrijdag 6 mei 2005 13:53
 To: CF-Talk
 Subject: Need cfcomet article
 
 Cf comet seems to be gone,for now, and I need an arcticle off there 
 that is supposed to help me solve my COM error 0x5. Access is denied.
 problem. Anyone got info on how to fix this issue?
 
 Adam H
 
 



~|
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:205841
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


Word com object question

2005-04-26 Thread CFDEV
Hi, I looked at http://cfregex.com/cfcomet/word/ to try to read form fields
from a word file. The code example is great but on my CF MX 6.1 server i get
an error when I create the object. Do I need to download and installed the
COM object or is it integrated in CF MX (standard version)?
 
Here's the error :
 
Error Occurred While Processing Request 



An exception occurred when instantiating a Com object. 

The cause of this exception was that:
coldfusion.runtime.com.ComObjectInstantiationException: An exception
occurred when instantiating a Com object..  

The error occurred in
E:\wwwroot\Applications\Private\CF_Apps\testing\read_word.cfm: line 17
Called from E:\wwwroot\Applications\Private\CF_Apps\testing\read_word.cfm:
line 17
Called from E:\wwwroot\Applications\Private\CF_Apps\testing\read_word.cfm:
line 17


15 :

16 :cfcatch

17 :cfobject action=CREATE class=Word.Application
name=objWord type=COM

18 :/cfcatch

19 :

 
Thanks


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client 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:204489
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: Word com object question

2005-04-26 Thread CFDEV
Thanks, I don't think that Word is installed on this server.  I'll check
with my sys admnin.

Thanks again

Patrick 

-Original Message-
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: April 26, 2005 13:46
To: CF-Talk
Subject: RE: Word com object question

Is word installed on the server?  The com objects need an instance of word
installed on the server (client machines don't count).  And thus the problem
with these solutions, any error generated by word is going to throw a modal
window to the server and stop word from responding to anything else until a
human checks in on the server and responds to the window.


--
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA
 
C code. C code run. Run code run. Please!
- Cynthia Dunning

.-Original Message-
.From: CFDEV [mailto:[EMAIL PROTECTED]
.Sent: Tuesday, April 26, 2005 10:41 AM
.To: CF-Talk
.Subject: Word com object question
.
.Hi, I looked at http://cfregex.com/cfcomet/word/ to try to read form
.fields from a word file. The code example is great but on my CF MX
6.1 server i get an error when I create the object. Do I need to
download and installed the COM object or is it integrated in CF MX
(standard version)?
.
.Here's the error :
.
.Error Occurred While Processing Request 
.
.
.An exception occurred when instantiating a Com object.
.
.The cause of this exception was that:
.coldfusion.runtime.com.ComObjectInstantiationException: An exception
.occurred when instantiating a Com object..
.
.The error occurred in
.E:\wwwroot\Applications\Private\CF_Apps\testing\read_word.cfm: line 17
.Called from
.E:\wwwroot\Applications\Private\CF_Apps\testing\read_word.cfm:
.line 17
.Called from
.E:\wwwroot\Applications\Private\CF_Apps\testing\read_word.cfm:
.line 17
.
.
.15 :
.
.16 :   cfcatch
.
.17 :   cfobject action=CREATE class=Word.Application
.name=objWord type=COM
.
.18 :   /cfcatch
.
.19 :
.
.
.Thanks
.
.
.



~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client 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:204493
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


CFIMAP attachment?

2005-04-21 Thread CFDEV
 In BlueDragon  what is the URI in the attachmentsURI attribute of the
CFIMAP tag? I can't seem to have it work.
 
Thanks
 
Patrick


~|
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:203912
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


take duplicate out of a list

2005-04-19 Thread CFDEV
Hi, is there an easy way to take duplicate out of a list or do I have to
loop trough the list and create a new list with all elements and check if
they are already in the new list before inserting them?
 
Thanks
 
Pat


~|
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:203598
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: take duplicate out of a list

2005-04-19 Thread CFDEV
Thanks 

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: April 19, 2005 19:30
To: CF-Talk
Subject: Re: take duplicate out of a list

You got it.  Though there's a UDF on cflib.org that'll do it, and is already
written.

cheers,
barneyb

On 4/19/05, CFDEV [EMAIL PROTECTED] wrote:
 Hi, is there an easy way to take duplicate out of a list or do I have 
 to loop trough the list and create a new list with all elements and 
 check if they are already in the new list before inserting them?
 
 Thanks
 
 Pat

--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.



~|
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:203600
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: Building Applications for multiple DB's

2005-04-11 Thread CFDEV
Well we did something like this and all queries are in Components so the db
variable config tells which component object to invoke. But as Steve
mentionned, all components of queries need to be adapted to the DB.

Pat

-Original Message-
From: Steve Brownlee [mailto:[EMAIL PROTECTED] 
Sent: April 11, 2005 16:14
To: CF-Talk
Subject: RE: Building Applications for multiple DB's

All I can say is... My condolensces.

Making an application database independent is an extremely daunting and
time-consuming task.  There is no easy way to do it.  Since each database
engine has many different rules, procedures and operations, you basically
end up having to write all of the SQL again for each DB you want to support.
The only way around this is to write your original SQL to adhere to the most
basic ANSI standard - which is also hard to do because you then lose the
support for the some of the functionality in the DB you originally wrote it
for.

Have a long and serious discussion with the powers that be at your place if
the massive amount of time and effort (a.k.a. money) needed to make your CMS
db independent will ever be realized in profits from sales.

-Original Message-
From: jonese [mailto:[EMAIL PROTECTED]
Sent: Monday, April 11, 2005 4:07 PM
To: CF-Talk
Subject: Building Applications for multiple DB's

Anyone have any pointers or examples of CF or PHP application which have
been constructed with the ability to work on multiple Databases? IE the
application can easily be run on MSSQL, Access, MySQL etc and all the user
has to do is changed a config variable or point to another DB file.
 I'm trying to do the leg work now for a future upgrade to our CMS. Right
now it runs on MSSQL, but we want to make it so users can easily install it
into mysql, etc.
 thanks in advance.
jonese




~|
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:202277
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: low-end web hosting?

2005-04-08 Thread CFDEV
I used wwwefree2net.com for smaller packages with CF MX

Pat 

-Original Message-
From: Stan Winchester [mailto:[EMAIL PROTECTED] 
Sent: April 8, 2005 13:19
To: CF-Talk
Subject: Re: low-end web hosting?

Take a look at www.webcac.com. We just set up one site there using
BlueDragon, though they offer CF too. The prices and service so far have
been GREAT!


I'm looking for low-end CFML web hosting.  The key features are CFMX 
6.1 or 7 and some sort of database (MySQL, PostgreSQL, etc), a small 
amount of disk space and a sandbox so I can still use e.g. cffile, 
cfobject, cfcontent, etc for our files.  I could probably get my 
contact to move some of his other sites over if it proves reliable 
enough.  I've looked at CFDynamics, CrystalTech and HostMySite but didn't
like the offerings.
Any other suggestions?
 



~|
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:202020
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: Running exe file from browser

2005-04-05 Thread CFDEV
Here we had that kind of problem but we finally settled for a
file//N:\appz.exe to start the application and we add a little prompt box
click on open to start the application, once they click OK of the alert
box, then click open, it stats the appz. We never heard of it and everybody
is using the appz through our Intranet so it must be ok.

Pat

-Original Message-
From: Tim Claremont [mailto:[EMAIL PROTECTED] 
Sent: April 5, 2005 15:05
To: CF-Talk
Subject: Re: Running exe file from browser

Thanks Ian. I can see that starting the application from the browser is not
going to work.

How about just being able to add a shortcut to the end users desktop that
points to the application?

Click here to add a shortcut to the application



~|
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:201590
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: Generating BarCodes in CF

2005-04-04 Thread CFDEV
http://www.fusionzone.com/

http://www.infosoftglobal.com/PoS4TallyPro/index1.html 

-Original Message-
From: Ali Awan [mailto:[EMAIL PROTECTED] 
Sent: April 4, 2005 18:48
To: CF-Talk
Subject: Generating BarCodes in CF

I was wondering if anyone knows of any CF apps, or used CF to connect to 3rd
party apps to generate barcodes.  Specifically 2D barcodes.  If you are
familiar with barcodes, you will know what that means :-)

 

There are some off-the-shelf cfapps that generate barcodes but not in that
format.

 

Also, if not, does anyone have experience in using CF to embed an image into
a Word Document.

 

Help with any or both of those issues would be greatly appreciated.

 

Thanks,

Ali





~|
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:201455
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: FT: Web Project Manager (Atlanta, GA)

2005-04-03 Thread CFDEV
The answer for PMP is Project Management Professionnal and it's by PMI
project management institute.. There's a chapter in montreal
http://www.pmimontreal.org/pmi/site/index.jsp I haven't look for the
corporate website.

Patrick 

-Original Message-
From: Adam Haskell [mailto:[EMAIL PROTECTED] 
Sent: April 3, 2005 12:58
To: CF-Jobs-Talk
Subject: Re: FT: Web Project Manager (Atlanta, GA)

I don't remeber what it stands for but its a Project Manager certification,
if i recall correctly. I could have gotten one back in college but I never
bothered to...I'll see if I can dig around and find the actual meaning if
interested.

Adam H 

On Apr 2, 2005 12:32 AM, S. Isaac Dealey [EMAIL PROTECTED] wrote:
  PMP preferred but will consider relevant experience.
 
 PMP? Wasn't hard to find SDLC on acronymfinder.com, but they give 3 
 pages of results for PHP, many of which are obscure or just nonsense 
 (pretty sure it doesn't mean Poor Man's Pizza).
 
 s. isaac dealey 954.522.6080
 new epoch : isn't it time for a change?
 
 add features without fixtures with
 the onTap open source framework
 
 http://macromedia.breezecentral.com/p49777853/
 http://www.sys-con.com/author/?id=4806
 http://www.fusiontap.com
 
 



~|
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:11:2385
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/11
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:11
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Access query problem in CF

2005-04-02 Thread CFDEV
Hi all,
 
This query works great in Access but through CF and datasource, it says too
few parameters, any ideas?
 
SELECT COUNT(no_stats) AS nb_visite
FROM statistique
WHERE FORMAT(statistique.date_in,hh) = 11
 
Thanks
 
Pat


~|
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:201281
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: Access query problem in CF

2005-04-02 Thread CFDEV
Thanks but it still says too few parameters :(

I'm on CFMX 6.1 with a MS Accecss datasource.

Pat 

-Original Message-
From: Howie Hamlin [mailto:[EMAIL PROTECTED] 
Sent: April 2, 2005 19:41
To: CF-Talk
Subject: Re: Access query problem in CF

How about this:

SELECT COUNT(no_stats) AS nb_visite
FROM statistique
WHERE datepart(h,statistique.date_in) = 11

Access has a DatePart function like CF does...

HTH,

Howie

--- On Saturday, April 02, 2005 6:04 PM, CFDEV scribed: ---

 Hi all,
 
 This query works great in Access but through CF and datasource, it 
 says too few parameters, any ideas?
 
 SELECT COUNT(no_stats) AS nb_visite
 FROM statistique
 WHERE FORMAT(statistique.date_in,hh) = 11
 
 Thanks
 
 Pat
 
 
 



~|
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:201288
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: Access query problem in CF

2005-04-02 Thread CFDEV
Yes, the documentation is exactly what the query is.. And it works in
queries of Access, but when I do it through CF it doesn't :(

Pat

-Original Message-
From: Adrian Lynch [mailto:[EMAIL PROTECTED] 
Sent: April 2, 2005 21:54
To: CF-Talk
Subject: RE: Access query problem in CF

Have you looked at the docs for DatePart() in Access? What does it say about
the arguments required?

Ade

-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: 03 April 2005 03:49
To: CF-Talk
Subject: RE: Access query problem in CF


Thanks but it still says too few parameters :(

I'm on CFMX 6.1 with a MS Accecss datasource.

Pat

-Original Message-
From: Howie Hamlin [mailto:[EMAIL PROTECTED]
Sent: April 2, 2005 19:41
To: CF-Talk
Subject: Re: Access query problem in CF

How about this:

SELECT COUNT(no_stats) AS nb_visite
FROM statistique
WHERE datepart(h,statistique.date_in) = 11

Access has a DatePart function like CF does...

HTH,

Howie

--- On Saturday, April 02, 2005 6:04 PM, CFDEV scribed: ---

 Hi all,

 This query works great in Access but through CF and datasource, it 
 says too few parameters, any ideas?

 SELECT COUNT(no_stats) AS nb_visite
 FROM statistique
 WHERE FORMAT(statistique.date_in,hh) = 11

 Thanks

 Pat










~|
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:201290
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


Cfchart alternative to be compatible with CF and BD

2005-04-02 Thread CFDEV
Hi
 
What are you using to do chart and be compatible with CF MX and BlueDragon?
 
Thanks
 
Pat


~|
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:201292
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: HTML Tags entered into Form Fields

2005-04-01 Thread CFDEV
You don't need to use any of this really.. I insert HTML code all the time
in Access database just like that.. The only trick is when you want to edit
that content in the form field you will have to replace the   so it won't
cause errors un the form.. Just use something like this :

#replace(replace(variable_to_edit,,lt;,ALL),,gt;,ALL)# 

Pat

-Original Message-
From: Les Mizzell [mailto:[EMAIL PROTECTED] 
Sent: April 1, 2005 11:07
To: CF-Talk
Subject: HTML Tags entered into Form Fields

I've got a client that's insisting on putting things like the below into a
form field that should be text only.

Here some text and an image to go with it IMG
src=http://www.mysite.com/images/myPIC.jpg; alt=My Fat Pic and here's
the rest of the sentence.

I do, despite my objections, need to be able to allow him to do this.

MS Access is being used on the site. It's a memo field.

So what I get confused about is exactly what to use on the add/update
queries to get this into the database properly as perhaps I don't have a
100% grasp of HTMLEditFormat and HTMLCodeFormat and cfqueryparam, and then
what I need to use again on the output statements so his image shows up
properly.

Stupid question, yup..

--
---
Les Mizzell



~|
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:201197
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


Evaluate and isdefined

2005-03-26 Thread CFDEV
Hi, I try to see if a variable is defined but I don't know the name of the
variable..

Any help?

cfset varname = form.qq  #this_val#

cfif isdefined(evaluate(varname))
asdasd
/cfif

Thanks

Pat 


~|
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:200098
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


randomize

2005-03-25 Thread CFDEV
Hi, 
 
I have a query and i want to display the results randomize at each load of
the page.
 
query :
 
select questID from quest order by questID
 
There is 50 questID. 
 
I'm under CF5 for this one.
 
Thanks
 
Pat


~|
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:25
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: randomize

2005-03-25 Thread CFDEV
Great thanks Barny, it works great and performance is perfect

Pat 

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED] 
Sent: March 25, 2005 12:56
To: CF-Talk
Subject: Re: randomize

Like pick one record at random, or display all 50 in a random order? 
I'm thinking the latter?  Here's an idea.  Not optimized for speed, or even
tested to run properly.

cfset rows = arrayNew(1) /
cfloop query=myQuery
  cfset arrayAppend(rows, currentRow) / /cfloop

cfloop condition=arrayLen(rows) GT 0
  cfset index = randRange(1, arrayLen(rows)) /
  cfset row = rows[index] /
  cfset arrayDeleteAt(rows, index) /
  #myQuery.question[row]#?
/cfloop

cheers,
barneyb


On Fri, 25 Mar 2005 12:31:51 -0500, CFDEV [EMAIL PROTECTED] wrote:
 Hi,
 
 I have a query and i want to display the results randomize at each 
 load of the page.
 
 query :
 
 select questID from quest order by questID
 
 There is 50 questID.
 
 I'm under CF5 for this one.
 
 Thanks
 
 Pat
 
--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/

Got Gmail? I have 50 invites.



~|
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:200019
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: Access Password Recovery?

2005-03-21 Thread CFDEV
Hi,

I used those products http://www.crackpassword.com/ to recover an outlook
and a zip password and it worked without problem and very fast. 

Pat

-Original Message-
From: jonese [mailto:[EMAIL PROTECTED] 
Sent: March 21, 2005 10:27
To: CF-Talk
Subject: SOT: Access Password Recovery?

Hey all,

We've got a client who's given us an ACCESS DB of data but can't recall the
password and we don't have access to the orinial DSN.

I've done some searching on google etc for a good password recovery tool but
i'm not feeling comfortable with anyone in particular.

I'd love to hear recommendations from the community for tools you've used
with success in the past.

I think this is an ACCESS 2000 DB.

jonese



~|
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:199548
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: multi-lingual question

2005-03-21 Thread CFDEV
I do a lot of a bilingual (french and english) sites and others
multi-lingual and I always used all my texts in a database and I load each
text in an application struc variable strEn or strFR then each struct
variable in an array of language then in the URL you have langID which you
call in your array then your text in your struct and your site is
multi-lingual everywhere.

If I had text in the DB then I reload the application variable and that's
it.

Pat 

-Original Message-
From: Tony Weeg [mailto:[EMAIL PROTECTED] 
Sent: March 21, 2005 22:05
To: CF-Talk
Subject: Re: multi-lingual question

sup paul...

all that we have to do is english to spanish

we have a translator who is making our spanish version...
im not looking to do a whole i18n app, since i dont have to :) we only
support usa/mexico/canada.

i thought about the naming, and was ok with the numbered ones (there are
only about 150 places where i had to translate).

its simply stuff like Submit, Login, Click here for your report
and simple things like that.  not a VERY large app by any means, and to be
quite honest, the whole structure of that which i already have in place only
took me one sunday during football :)

but, you like application instead? i think i do too.

tw


On Tue, 22 Mar 2005 09:42:26 +0700, Paul Hastings [EMAIL PROTECTED]
wrote:
 Tony Weeg wrote:
  1. create an xml doc that has one node for each word/group of 
  words/phrase/label that appear on the web app.
 
 and what would you use to manage the creation  translation of all that?
 it's not trivial for a large/complex application. since i'm not a big 
 fan of humans writing xml, i'd suggest java style resource bundles 
 (rb) for which there are plenty of easy-to-use  free tools like ibm's 
 rbManager.
 
  2. read that xml doc into a persistent scope (Session right now)
 
 i would think app scope would be cheaper.
 
  3. display #session.label_fortyThree# where the words might be
 
 basically yes but i'd certainly use more semantic var names than that.
 but there will also be occasions where you'll have to deal with 
 compound rb strings, like #userName# smells like a dead 
 #typeOfAnimal# since #genderPronoun# hasn't taken a bath in 
 #weeksSinceLastBath# weeks. each language's sentence structure would 
 need to be handled  you'd have to substitute your dynamic data for 
 those vars. depending on how you deploy your app (ie if you control 
 your classpath), there's a cfc for this job:
 
 http://www.sustainablegis.com/unicode/resourceBundle/javaRB.cfm
 
 you also seem to be thinking about languages instead of locales
 which i suggest isn't quite right. lots more involved w/i18n work than 
 simply translating stuff.
 
 



~|
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:199639
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


Screen resolution custom tag?

2005-03-16 Thread CFDEV
Hi all,
 
Do you know of a way or a custom tag to read screen resolution? I know how
to do it with javascript but I would need it in a coldfusion variable
without reloading the page.
 
Thanks
 
Pat


~|
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:198935
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


litlle cfeclipse question

2005-03-11 Thread CFDEV
How to have word-warp in cfeclipse?
 
Thanks
 
Pat


~|
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:198455
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: litlle cfeclipse question

2005-03-11 Thread CFDEV
Ok I see, cause there is that possibility in homesite but as you said,
homesite doesn't have code folding.

Thanks

Pat 

-Original Message-
From: Spike [mailto:[EMAIL PROTECTED] 
Sent: March 11, 2005 14:18
To: CF-Talk
Subject: Re: litlle cfeclipse question

Unfortunately word wrap in cfeclipse is a lot harder to implement than it
really should be.

The fundamental problem is that when you wrap the text, the line number
count goes off and you need to have a way of dealing with that for handling
errors and the like.

The main stumbling block is that the java classes that handle code folding
are largely from the core of Eclipse and aren't supposed to be sub-classed.
Since code folding does a lot of work with recalculating line numbers it's
not something we can work around too easily.

Maybe the best thing to do is to submit a bug report/enhancement request to
the Eclipse dev team here:

https://bugs.eclipse.org/bugs/enter_bug.cgi?product=Platformbug_severity=en
hancement

Spike

CFDEV wrote:
 How to have word-warp in cfeclipse?
  
 Thanks
  
 Pat
 
 
 



~|
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:198461
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


Synchronize 2 databases with CF

2005-03-01 Thread CFDEV
Hi,
 
I'm looking a t a way to synchronize 2 databases with CF. The first database
is the staging server and with CF code , i'd like to update the live server,
any ideas?
 
Thanks
 
Pat


~|
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:196958
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: Synchronize 2 databases with CF

2005-03-01 Thread CFDEV
Not the Schema but the DATA

Thanks

Pat 

-Original Message-
From: Robertson-Ravo, Neil (RX)
[mailto:[EMAIL PROTECTED] 
Sent: March 1, 2005 11:57
To: CF-Talk
Subject: RE: Synchronize 2 databases with CF

Good god no, certainly don't use CF!.   I assume you mean Data/Schema?  The
Web is not the tool to use for this.  Go download a decent tool for
this...try ApexSQL Studio or Red-Gate Bundle.



-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: 01 March 2005 16:53
To: CF-Talk
Subject: Synchronize 2 databases with CF

Hi,
 
I'm looking a t a way to synchronize 2 databases with CF. The first database
is the staging server and with CF code , i'd like to update the live server,
any ideas?
 
Thanks
 
Pat






~|
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:196962
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


MSSQL TEXT datatype problem with CF

2005-02-28 Thread CFDEV
Hi all,
 
I have a field in a MS SQL 2000 database which is Text 16 and have 357000
caracters. When I select it through CF, it returns only 64000 caracters.. is
there a solution? all queries with return under 64 000 are displaying ok and
all over it are displaying truncated at 64000. I'm running CF MX 6.1
standard
 
Thanks
 
Pat


~|
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:196844
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


Trying to optimize some code

2005-02-24 Thread CFDEV
Hi all,
 
I have an include for a dynamic side menu and there is a lot of data in the
menus. There is 3 level of menus and hte guy who programmed it made loops
inside of loops with different queries. I'm looking for a way to optimize
this since it's taking 1000 ms to load.
 
I looked at the cache options but it's not really an option since the color
of the menu change from a variable in the url.
 
The code looks somthing like this :
 
 
query menu
 
loop over menu
 
query submenu for this menu
 
if there is submenu
 
loop over sub menu
 
query subsubmenu for this submenu
 
if there is subsubmenu
 
loop over subsubmenu
 
Any ideas?
 
Thanks
 
Pat


~|
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:196353
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: Trying to optimize some code

2005-02-24 Thread CFDEV
Well the color is to highlight the menu for which page we are in at the
moment and this is determined by a url variable...

Pat 

-Original Message-
From: Jochem van Dieten [mailto:[EMAIL PROTECTED] 
Sent: February 24, 2005 13:07
To: CF-Talk
Subject: Re: Trying to optimize some code

CFDEV wrote:
  
 I have an include for a dynamic side menu and there is a lot of data 
 in the menus. There is 3 level of menus and hte guy who programmed it 
 made loops inside of loops with different queries. I'm looking for a 
 way to optimize this since it's taking 1000 ms to load.
  
 I looked at the cache options but it's not really an option since the 
 color of the menu change from a variable in the url.

The color is something you could put in a stylesheet. Then the query and the
HTML for the menu is the same all the time, you just include a few lines of
different CSS with each page.


 query menu
  
 loop over menu
  
 query submenu for this menu
  
 if there is submenu
  
 loop over sub menu
  
 query subsubmenu for this submenu
  
 if there is subsubmenu
  
 loop over subsubmenu

This looks like something you could do in one query using outer joins.

Jochem



~|
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:196359
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


open window full screen

2005-02-22 Thread CFDEV
 
Hi, is there a way to specify with CF or Javascript or CSS that the new
window or open link will be in Full Screen?
 
Thanks
 
Pat


~|
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:195973
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: open window full screen

2005-02-22 Thread CFDEV
I know I can play with screen width and height but I was looking for
something more like the print() function so it woul be like  maximize() or
something?

Pat

-Original Message-
From: Ben Doom [mailto:[EMAIL PROTECTED] 
Sent: February 22, 2005 15:27
To: CF-Talk
Subject: Re: open window full screen

There are a number of readily available JS scripts that will do this, more
or less.

--Ben

CFDEV wrote:
  
 Hi, is there a way to specify with CF or Javascript or CSS that the 
 new window or open link will be in Full Screen?
  
 Thanks
  
 Pat
 
 
 



~|
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:195983
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: open window full screen

2005-02-22 Thread CFDEV
Thanks guy, but it's for an intranet where the it's all windows internet
explorer so I must say that I haven't tought about other systems... And you
are right about the maximization being irritating but it's a requirement for
some specific links.

Thanks you all

Patrick 

-Original Message-
From: Paul [mailto:[EMAIL PROTECTED] 
Sent: February 22, 2005 15:56
To: CF-Talk
Subject: RE: open window full screen

And for what it's worth, nothing makes me more irritated than when a website
maximizes my browser.  I wonder if that's just me or if usability studies
would back me up...

-Original Message-
From: Ben Doom [mailto:[EMAIL PROTECTED]
Sent: Tuesday, February 22, 2005 1:45 PM
To: CF-Talk
Subject: Re: open window full screen

That would only make sense in windowing systems that support maximization.
Macs, most Linux window managers, etc. don't.  So, it really doesn't make a
lot of sense.

The width/height thing is, as far as I know, the only way to deal with this.

--Ben

CFDEV wrote:
 I know I can play with screen width and height but I was looking for 
 something more like the print() function so it woul be like  
 maximize() or something?
 
 Pat
 
 -Original Message-
 From: Ben Doom [mailto:[EMAIL PROTECTED]
 Sent: February 22, 2005 15:27
 To: CF-Talk
 Subject: Re: open window full screen
 
 There are a number of readily available JS scripts that will do this, 
 more or less.
 
 --Ben
 
 CFDEV wrote:
 
 
Hi, is there a way to specify with CF or Javascript or CSS that the 
new window or open link will be in Full Screen?
 
Thanks
 
Pat



 
 
 
 
 





~|
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:195991
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


No white space in source code?

2005-02-04 Thread CFDEV
What's the trick so there is no blank space where the coldfusion code is
when we look at the source code in the browser?
 
Thanks
 
Pat


~|
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:193156
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: javascript insert problem in BD

2005-02-01 Thread CFDEV
Thanks to all, it was a known bug that got fixed in the hot fix.

Pat 

-Original Message-
From: Keith Gaughan [mailto:[EMAIL PROTECTED] 
Sent: February 1, 2005 06:41
To: CF-Talk
Subject: Re: javascript insert problem in BD

CFDEV wrote:
 Hi,
   
 This works in ColdFusion but i'm not able to make it work in BlueDragon. 
   
 script type=text/javascript language=JavaScript1.2
 src=cfoutput#path#wwwlib/fonction.js/cfoutput
 /script
  
 Also if I copy the content of fonction.js in the cfm file it works.. ??? 

It's one of tho things: either you've got the wrong name there for the JS
file, or the value in your path variable is wrong. It could be something as
simple as a missing slash at the end.

Try just writing the full string out, and check it's correct.

K.



~|
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:192533
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


javascript insert problem in BD

2005-01-31 Thread CFDEV
Hi,
  
This works in ColdFusion but i'm not able to make it work in BlueDragon. 
  
script type=text/javascript language=JavaScript1.2
src=cfoutput#path#wwwlib/fonction.js/cfoutput
/script
 
Also if I copy the content of fonction.js in the cfm file it works.. ??? 

Any ideas? 
  
Thanks
  
Pat



~|
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:192491
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: Project / Task Management

2004-12-21 Thread CFDEV
http://www.aboutmelvin.com/login_eng.htm
http://www.freetaskmanager.com/index.htm

-Original Message-
From: Adkins, Randy [mailto:[EMAIL PROTECTED] 
Sent: December 21, 2004 12:34
To: CF-Talk
Subject: RE: Project / Task Management

I use ProWorkFLow. Been extremely useful to the point I have went a step
beyond and customized it with other parts of my extranet.

I have people who access it and submit job requests. I recall Awhile back
someone had even enhanced the calendar on it. 

Wish I could remember who, would like to get another copy as I had lost the
other one.



 

-Original Message-
From: Nando [mailto:[EMAIL PROTECTED]
Sent: Tuesday, December 21, 2004 12:14 PM
To: CF-Talk
Subject: OT: Project / Task Management

I've been looking for a project management system for the past few days and
i'm not happy with anything i've found so far. Can anyone recommend
something that they find really useful?

In our business, application design and development, projects need to be
broken down into tasks. Sometimes tasks are date based, but often they
aren't. Tasks are often in hierarchies. Nevertheless, sometimes you need
different views of tasks - you might be working on several projects at once
and need to see what is high priority, or due today, or assigned to a
particular individual.

Sometimes you need to time tasks, when you're billing per hour, and need the
ability to aggregate the timings per project for instance, or preferably in
any way you want.

Sometimes you need an overview for planning, a Gnatt chart type of thing,
but not for every little task. And the overview should be a flexible drag
and drop thing on a calendar view to allow for adjustments. We can pretty
much meet our deadlines (well, most of the time), but clients live in their
own worlds and change their mind about everything and anything. So the
planning part of the app should be very flexible, or it will be quickly out
of sync with reality.

Adding in the ability to track clients and invoice them would be the icing
on the cake, but now i'm afraid i'm truly in dreamland.

Does such an application exist? Or even a part of it? Everything i've found
is too limited to be of much comprehensive use.

Thanks,
Nando





~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188415
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


OT: Firefox website compatibility issues

2004-12-05 Thread CFDEV
Hi,
 
I have a wysiwyg editor (that I made) with div and an iframe and javascript
and dhtml functions and I'm trying to make it work in FF.
 
Here is a sample of code that do not react in FF, not even the mouseover..
 
div class=cbtn onClick=cmdExec('cut') onmouseover=button_over(this);
onmouseout=button_out(this); onmousedown=button_down(this);
onmouseup=button_up(this);
   img hspace=1 vspace=1 align=absmiddle
src=cfoutput#path#/cfoutputwwwimg/wysiwyg/cut.gif
alt=cfoutput#application.aTxt[session.wfsite_lang].couper#/cfoutput
   /div
 
Anyone has an idea? or where could i read on div and iframe for firefox?
 
Thanks
 
Pat


~|
Special thanks to the CF Community Suite Silver Sponsor - CFDynamics
http://www.cfdynamics.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:186255
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


OT - SQL Lite

2004-11-26 Thread CFDEV
Hi,
 
I saw a while ago that some of you were using a microsoft product called SQL
Lite... is it exact? and where could I find it to take a look at it?
 
Thanks
 
Pat


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185449
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: Bug fix follow-up application

2004-11-25 Thread CFDEV
Thanks.. It looks good..

I installed it on my developper machine without any problem but when I put
it on our dev server which is confgirued differently with virtual directory
in IIS, I map the tracker and put the apps in a folder I can and when I try
to make it works it's kinda of in an infinity loop on index.cfm

Any ideas?

Thanks

Patrick 

-Original Message-
From: Jon Austin [mailto:[EMAIL PROTECTED] 
Sent: November 24, 2004 19:22
To: CF-Talk
Subject: Re: Bug fix follow-up application

Check out 'lighthouse' by Ray Camden.
http://www.camdenfamily.com/morpheus/blog/


 On Wed, 24 Nov 2004 16:41:14 -0500, CFDEV [EMAIL PROTECTED] wrote:
  Does anyone knows a good open source project of following bugs for 
  software developement? preferably an application that is written in CF.



~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185398
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


Bug fix follow-up application

2004-11-24 Thread CFDEV
Does anyone knows a good open source project of following bugs for software
developement? preferably an application that is written in CF.
 
Thanks
 
Pat


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:185361
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: category-unlimited subcategory formatted dropdowns

2004-11-17 Thread CFDEV
You could also look at this custom tag that does a great job ..

http://www.niederhausen.net/piet/dev/customtags/traversetree.html

Pat

-Original Message-
From: Emmet McGovern [mailto:[EMAIL PROTECTED] 
Sent: November 17, 2004 01:17
To: CF-Talk
Subject: RE: category-unlimited subcategory formatted dropdowns

I'd call you brilliant but you made fun of my chunk of code ;)  I cant
believe I overlooked repeatstring()!  Thanks you thank you thank you.

Unfortunately I'm not the greatest when it comes to complex sql so I never
looked at nested set to start with.  Care to enlighten? 

My late night is done!  Hoorah!

-e

-Original Message-
From: Barney Boisvert [mailto:[EMAIL PROTECTED]
Sent: Wednesday, November 17, 2004 1:01 AM
To: CF-Talk
Subject: Re: category-unlimited subcategory formatted dropdowns

First, all those queries are going to be really slow.  The code as-is will
be making n+m+1 queries to generate the dropdown, where n is the number of
individual elements, and m is the number of elements with children.  The
+1 is for the initial query for items with no parent.
 And yes, you can count the same element in both n and m, so worst case
scenario would be 2n queries.

However, depending on what you're doing with the result, that might not
matter.  For example, if you're caching it.  Or, if it's a low-use item,
then it might not be worth the time to optimize.  One alternate route would
be to use a nested set model.

But that's not your question.  To solve the dash insertion problem, make
another optional attribute named 'depth' (or 'level') which is omitted from
the initial call (just like parentItemID) and defaults to zero.  Then add
#repeatString(-, attributes.depth)# before the category name within the
option.  Finally, pass a 'depth' attribute on the recursive calls,
incrementing by one.  So the call with look like
this:

cf_makedump
parentItemId=#getCurrentCat.catID#
dsn=#attributes.dsn#
depth=#attributes.depth + 1#

cheers,
barneyb

On Tue, 16 Nov 2004 23:31:31 -0500, Emmet McGovern
[EMAIL PROTECTED] wrote:
 I have a table that contains categories and unlimited subcategories 
 referencing and I need to create a formatted drop down list.  I've 
 been messin around with it for a while and now with no luck.  I need 
 the list
to
 go like so...
 
 Category Name
 --Child of category
 --Child of category
 Child of sub category
 --Child of sub sub category
 --Child of category
 
 I can get the data out in the proper order, I just cant seem to get 
 the -- in there.
 
 I'm using this code as a custom tag which calls itself back again for 
 the recursion.
 
 Thanks for the help
 -emmet
 
 ! --- // Calling the initial tag in the dropdown SELECT 
 name=parentID
 cf_makedrop dsn=#dsn#
 /SELECT
 
 ! --- // now the tag makedrop.cfm
 
 cfsilent
 cfparam name=Variables.ParentItemID default=0 cfif 
 IsDefined(Attributes.ParentItemID)
 cfset Variables.ParentItemID = Attributes.ParentItemID  
 /cfif
 
 CFQUERY NAME=GetCurrentCat DATASOURCE=#attributes.dsn#
 SELECT  *
 FROM category
 WHERE   ParentID = #Variables.ParentItemID#
 ORDER BYname
 /CFQUERY
 
 /cfsilent
 cfloop query=GetCurrentCat
 cfoutput
 OPTION value=#catID# cfif getcurrentCat.parentID is
 0class=lightcell/cfif#GetCurrentCat.name#/OPTION
 /cfoutput
 
 cfsilent
 CFQUERY NAME=CheckForSub DATASOURCE=#attributes.dsn#
 SELECT  *
 FROM category
 WHERE   parentID = #GetCurrentCat.catID#
 /CFQUERY
 /cfsilent
 
 cfif CheckForSub.RecordCount gt 0 
 cf_makedrop
 ParentItemID=#GetCurrentCat.catID#
 dsn=#attributes.dsn# /cfif /cfloop
 

--
Barney Boisvert
[EMAIL PROTECTED]
360.319.6145
http://www.barneyb.com/blog/





~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:184550
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


File upload progress bar

2004-11-10 Thread CFDEV
Hi,

I know it's been discuss before but I don't find it in the archive. I'm
looking for a way (free) to have a progress bar of the file upload when
using cffile...

Thanks

Pat


~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183859
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: formatting in textarea

2004-11-07 Thread CFDEV
When you insert the value as is in a memo field it whould retain the
carriage return.. If you show the value of the memo field in a textarea you
should see the carriage return.. The replace solution is to show the value
as text in html not in a textarea.. But carriage return are preserve as is
when you insert the value in a text or memo field

Pat 

-Original Message-
From: Roberto Perez [mailto:[EMAIL PROTECTED] 
Sent: November 5, 2004 03:15
To: CF-Talk
Subject: RE: formatting in textarea

At 06:16 PM 11/6/04, Pat wrote:
Just do this :

cfset locCarriageReturn=chr(13)  chr(10)

cfoutput
#replace(your_variable,locCarriageReturn,BR,ALL)#
/cfoutput


Thanks for the several solutions proposed. However, here's my doubt: if the
text in the Memo field in Access is being stored without carriage returns,
that means that whatever code or tags I use would have to be employed as
data is *sent* to the database, so that carriage returns are included in
that text. Can any of these solutions (e.g., locCarriageReturn,
ParagraphFormat, etc.) be used *before* the data is stored (i.e., as data
is sent), so that carriage returns are preserved?

Thanks in advance,

Roberto Perez
[EMAIL PROTECTED]




~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183570
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: formatting in textarea

2004-11-06 Thread CFDEV
Just do this :

cfset locCarriageReturn=chr(13)  chr(10)

cfoutput
#replace(your_variable,locCarriageReturn,BR,ALL)#
/cfoutput

Pat 

-Original Message-
From: Dawson, Michael [mailto:[EMAIL PROTECTED] 
Sent: November 6, 2004 18:02
To: CF-Talk
Subject: RE: formatting in textarea

When you display the text, using ColdFusion, you need to replace the line
feeds with br tags.  There may be a custom tag or UDF that already does
this since it is such a common issue.

M!ke 

-Original Message-
From: Roberto Perez [mailto:[EMAIL PROTECTED]
Sent: Thursday, November 04, 2004 11:10 PM
To: CF-Talk
Subject: formatting in textarea

Hi all,

Quick question on textarea: I have a form with a box where visitors can type
comments. The input goes to an Access database with a memo field.
My problem is, if they type one or more carriage returns, the text in the
memo field does not reflect that, and obviously when the comments are
displayed on the browser they look like one long paragraph instead of
several shorter ones (separated by carriage returns) as the visitor
intended.

Any solutions for this?


Thanks in advance,

Roberto Perez
[EMAIL PROTECTED]






~|
Special thanks to the CF Community Suite Gold Sponsor - CFHosting.net
http://www.cfhosting.net

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:183564
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: Survey Creation Application

2004-10-25 Thread CFDEV
Hi, When I was working at the university with knid of developped our own
survey/questionnaire builder.. It was always a mess since they always wanted
more options.. 

The database was a bit complex but not that hard to design.. Our main
problem was security... 

I still have the code and plan to use it to do an application someday since
they don't use it anymore and gave it to me but I haven't got the time...

They now use questionmark that is really not cheap but do everything you
need...

Pat 

-Original Message-
From: Jason Lemahieu [mailto:[EMAIL PROTECTED] 
Sent: October 25, 2004 15:50
To: CF-Talk
Subject: Survey Creation Application

We're looking to make our own application that lets people create surveys -
similar to Zoomerang (ww.zoomerang.com).  We've played around with possible
DB schemas and it just seems to get more and more complicated.  I was
wondering if any of you have tried implementing such an application, or if
you would otherwise have any insight into the matter.

It would need to let people do stuff like:
 - Add, edit, delete, move questions
 - Allow lots of different types of questions
 (ex: multiple choice, open ended, rating)
 - Arrange the questions across pages
 - Distribute the survey via links in emails, and track which response came
from which email address
 - Generate reports based on the data collected


We currently use Zoomerang - and think it works pretty well. We are looking
for an alternative in-house solution so that we can put surveys into
existing webpage templates.  Thanks.



~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=34

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182543
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: Cache flush

2004-10-24 Thread CFDEV
And how do I do that?

Thanks

Pat

-Original Message-
From: Josh [mailto:[EMAIL PROTECTED] 
Sent: October 24, 2004 09:05
To: CF-Talk
Subject: Re: Cache flush

Ya, I don't think you can programatically flush a users browser cache.  
That just doesn't seem right.  The cache is on their workstation, not on the
server... 

I would definitely add the no-cache headers as James suggested.


--
Exciteworks, Inc
Expert Hosting for less!
*Ask for a free 30 day trial!*
http://exciteworks.com

Plans starting at -$12.95- including MS SQL Server!



James Holmes wrote:

You are better of using no-cache headers to prevent the page from being 
cached in the first place.

-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: Sunday, 24 October 2004 12:39
To: CF-Talk
Subject: RE: Cache flush

The browser I guess..

Patrick





~|
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.
http://www.houseoffusion.com/banners/view.cfm?bannerid=11

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182444
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: Cache flush

2004-10-24 Thread CFDEV
Thanks a lot

It works great.

Patrick 

-Original Message-
From: James Holmes [mailto:[EMAIL PROTECTED] 
Sent: October 24, 2004 09:47
To: CF-Talk
Subject: RE: Cache flush

cfheader name=cache-control value=no-cache

You could also use the expires header, which is in fact preferred

cfheader name=expires value=-1

Browser docs have more info e.g. http://support.microsoft.com/kb/q234067/

-Original Message-
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: Sunday, 24 October 2004 9:38
To: CF-Talk
Subject: RE: Cache flush

And how do I do that?

Thanks

Pat



~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=35

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182451
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


Cache flush

2004-10-23 Thread CFDEV
Hi, once someone changed a parameter on a site (the parameter is stored in a
session variable) I would like to flush the person's cache cause even if I
change the value of the session variable, some display element stays the
same..
 
Is it possible to do this? cause if i refresh it's ok, if I flush the cache
manually it's ok also..
 
Thanks
 
Pat


~|
Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF 
community.
http://www.houseoffusion.com/banners/view.cfm?bannerid=36

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182429
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: Cache flush

2004-10-23 Thread CFDEV
The browser I guess..

Patrick

-Original Message-
From: Josh [mailto:[EMAIL PROTECTED] 
Sent: October 23, 2004 18:40
To: CF-Talk
Subject: Re: Cache flush

Are you talking about flushing the browser cache? or the session variable?



--
Exciteworks, Inc
Expert Hosting for less!
*Ask for a free 30 day trial!*
http://exciteworks.com

Plans starting at -$12.95- including MS SQL Server!



CFDEV wrote:

Hi, once someone changed a parameter on a site (the parameter is stored 
in a session variable) I would like to flush the person's cache cause 
even if I change the value of the session variable, some display 
element stays the same..
 
Is it possible to do this? cause if i refresh it's ok, if I flush the 
cache manually it's ok also..
 
Thanks
 
Pat






~|
Sams Teach Yourself Regular Expressions in 10 Minutes  by Ben Forta 
http://www.houseoffusion.com/banners/view.cfm?bannerid=40

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:182439
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: Content Management System (CMS) Wishlist (making a cms multlingual)

2004-09-20 Thread CFDEV
I think it's important that they have the same articleID cause when you go
from a page in a language to another language you want to stay on the same
page..

 
Don't you hate site that return you to the root but in the other language?

 
Pat

_

From: Ian Vaughan [mailto:[EMAIL PROTECTED] 
Sent: September 20, 2004 06:49
To: CF-Talk
Subject: RE: Content Management System (CMS) Wishlist (making a cms
multlingual)

If you look at the following example website

http://www.allwalesunit.gov.uk/index.cfm?articleid=5

and click on the Cymraeg link at the top of the page, which loads up the
Welsh translation of the site.

If you hold the cursor over the link you will see

http://www.allwalesunit.gov.uk/index.cfm?articleid=5ArticleAction=langu
age and vice verser from welsh to english.

Any ideas on what relationship theArticleAction=language parameter is
doing to perform the translation ?

As each article whether it is English or Welsh has the same articleid
???

Any ideas ?



From: Mark Drew [mailto:[EMAIL PROTECTED] 
Sent: 20 September 2004 10:39
To: CF-Talk
Subject: Re: Content Management System (CMS) Wishlist (making a cms
multlingual)

Depends on your requirements (or the clients!)
1) Content library, this should be acontent item and assigned either
to multiple languages or a single language (e.g. english and spanish
versions both link to the english download as there is only one...
which we can then separate, or it defaults to english PDF if there is
no spanish version)
2)Depends what files.. if they are site images, then split them up as
images/EN , images/ES etchave one default language so if you dont
find a resource you can default to the english (for example) so not to
get broken links and errors
3) Accounts.. same repository.. add a preference for language
4) Workflow.. you should have workflow templates that you can use that
are held in the same place.. if you need something special add a
Workflow for ES content concept (with the right translation of
course! and make it available to users that are meant to use that
workflow
5) Template Libraries.. I would guess the same here.. are templates
available to all or to only languages? if they are available per
language tag it as so

Hope that helps

On Mon, 20 Sep 2004 11:10:16 +0200, Micha Schopman
[EMAIL PROTECTED] wrote:
 And does someone separate content library, file folders, accounts,
 workflow, approval queues, template libraries, etc. per language, or
do
 all languages in the system use the same libraries?
 
 Micha Schopman
 Software Engineer
 Modern Media, Databankweg 12 M, 3821 ALAmersfoort
 Tel 033-4535377, Fax 033-4535388
 KvK Amersfoort 39081679, Rabo 39.48.05.380
 
 
 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




OT - ASP (vbscript) equivalent for #JSStringFormat#

2004-09-15 Thread CFDEV
Hi, does anybody knows if there is an equivalent in ASP (vbscript) for the
CF function #JSStringFormat#?

 
Thanks

 
Pat
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: web stats

2004-09-07 Thread CFDEV
I use Power phlogger that runs on php and mysql on a windows 2003 server and
it is very good

 
http://www.phpee.com/index.php?node=21

 
Patrick

_

From: Ricardo Russon [mailto:[EMAIL PROTECTED] 
Sent: September 7, 2004 21:42
To: CF-Talk
Subject: OT : web stats

does anyone know of any good, free
web stats apps that i can run on my
windows 2003 / CF MX server?

Or if there is any good webstat
software that comes with either of the 2?

TIA,
Ricardo. 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




CF French ressources

2004-09-06 Thread CFDEV
Hi, I remember someone looking for french ressources on CF... I don't think
it's much but you may find something there : http://www.cfmfrance.com/

 
Pat
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Problem with accented character in file names and CFFILE

2004-09-03 Thread CFDEV
I had the same problem with CF and BlueDragon and I had to write something
like this to change the file name on the server.. I kept the original name
in my database and when I serve the file with cfcontent I rename to the
original name. Since my variable name are in french, the first one is all
caracter capitalize and not with accent and the second variable are there
equivalent without accent.

 
cfset accentminmaj = Chr(193)  ,  Chr(194)  ,  Chr(195)  , 
Chr(196)  ,  Chr(197)  ,  Chr(224)  ,  Chr(225)  ,  Chr(226)
 ,  Chr(227)  ,  Chr(228)  ,  Chr(229)  ,  Chr(200)  , 
Chr(201)  ,  Chr(202)  ,  Chr(203)  ,  Chr(232)  ,  Chr(233)
 ,  Chr(234)  ,  Chr(235)  ,  Chr(204)  ,  Chr(205)  , 
Chr(206)  ,  Chr(207)  ,  Chr(236)  ,  Chr(237)  ,  Chr(238)
 ,  Chr(239)  ,  Chr(210)  ,  Chr(211)  ,  Chr(212)  , 
Chr(213)  ,  Chr(214)  ,  Chr(242)  ,  Chr(243)  ,  Chr(244)
 ,  Chr(245)  ,  Chr(246)  ,  Chr(217)  ,  Chr(218)  , 
Chr(219)  ,  Chr(220)  ,  Chr(249)  ,  Chr(250)  ,  Chr(251)
 ,  Chr(252)  ,  Chr(209)  ,  Chr(241)  ,  Chr(199)  , 
Chr(231)  ,  Chr(221)  ,  Chr(253)

 
cfset sansaccentminmaj = Chr(97)  ,  Chr(97)  ,  Chr(97)  , 
Chr(97)  ,  Chr(97)  ,  Chr(97)  ,  Chr(97)  ,  Chr(97) 
,  Chr(97)  ,  Chr(97)  ,  Chr(97)  ,  Chr(101)  , 
Chr(101)  ,  Chr(101)  ,  Chr(101)  ,  Chr(101)  ,  Chr(101)
 ,  Chr(101)  ,  Chr(101)  ,  Chr(105)  ,  Chr(105)  , 
Chr(105)  ,  Chr(105)  ,  Chr(105)  ,  Chr(105)  ,  Chr(105)
 ,  Chr(105)  ,  Chr(111)  ,  Chr(111)  ,  Chr(111)  , 
Chr(111)  ,  Chr(111)  ,  Chr(111)  ,  Chr(111)  ,  Chr(111)
 ,  Chr(111)  ,  Chr(111)  ,  Chr(117)  ,  Chr(117)  , 
Chr(117)  ,  Chr(117)  ,  Chr(117)  ,  Chr(117)  ,  Chr(117)
 ,  Chr(117)  ,  Chr(110)  ,  Chr(110)  ,  Chr(99)  , 
Chr(99)  ,  Chr(121)  ,  Chr(121)

cfset nom_fichier2 =
#replacelist(lcase(replace(getfilefrompath(form.nom_fichier),
,_,ALL)),accentminmaj,sansaccentminmaj)#

 
Pat

_

From: Dave Carabetta [mailto:[EMAIL PROTECTED] 
Sent: September 3, 2004 11:47
To: CF-Talk
Subject: Re: Problem with accented character in file names and CFFILE

On Fri, 3 Sep 2004 16:41:01 +0100, Andrew Dixon [EMAIL PROTECTED]
wrote:
 I did think about parsing the file name and replacing the characters,
 but the people the site is for will not allow the file name to be
 changed. It is a government funded project and therefore everything
 has not be exactly right!!!
 

Is this just an encoding issue though? Your OS's encoding might be
ISO-8859-1, which would mangle the special characters, whereas you
might need UTF-8 to have them come through OK. I don't really know
what the OS-level solution is, but for CF, search the archives for
setEncoding, as there's been a bunch of threads related to this.

Don't know how much help that is, but thought I'd throw it out there.

Regards,
Dave. 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




CF version?

2004-09-03 Thread CFDEV
Hi, is there a tag or something to know exactly what is the CF version on
our hosting?

 
Thanks

 
Pat
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




redirect after cfheader/cfcontent

2004-08-30 Thread CFDEV
Hi,

 
I have a code on a page that pop up a save/open for downloading a page :

 
cfheader 
name=Content-Disposition 
value=attachment;filename=#getfilefrompath(cas.fichier)# 

cfcontent 
file=#nom_fichier2# 
type=application/pdf 
deletefile=No / 

 
And I want to redirect the page to another page after this.. how could I do
this? I'm on CF5 and I tried a cflocation after those 2 tags but it didn't
work.

 
Thanks

 
Pat
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: redirect after cfheader/cfcontent

2004-08-30 Thread CFDEV
Thanks guys...

 
Isaac your solution works just fine with the location...

 
Pat

_

From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] 
Sent: August 30, 2004 22:23
To: CF-Talk
Subject: Re: redirect after cfheader/cfcontent

 I have a code on a page that pop up a save/open for
 downloading a page :

 cfheader name=Content-Disposition
 value=attachment;filename=#getfilefrompath(cas.fichier)#
 cfcontent file=#nom_fichier2#
 type=application/pdf
 deletefile=No /

 And I want to redirect the page to another page after
 this.. how could I do
 this? I'm on CF5 and I tried a cflocation after those 2
 tags but it didn't
 work.

Hi Pat,

That's a pickle... afaik cfheader wouldn't normally prevent you from
using cflocation, however, I believe cfcontent flushes the content
(the file) to the browser immediately, at which point you can no
longer use cfheader or cflocation due to the fact that both of these
rely on the creation of http headers to function. (Once any content is
flushed to the browser, all http headers have already been flushed
along with it.) You may or may not be able to use the cflocation tag
before the cfcontent tag -- I wouldn't bet on it. And you may or may
not be able to use _javascript_ (location.replace()) after the cfcontent
tag to relocate the browser - again, I wouldn't bet on it.

What is the next page you're relocating to? Is it another file
download or a thanks for downlaoding page? If the latter, I would
say I think there may be a better approach to the html, you might try
this:

a >
href="" target=_blankdownload/a

hth

s. isaac dealey954.927.5117
new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework

http://www.sys-con.com/story/?storyid=44477DE=1
http://www.sys-con.com/story/?storyid=45569DE=1
http://www.fusiontap.com 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: redirect after cfheader/cfcontent

2004-08-30 Thread CFDEV
Oups, I respond too fast.. I just tested it with the pop-up blocker on and
it blocks the target=_blank which is no good.. 

 
Matt, how do I redirect in the cfheader? I use the cfheader before the
cfcontent..

 
Thanks

 
Pat

_

From: Matt Liotta [mailto:[EMAIL PROTECTED] 
Sent: August 30, 2004 22:57
To: CF-Talk
Subject: RE: redirect after cfheader/cfcontent

You can't use cflocation or cfheader after cfcontent, but you can use
cfheader before cfcontent. Thus, you can issue a redirect with cfheader and
still use cfcontent.

-Matt

 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
 On Behalf Of S.Isaac Dealey
 Sent: Monday, August 30, 2004 10:23 PM
 To: CF-Talk
 Subject: Re: redirect after cfheader/cfcontent
 
  I have a code on a page that pop up a save/open for
  downloading a page :
 
  cfheader name=Content-Disposition
  value=attachment;filename=#getfilefrompath(cas.fichier)#
  cfcontent file=#nom_fichier2#
  type=application/pdf
  deletefile=No /
 
  And I want to redirect the page to another page after
  this.. how could I do
  this? I'm on CF5 and I tried a cflocation after those 2
  tags but it didn't
  work.
 
 Hi Pat,
 
 That's a pickle... afaik cfheader wouldn't normally prevent you from
 using cflocation, however, I believe cfcontent flushes the content
 (the file) to the browser immediately, at which point you can no
 longer use cfheader or cflocation due to the fact that both of these
 rely on the creation of http headers to function. (Once any content is
 flushed to the browser, all http headers have already been flushed
 along with it.) You may or may not be able to use the cflocation tag
 before the cfcontent tag -- I wouldn't bet on it. And you may or may
 not be able to use _javascript_ (location.replace()) after the cfcontent
 tag to relocate the browser - again, I wouldn't bet on it.
 
 What is the next page you're relocating to? Is it another file
 download or a thanks for downlaoding page? If the latter, I would
 say I think there may be a better approach to the html, you might try
 this:
 
 a >
 href="" target=_blankdownload/a
 
 hth
 
 s. isaac dealey954.927.5117
 new epoch : isn't it time for a change?
 
 add features without fixtures with
 the onTap open source framework
 
 http://www.sys-con.com/story/?storyid=44477DE=1
 http://www.sys-con.com/story/?storyid=45569DE=1
 http://www.fusiontap.com
 
 
 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




homesite like for linux?

2004-08-27 Thread CFDEV
Hi all,

 
I know the topic of tool like homesite has been discuss but I just install a
linux box and I'm looking for a development tool that offer tag completion
and tag insight for coldfusion on linux? is there something out there?

 
Thanks

 
Pat
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




get file

2004-08-25 Thread CFDEV
Hi,

 
I have files on our server and I want people (once they're logged in) to
download a file without knowing hte path of the file.. 

 
Right now I was doing a popup with the file (a PDF) and it was alright.. but
now that many anti-virus or google toolbar are blocking pop up file, I need
another solution.. 

 
Do you have an idea?

 
Thanks

 
Pat
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: get file

2004-08-25 Thread CFDEV
ok but since it'n in pdf what type do i use in cfcontent? and is it gonna
stop the rest of the page?

 
Pat

_

From: Mark Drew [mailto:[EMAIL PROTECTED] 
Sent: August 25, 2004 11:35
To: CF-Talk
Subject: Re: get file

checkout cfcontent, depends how you reference your files you can have
them all somewhere that isnt web accessable and reference them like

index.cfm?file=mypdf.pfd

MD

On Wed, 25 Aug 2004 11:28:31 -0400, CFDEV [EMAIL PROTECTED] wrote:
 Hi,
 
 I have files on our server and I want people (once they're logged in) to
 download a file without knowing hte path of the file..
 
 Right now I was doing a popup with the file (a PDF) and it was alright..
but
 now that many anti-virus or google toolbar are blocking pop up file, I
need
 another solution..
 
 Do you have an idea?
 
 Thanks
 
 Pat
 
 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




Win XP sp2 and CF MX 6.1

2004-08-23 Thread CFDEV
Hi,

 
In this article there is a comment about issues with Windows XP xervice pack
2 and ColdFusion MX 6.1 

 
http://www.eweek.com/article2/0,1759,1636076,00.asp

 
Anyone experimented those problems? What have you done to resolve it.. i
want to install sp2 on my xp station where i have CF MX 6.1 developper but
don't want to cash my CF installation.

 
Pat
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




OT: iframe and mozilla

2004-07-28 Thread CFDEV
Hi there,

 
I have an ifram for a wysiwyg editor I made that is only working with IE..
i'm looking at having it working with mozilla firefox.. does anyone know a
site or somehtingfor good information on ifram in mozilla... i looked at
google but did'nt quite found what i'm looking for.. 

 
Thanks

 
Patrick
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: iframe and mozilla

2004-07-28 Thread CFDEV
This is the call :

 
iframe width=570 id=idContent height=250 frameborder=1
scrolling=Auto
src="" 

Patrick

_

From: John Stanley [mailto:[EMAIL PROTECTED] 
Sent: July 28, 2004 08:31
To: CF-Talk
Subject: RE: iframe and mozilla

can you post the call to the iframe, because iframes should work in the
later versions of mozilla.

-Original Message-----
From: CFDEV [mailto:[EMAIL PROTECTED]
Sent: Wednesday, July 28, 2004 8:26 AM
To: CF-Talk
Subject: OT: iframe and mozilla

Hi there,

I have an ifram for a wysiwyg editor I made that is only working with IE..
i'm looking at having it working with mozilla firefox.. does anyone know a
site or somehtingfor good information on ifram in mozilla... i looked at
google but did'nt quite found what i'm looking for.. 

Thanks

Patrick 
_ 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




CFMX 6.1 and MySQL insert question

2004-07-21 Thread CFDEV
Hi, I'm trying to insert this 

 
Error\n\nYou must provide a password to enter 

 
In a MySQL database through a CFMX 6.1 cfquery and the \n\n are replace by
spaces in the databases... what could I do?

 
Thanks

 
PAtrick
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: CFMX 6.1 and MySQL insert question

2004-07-21 Thread CFDEV
Thanks but that won't work cause I don't know where someone is wirting \n\n
in the textbox..

 
Patrick

_

From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] 
Sent: July 21, 2004 22:33
To: CF-Talk
Subject: RE: CFMX 6.1 and MySQL insert question

You want to use this instead:

#Chr(13)##Chr(11)#

Mike

 Hi, I'm trying to insert this 
 Error\n\nYou must provide a password to enter 
 In a MySQL database through a CFMX 6.1 cfquery and the \n\n 
 are replace by spaces in the databases... what could I do? 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: CFMX 6.1 and MySQL insert question

2004-07-21 Thread CFDEV
I mean,

 
If a user is using the form and enter the value bla bla \n bla bla \bla..
because he wants the \n or the \ it won't work.. I don't want to used the \n
as a break like with #Chr(13)##Chr(10)#

 
Patrick

_

From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] 
Sent: July 21, 2004 22:41
To: CF-Talk
Subject: RE: CFMX 6.1 and MySQL insert question

I don't follow you...

 Thanks but that won't work cause I don't know where someone 
 is wirting \n\n in the textbox.. 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: PHP vs ASP

2004-07-19 Thread CFDEV
There's an article of that type for CF vs ASP but again it's tainted by the
CFML predilection of the author...

 
http://www.webhostingetc.net/index.php?content=cms-article
http://www.webhostingetc.net/index.php?content=cms-articlepastcontent=cms-
articlescategory=139article=139subsection=0
pastcontent=cms-articlescategory=139article=139subsection=0

 
Patrick

_

From: Damien McKenna [mailto:[EMAIL PROTECTED] 
Sent: July 19, 2004 14:05
To: CF-Talk
Subject: Re: PHP vs ASP

On Jul 19, 2004, at 12:12 PM, Matt Liotta wrote:
 http://otn.oracle.com/pub/articles/hull_asp.html

I sure wish they didn't code their sites to where you have to view it 
at 1280x1024...
-- 
Damien McKenna - Web Developer - [EMAIL PROTECTED]
The Limu Company - http://www.thelimucompany.com/ - 407-804-1014
Nothing endures but change. - Heraclitus 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: file upload validation

2004-07-13 Thread cfdev
much appreciated!!

_

From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] 
Sent: Monday, July 12, 2004 8:45 AM
To: CF-Talk
Subject: Re: file upload validation

 Does anyone have a JS script that will
 determine the length of file name for a
 file upload process?

 This is only for the document name, not
 the complete path and filename, so
 document.forms[0].fileupload.value will
 not work.

 just trying to find a script to determine the
 length of file name only prior to upload.

 TIA!

Well you have to start with that value...

if you're willing to resort to regular expressions in _javascript_, it
should be reasonably easy to get the file name from that point...

filename = document.forms.myform.fileupload.value;
filename = filename.replace(/^.*(\\|\/)(.*)$/,$2);

or something to that effect.

hth

s. isaac dealey954.927.5117

new epoch : isn't it time for a change?

add features without fixtures with
the onTap open source framework
http://www.sys-con.com/story/?storyid=44477DE=1 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: JavaScript history and refresh

2004-06-29 Thread CFDEV
location.history(-1); should work..

 
Pat

_

From: Robert Orlini [mailto:[EMAIL PROTECTED] 
Sent: June 29, 2004 11:33
To: CF-Talk
Subject: OT: _javascript_ history and refresh

Is it possible to go back one page with JS history and also refresh the page
as well? I have this script:

Script Language = _javascript_
alert (Item Deleted);
window.history.go(-1);
/script

It goes back fine after prompting the user, but I would like it to refresh
the same page it goes back to at the same time? What can I add to the above
script if its possible?

Robert O.
HWW 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




OT : MYSQL sysdate or getdate() equivalent

2004-06-25 Thread CFDEV
Hi All,

 
What's the equivalent of oracle sysdate or MS SQL getdate() in an insert
statement for mysql?

 
Thanks

 
Pat
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: OT: Jr Developer Position for CF and Flex

2004-06-23 Thread CFDEV
Hi Stace, what's your address to email you offlist?

 
Thanks

 
Pat

_

From: Asim Manzur [mailto:[EMAIL PROTECTED] 
Sent: June 23, 2004 13:15
To: CF-Talk
Subject: Re: OT: Jr Developer Position for CF and Flex

What is the expected salary range?

 Primarily CF, knowledge of Flex a bonus but not required.
 
 Position is in Montreal, Canada. Drop me a line offlist if you're
 interested or know someone that would be!
 
 Sorry for the intrusion!
 Cheers,
 
 Stace
 
 
 
 table width=800 cellpadding=4 cellspacing=10 border=0tr 
 bgcolor=BDBDBDtd valign=top width=400font face=verdana size=2 
 color=FFbAVIS IMPORTANT/b/font/tdtd valign=top 
 width=400font face=verdana size=2 
 color=FFbWARNING/b/font/td/trtrtd valign=top 
 width=400p align=justifyfont face=verdana size=1 color=808080 Les 
 informations contenues dans le present document et ses pieces jointes 
 sont strictement confidentielles et reservees a l'usage de la (des) 
 personne(s) a qui il est adresse. Si vous n'etes pas le destinataire, 
 soyez avise que toute divulgation, distribution, copie, ou autre 
 utilisation de ces informations est strictement prohibee. Si vous avez 
 recu ce document par erreur, veuillez s'il vous plait communiquer 
 immediatement avec l'expediteur et detruire ce document sans en faire 
 de copie sous quelque forme./tdtd valign=top width=400p 
 align=justifyfont face=verdana size=1 color=808080 The information 
 contained in this document and attachments is confidential and 
 intended only for the person(s) named above. If you are not the 
 intended recipient you are hereby notified that any disclosure, 
 copying, distribution, or any other use of the information is strictly 
 prohibited. If you have received this document by mistake, please 
 notify the sender immediately and destroy this document and 
 attachments without making any copy of any kind./td/tr/table 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: cleaning up a word file

2004-06-22 Thread CFDEV
What about cleaning word html when someone copy/paste from a word file to an
Iframe?

 
Is there something to clean that code?

 
Thanks

 
Pat

_

From: Pascal Peters [mailto:[EMAIL PROTECTED] 
Sent: June 22, 2004 06:02
To: CF-Talk
Subject: RE: cleaning up a word file

MX only!!!

REReplace(str,[^[:print:]\t\r\n],,all)

It also replaces some characters that are usually printable like
paragraph sign or copyright. Maybe use the udf from a previous mail to
convert smart quotes first.

 -Original Message-
 From: dave [mailto:[EMAIL PROTECTED] 
 Sent: dinsdag 22 juni 2004 11:23
 To: CF-Talk
 Subject: RE: cleaning up a word file
 
 i saw that but it looks like it doesnt do all the 
 charachters, the ones im more interested in are the damn 
 boxes, maybe the same though. maybe just need a regex to 
 strip all but letters and #'s hint hint mr doom! haha
 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: cleaning up a word file

2004-06-22 Thread CFDEV
Remove the non necessary html/css tag that word html create...

 
Thanks

 
Pat

_

From: Pascal Peters [mailto:[EMAIL PROTECTED] 
Sent: June 22, 2004 06:59
To: CF-Talk
Subject: RE: cleaning up a word file

What do you mean? Remove html or just clean up word html? 

 -Original Message-
 From: CFDEV [mailto:[EMAIL PROTECTED] 
 Sent: dinsdag 22 juni 2004 12:38
 To: CF-Talk
 Subject: RE: cleaning up a word file
 
 What about cleaning word html when someone copy/paste from a 
 word file to an Iframe?

 Is there something to clean that code?

 Thanks

 Pat
 
_
 
 From: Pascal Peters [mailto:[EMAIL PROTECTED]
 Sent: June 22, 2004 06:02
 To: CF-Talk
 Subject: RE: cleaning up a word file
 
 
 MX only!!!
 
 REReplace(str,[^[:print:]\t\r\n],,all)
 
 It also replaces some characters that are usually printable like
 paragraph sign or copyright. Maybe use the udf from a previous mail to
 convert smart quotes first.
 
  -Original Message-
  From: dave [mailto:[EMAIL PROTECTED] 
  Sent: dinsdag 22 juni 2004 11:23
  To: CF-Talk
  Subject: RE: cleaning up a word file
  
  i saw that but it looks like it doesnt do all the 
  charachters, the ones im more interested in are the damn 
  boxes, maybe the same though. maybe just need a regex to 
  strip all but letters and #'s hint hint mr doom! haha
  
_
 
 
 
 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




RE: Palm OS development

2004-06-17 Thread CFDEV
For palm development or pocket pc, we used sattelite form by pumatech

 
Pat

_

From: Bryan Stevenson [mailto:[EMAIL PROTECTED] 
Sent: June 17, 2004 12:01
To: CF-Talk
Subject: OT: Palm OS development

Hey All,

We've been asked to develop an application for PDAs (Pocket PC and Palm OS).
We use Pocket Builder for Pocket PC...so development there is a snap...but
we haven't tackled Palm before.

So if anyone has any advice/resources about Palm OS application development
(data mining essentially) that a CFer would understandfire away!! ;-)

Thanks in advance

Bryan Stevenson B.Comm.
VP  Director of E-Commerce Development
Electric Edge Systems Group Inc.
t. 250.920.8830
e. [EMAIL PROTECTED]

-
Macromedia Associate Partner
www.macromedia.com
-
Vancouver Island ColdFusion Users Group
Founder  Director
www.cfug-vancouverisland.com 
_
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]
 [Donations and Support]




  1   2   >