RE: Generating unique values

2001-01-02 Thread JustinMacCarthy

While this is true in your case , it depends on the machine being used etc.

GUIDs are created using a complicated algorithm which take several factors
into consideration. Sometimes this results in consecutive UUID (Guids) being
1 apart, other times it doesn't. It depends on the resource etc. etc.
For example if the GUID function drops its counter it has to start again at
a point that is definitely past the last one it generated.

Justin MacCarthy

-Original Message-
From: C Frederic Valone [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, January 02, 2001 3:51 PM
To: CF-Talk
Subject: Re: Generating unique values


 I just checked this out by generating a loop of 50 uuid's and
found that none of the values are incremented  by 1 they differ in
various ways although the last portion of the id is the same in all cases.

 Here is the list that was generated

00075D9C-F809-1A51-B7D6809AFF5FEEB7
00075E16-F809-1A51-B7D6809AFF5FEEB7
00075E7D-F809-1A51-B7D6809AFF5FEEB7

0007B5EE-F809-1A51-B7D6809AFF5FEEB7
0007B64F-F809-1A51-B7D6809AFF5FEEB7



 Tuesday, January 02, 2001, 6:15:41 AM, you wrote:

 J But it doesn't create values which are not easy to guess.

 J Two consecutive UUID will have similar values + 1

 J Justin


~ Paid Sponsorship ~
Get Your Own Dedicated Win2K Server!  Instant Activation for $99/month w/Free 
Setup from SoloServer  PIII600 / 128 MB RAM / 20 GB HD / 24/7/365 Tech Support 
 Visit SoloServer, https://secure.irides.com/clientsetup.cfm.

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



RE: setting structures into arrays

2001-01-02 Thread JustinMacCarthy

Here is some code I use loop over a recordset (rs)
and creates an array of structure with is stored as WDDX

cfset MyArray = ArrayNew(1)
cfloop query=rs

cfscript
tmp = StructNew();
tmp.ID = #id#;
tmp.StatusCode = #statusid#;
// add current thing to list
MyArray[rs.CurrentRow] = tmp;   

/cfscript 
/cfloop

Justin 

cfscript
history=ArrayNew(1);
order=StuctNew();
StructInsert(order, "id", "0001");
StructInsert(order, "date", "01/01/2001");
history[1]=order;
StructClear(order);
StuctInsert(order, "id", "0002");
StrictInsert(order, "date", "01/02/2001");
history[2]=order;
/cfscript

I then serialize and store the data.  However what happends is 
that the "history" array has a length of two, but both are set to 
the second structures values.  Any ideas??

Thanks in advance,


Greg



~ Paid Sponsorship ~
Get Your Own Dedicated Win2K Server!  Instant Activation for $99/month w/Free 
Setup from SoloServer  PIII600 / 128 MB RAM / 20 GB HD / 24/7/365 Tech Support 
 Visit SoloServer, https://secure.irides.com/clientsetup.cfm.

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



RE: Who wants a CF-SQL Mailing List? - existing list

2000-12-21 Thread JustinMacCarthy

There is an existing SQL (mssql7) list below
High Volume 100 mails a day? but some excellent minds subscribed including
Sharon Dooley, Author of SQL Server 7.X Essential Reference
and others
FAQ: http://www.swynk.com/faq/sql/sqlserverfaq.asp
Archives: http://www.swynk.com/sitesearch/search.asp

Justin MacCarthy


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

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



RE: WAY OT: C++

2000-12-20 Thread JustinMacCarthy

The best place to start is a simple console Hello World example!!

The complicating factor in C/C++ is that there are a lot of different
"Toolkits" to learn for different Platforms
(MFC-Windows,Gtk-Gnome,ncurses;ptreads-Unix,QT-Kde etc...) mostly for GUI
development, so it depends on what you want to do..


I think the best book on C++ is the OReilly Book C++
http://www.oreilly.com/catalog/cplus/ it assumes no programming experience,
and you don't need to get a "C" book first...

You can get free C compilers for windows here
http://www.thefreecountry.com/developercity/cc.html

*nix has a cc  gcc etc. as standard.

Also check out
http://cplus.about.com

and of course min's site for CFX examples :-)  (www.intrafoundation.com)


It's a bit of a jump from CF , but after learning C++ you should be able to
master any language , Java CF Perl php, and JavaScript will all "make more
sense"


Justin MacCarthy


-Original Message-
From: lsellers [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 20, 2000 6:52 AM
To: CF-Talk
Subject: RE: WAY OT: C++



  Well I have been messing with cf for a year now and figure
 it's time to
 seriously broaden my horizon and try to learn the granddaddy of all
 languages (excluding B and all those ones which aren't highly used). Does
 anyone know of a good website that has some good learning
examples. Thanks
 for any help.

I assume this is for supporting web apps and I assume you've only used CF
before? Any formal programming classes or other compiled languages? It's
going to be a bit rough if so.

I'd suggest skipping COM objects or full fledge amazon-like cgi/isapi apps.
:)

CFX tags are a fairly easy place to start... after you play around with
making a few command-line apps.

As far as book and on-line tutorials. Depends what kind of previous
experience you have. Thinking in C++ was one I read a while back. Fairly
good.

--min



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

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



RE: WAY OT: C++ now Java

2000-12-20 Thread JustinMacCarthy

I think the the OReilly books are great for reference, the wrox books
Starting Java  and Java Server programming are good for beginners (no C
needed :-) ) to intermediate levels Also the java.sun.com site is really
good too.

The hardest concepts for CF moving to Java ,I think, is the stronger typing
and the OO design of Java, and possibly I idea of 'compiling' an app :-)

BTW CFStudio has syntax coloring for Java

You should learn C++ too, it's good fun..(pointers are your friend ;-) )

Justin MacCarthy

-Original Message-
From: Robert Everland [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 20, 2000 4:28 PM
To: CF-Talk
Subject: WAY OT: C++ now Java


   Ok then where are some good beginning java starters?

Robert Everland III
Web Developer
Dixon Ticonderoga


-Original Message-
From: Peter Theobald [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 20, 2000 10:59 AM
To: CF-Talk
Subject: RE: [RE: WAY OT: C++]


They are similar, but definitely not the same.
Java implements "Object Oriented Programming" in a very clean way.
C++ has a lot of idiosyncrasies in order to blend compatibility with C, a
very low level language with access to the bits and pointers directly into
memory, with Object Oriented Programming "slapped on" top. When you program
in C++ it is very easy to mix the new OO features with the old C features
and get into lots of trouble.

I don't recommend learning C++ as your first programming language.
I would recommend learning Java first.
Then you could later move to C++ and be a very "clean" C++ programmer
because you wouldn't have all the bad habits from the "low level"
programming getting in the way.

At 10:43 AM 12/20/00 -0500, Robert Everland wrote:
Well I figured if I learned C++ which is harder Java would be a snap since
they are pretty much the same language just a little more dumbed down.

Robert Everland III
Web Developer
Dixon Ticonderoga


-Original Message-
From: Alex [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 20, 2000 9:40 AM
To: CF-Talk
Subject: Re: [RE: WAY OT: C++]


learn java instead. its easier and "hotter". also if you already know how
to
program then learning a new language isn't that hard.
also there is a huge difference between C and C++ (most unix apps are
written
in C).

"JustinMacCarthy" [EMAIL PROTECTED] wrote:
The best place to start is a simple console Hello World example!!

The complicating factor in C/C++ is that there are a lot of different
"Toolkits" to learn for different Platforms
(MFC-Windows,Gtk-Gnome,ncurses;ptreads-Unix,QT-Kde etc...) mostly for GUI
development, so it depends on what you want to do..


I think the best book on C++ is the OReilly Book C++
http://www.oreilly.com/catalog/cplus/ it assumes no programming
experience,
and you don't need to get a "C" book first...

You can get free C compilers for windows here
http://www.thefreecountry.com/developercity/cc.html

*nix has a cc  gcc etc. as standard.

Also check out
http://cplus.about.com

and of course min's site for CFX examples :-)  (www.intrafoundation.com)


It's a bit of a jump from CF , but after learning C++ you should
be able to
master any language , Java CF Perl php, and JavaScript will all "make more
sense"


Justin MacCarthy


-Original Message-
From: lsellers [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 20, 2000 6:52 AM
To: CF-Talk
Subject: RE: WAY OT: C++



  Well I have been messing with cf for a year now and figure
 it's time to
 seriously broaden my horizon and try to learn the granddaddy of all
 languages (excluding B and all those ones which aren't highly used).
Does
 anyone know of a good website that has some good learning
examples. Thanks
 for any help.

I assume this is for supporting web apps and I assume you've only used CF
before? Any formal programming classes or other compiled languages? It's
going to be a bit rough if so.

I'd suggest skipping COM objects or full fledge amazon-like cgi/isapi
apps.
:)

CFX tags are a fairly easy place to start... after you play around with
making a few command-line apps.

As far as book and on-line tutorials. Depends what kind of previous
experience you have. Thinking in C++ was one I read a while back. Fairly
good.

--min





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

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



RE: Internet Usage per country

2000-12-19 Thread JustinMacCarthy

www.nua.com

Justin


-Original Message-
From: W Luke [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 19, 2000 3:12 PM
To: CF-Talk
Subject: OT: Internet Usage per country


Hi,

I need to find out some statistics of various countries' Internet Usage per
county/state/population density (particuarly for Australia).  Is there a
site that caters for this?

Thanks

Will
www.localbounty.com
Find your Bounty



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

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



RE: Multiple CF Studios and Login _only_ from a certain machine.

2000-12-19 Thread JustinMacCarthy



-Original Message-
From: Todd Ashworth [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 19, 2000 3:19 PM
1.  I did the little registry trick to enable 2 copies of CF Studio to run
at the same time, so I could run CF Studio and JRun Studio at the 
same time.

Did that work ???

Now, every time I click on a cfml page to open it, it opens a new 
copy of CF
Studio.  Is there a way to make it load up into an already running copy?

I presume you have something like  "%1" in the action


2.  I have an application where I want users to log into a portion of it
only from a certain machine.  That machine has a dynamic IP address.  The
application is hosted on our servers.  Can anyone think of a way 
where I can
make sure that the users only log in from the desired machine?

Client Certificates

JUstin 

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

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



RE: Securing Word Documents etc

2000-12-19 Thread JustinMacCarthy

Use cfcontent and store your doc outs of the web root.

eg

cfcontent file="c:\mysecuredir\myworddoc.doc" enctype="application/msword"

Justin

-Original Message-
From: Nick Betts [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 19, 2000 5:27 PM
To: CF-Talk
Subject: Securing Word Documents etc


Can anyone tell me, how do I securely store Word Docs on the server. I want
to prevent people simply entering a url (eg.
www.blah.com/docs/word.doc) and
viewing secure documents.  Is there anyway to let CF take advantage of NT
security ?  eg. someone logs on via NT security on server, depending upon
their logon, they then have certain user privileges within the CF site..

help appreciated.
Nick Betts.

-Original Message-
From: Jason Lees (National Express)
[mailto:[EMAIL PROTECTED]]
Sent: 19 December 2000 16:17
To: CF-Talk
Subject: OT: Halting an auto-refresh



Hi All,

I have a page that auto-refreshes, question is is there anyway to stop the
form from refreshing by use of Javascript.

The reason for this that if users start entering data on the form, I dont
want it to Refresh.

Anyone have Any Ideas

Thanks in advance.


Jason Lees
National Express
Email : [EMAIL PROTECTED]

###
This document is intended for, and should only be read by, those persons to
whom it is addressed. Its contents are confidential and if you
have received
this message in error, please notify us immediately by telephone
on 0121 609
6301
and delete all records of the message from your computer. Any form of
reproduction,
dissemination, copying, disclosure, modification, distribution and / or
publication of this message without our prior written consent is strictly
prohibited. Neither the author of this message nor their employers accept
legal responsibility for the contents of the message. Any views or opinions
presented are solely those of the author.
If you have any queries please contact [EMAIL PROTECTED]

##

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

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



RE: CFFTP -- INVALID PORT COMMAND

2000-12-18 Thread JustinMacCarthy

Firewall issue ??

~Justin 

-Original Message-
From: Sean Renet [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 18, 2000 12:17 PM
To: CF-Talk
Subject: CFFTP -- INVALID PORT COMMAND


Anyone ever see this error in your CFCATCH stuff using CFFTP?

UNKNOWN
500 Invalid PORT Command.




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

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



RE: creating an url return string

2000-12-18 Thread JustinMacCarthy

Use the UrlEncodedFormat function 

Justin 

-Original Message-
From: Greg Wolfinger [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 18, 2000 4:21 PM
To: CF-Talk
Subject: creating an url return string


Hey Guys:

I have an application that lets you browse a message board, 
however if you would like to post a response you need to log-in 
(in you arn't already).  After you log-in, it takes a parameter 
passed through the url called returnURL and sends the user after 
the authentication to that url.  The problem is that the returnURL 
has multiple parameters to it sometimes (e.g. 
returnURL=/message/index.cfm?action=submit-responsemessage_id=foo
refURL=/foo/index.cfm)

How can I return the user to that page keeping in tact all of the 
URL parameters?

thanx,

greg



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

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



RE: Setting NumberFormat in CFGRIDCOLUMN

2000-12-18 Thread JustinMacCarthy

Apparently you can't do this, so the best way to get around it is to format
your number in the SQL first.

I never use this Applet though

Justin

-Original Message-
From: Rosa, Issac [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 18, 2000 4:19 PM
To: CF-Talk
Subject: Setting NumberFormat in CFGRIDCOLUMN


What is the proper syntax for setting the NumberFormat attribute in
CFGRIDCOLUM?  What I have is an integer field that I want to add a
comma for
thousands and millions.

CFGRIDCOLUMN NAME="mailpieces" HEADER="Mailpieces"
   HEADERALIGN="LEFT" DATAALIGN="right"
   BOLD="No" ITALIC="No"
   SELECT="Yes" DISPLAY="Yes"
   HEADERBOLD="Yes" HEADERITALIC="No"
   NUMBERFORMAT=","

If you have any questions or concerns, please feel free to call me at
407-658-3111.

Thank you,

 Issac Rosa

 IT - National Sales  Marketing
 OLAP Specialist Team Leader
 Ofc: 407-658-3111
 Cell: 407-342-0644
 Fax: 407-971-2374
 [EMAIL PROTECTED]



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

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



RE:

2000-12-18 Thread JustinMacCarthy

oh god don't do that !!! Use the SQL date functions to do the comparison,
you could do all that stuff in one query

UPDATE Ads
SET online_approval = '2'
WHERE ad_id in (

SELECT ad_id
FROM Ads
WHERE DATEADD(day, 30, posted_on)  GetDate()

)



1 query V's 1 x Rows

Justin

-Original Message-
From: Bosky, Dave [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 21, 2000 7:58 PM
To: CF-Talk
Subject:


I'm trying to compare the current date to an expire-on date and
mark the ad
as expired if the datecompare function returns a value gte 0. Everything
seems
ok except that it marks every ad as expired regardless of returned value.

CFLOOP QUERY="GetEntries"
CFSET AdWasPlacedOnThisDate = posted_on
CFSET expiration_date = #dateformat(DateAdd('D', 30,
AdWasPlacedOnThisDate), "DD-MMM-YY")#
CFSET comparison = DateCompare(CurrentDate,expiration_date
CFIF comparison GTE 0
CFQUERY datasource="xxx" DBTYPE="ODBC"
   UPDATE Ads
   SET online_approval = '2'
   WHERE ad_id = ad_id
/CFQUERY
/CFIF
/CFLOOP

Thanks

Dave Bosky
HTC Web Application Developer
843.369.8613
[EMAIL PROTECTED]


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

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



RE: SQL Server 2000

2000-12-18 Thread JustinMacCarthy

port : 1433 is the registered port of mssql

Justin 

-Original Message-
From: Bosky, Dave [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 18, 2000 5:30 PM
To: CF-Talk
Subject: SQL Server 2000


What is the default/common port used for sql server?

Thanks.

Dave


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

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



RE: Is this even possible? - creating thumbnails

2000-12-15 Thread JustinMacCarthy

In addition you can automatically create thumbnails, look in the tag gallery
for the tag to do this.

Justin

-Original Message-
From: Dick Applebaum [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 15, 2000 6:17 AM
To: CF-Talk
Subject: RE: Is this even possible?


At 12:25 AM -0500 12/15/00, Dave Watts wrote:
   ... I am told there is a 500 file per directory limit on NT ...

This isn't true. I've seen directories with more than 50,000 files on NT.
With NT or even with Solaris, though, this can cause performance problems.

Sorry to pass on untrue rumors!

Is there a practical limit, though?

Does this (a 50,000 entry directory) cause problems with things like
doing a directory listing with an FTP program? Or, Adding, deleting
retrieving an individual file from FTP or CFFILE?

When, if ever, does it make more sense to store the images as blobs
in a db... probably in a separate child table (where it would only be
retrieved when needed), e.g.:

ImageId  Integer Identity Primary Key.
ProductIDInteger References Product,
BinaryImage  Image

A db would certainly be a lot easier to manage from a programmer's
point of view.

Anyone with some real-world experience?

TIA

Dick




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

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



RE: URGENT: Not OT: SQL Server Problems...

2000-12-15 Thread JustinMacCarthy

Yes this is possible , the swap over can happen at odbc level so it's
transparent to your apps / code. However this does require SQL server
Enterprise Edition running on NT enterprise Edition or the win2000 equiv.

Check out the lists @ http://www.swynk.com/
or look for a white paper on SQL server and clustering at the MS site.

Justin MacCarthy


-Original Message-
From: Paul Johnston [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 15, 2000 11:49 AM
To: CF-Talk
Subject: URGENT: Not OT: SQL Server Problems...


Guys,

We have a SQL Server 7 implementation with three CF servers using it as a
database server.

The problem is that it's falling over regularly (and the technical guys
can't figure it out).

That's not the problem though.  We are now setting up a second SQL Server 7
for use as a failover. It will replicate all of the data.  My boss wants to
know if it is possible for CF to use one or other of the database servers
depending on what is up!

So the idea is:

For each query - check which server is up and choose one to use
(assuming we
can replicate all data)

This doesn't make very much sense to me (it's not my idea, I just got asked
to ask the list) as I would do it differently anyway!

So situation (again)

2 SQL servers
   Q: can we replicate the data so they effectively are the same?
2 CF Server
   Q: without having to change EVERY cfquery can we make
something that will
use one or other to retrieve data depending on which one is up.

Is this possible?

Paul




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

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



RE: CF 4.5 Studio Install Order

2000-12-15 Thread JustinMacCarthy

The FTP service in the latest build of CF studio uses the wsFtp code, one of
the best Ftp Programs around.

Justin MacCarthy

-Original Message-
From: Shane Witbeck [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 15, 2000 2:13 PM
To: CF-Talk
Subject: Re: CF 4.5 Studio Install Order


I have found FTP through ColdFusion Studio to be unstable even on
good installations and I resort to other software for FTP. If you
are working with a shared/virtual server, most of the time RDS
access is not allowed because of security issues.

Shane Witbeck


-- Original Message --
From: "Dave Notik" [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Date: Thu, 14 Dec 2000 23:33:44 -0800

All:

For god sakes, can it get any lamer?  ;)  Trying to install Studio 4.5 to
Win2K, as follows:

Installed base installation, rebooted.
Installed 4.5a update, rebooted.
Installed 4.5.1 update, rebooted.

Tried other combinations, too.  All's good, but when I add an FTP server
(via RDS and FTP), I can't see the contents of any remote
directories, which
leads me to believe the installation is screwed.

4.5a, 4.5.1 -- geez, how cumbersome.  Did this many times before, but this
time I don't think it's working just right.  Any insights?

-Dave





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

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



RE: uuid

2000-12-15 Thread JustinMacCarthy

There is a COM to do this. But a cheat is to use a stored prod to return a
uuid , use the Getid() function in SQL7


Justin MacCarthy

-Original Message-
From: Michel Vuijlsteke [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 15, 2000 2:06 PM
To: CF-Talk
Subject: OT: uuid


(sorry for this)

We're developing a ColdFusion application that needs to interact
with an ASP
application.

Any idea how I can generate a UUID in ASP?

Michel Vuijlsteke
Netpoint NV


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

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



RE: how many milliseconds is too many?

2000-12-15 Thread JustinMacCarthy

Want to post your code for some Friday Afternoon fun

Justin MacCarthy


The page pulls data from 6 different tables and performs several loops in
the process.  Unfortunately, I can't figure out how to make it go any
faster.  I'm sure a stored procedure would help, but it was all I could do
to get it written in CF, heh.

Todd Ashworth


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

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



RE: CFFILE help

2000-12-15 Thread JustinMacCarthy

Don't use cffile , use cfhttp instead.
Something like

cfhttp url="http://yourserver.com/yourpage.cfm" method="get"
resolveurl=yes

cffile action=write output=cfhttp.content

etc


Justin MacCarthy

-Original Message-
From: John Allred [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 15, 2000 4:01 PM
To: CF-Talk
Subject: CFFILE help


I'm not a newbie to CF, but I am to CFFILE. I have an idea how to take an
existing template that queries for any of about 50 educational courses, and
displays the course and section info for them, and create static HTML files
instead. Any advice would be appreciated.

category.cfm displays a list of all the courses. The links are displayed on
the page as LIs with the course number passed to a second file used to
display the course information-- course.cfm.

course.cfm displays the actual information for each course offered,
including section or meeting dates.

Previously, I created a file, called course2htm.cfm that writes all the
information for a course as I need the file to appear on the web (we don't
have CF Server available to the world - so the files have to be non-CF),
but I have to copy the html, and paste it into an html file. Multiply that
by 50 or more, and it's not pretty.

I'm thinking that I could use CFFILE either within the first file,
category.cfm and create the html files when I click on the links, or I
could use CFFILE within, or in conjunction with the second file,
course2htm.cfm, to create the files I need.

My CFWACK is at home, so all I have is the CFML Language Reference
(eeeuuwww!). I may figure it out before a response comes back, but if
anyone could offer some quick tips, I sure would appreciate it.

TIA,
--John



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

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



RE: cfx tags

2000-12-15 Thread JustinMacCarthy

once you have the dll , you just need to register it in the ColdFusion admin
section.

Choose the path etc ...

Justin

-Original Message-
From: Jay Brushett [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 15, 2000 1:08 PM
To: CF-Talk
Subject: cfx tags



Hi all,

I'm in the midst of building my first cfx tag using visual c++ 6.

I've gotten to the point where the dll is compiled. What I need to
know now
is the whole process of registering it.
Mainly I need to know if it has to be registered both with the operating
system and coldfusion or just coldfusion.

Any help would be greatly appreciated.

TIA,

Jay
 Strategy ~ Creativity ~ Technology   

Jay Brushett
[EMAIL PROTECTED]

Developer

 ZeddComm Inc. 
2nd Floor, The Tower | 100 Signal Hill Road
St. John's, Newfoundland | Canada A1A 1B3
Main: 709.570.5669 | Fax: 709.739.9003
Web: www.zeddcomm.com
   St. John's ~ New York ~ Newport Beach ~ Ottawa   




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

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



RE: uuid

2000-12-15 Thread JustinMacCarthy

I can't remember !!
But there is a GUIDGEN exe to create them ..
Otherwise you chould write you own COM, I'll give you the VB or C code to do
that if you want...


Justin


-Original Message-
From: JustinMacCarthy [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 15, 2000 2:27 PM
To: CF-Talk
Subject: RE: uuid


There is a COM to do this. But a cheat is to use a stored prod to return a
uuid , use the Getid() function in SQL7


Justin MacCarthy

-Original Message-
From: Michel Vuijlsteke [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 15, 2000 2:06 PM
To: CF-Talk
Subject: OT: uuid


(sorry for this)

We're developing a ColdFusion application that needs to interact
with an ASP
application.

Any idea how I can generate a UUID in ASP?

Michel Vuijlsteke
Netpoint NV



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

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



RE: Another debate

2000-12-14 Thread JustinMacCarthy


This is actually accurate. There is a module for PHP , which give a common
interface to several DBs.
Justin

One big difference: in PHP you will have to write database-vendor
specific code. The code to use Sybase is different than SQLServer
is different than Oracle, etc.
If portability is important, then that will be a problem.


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

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



RE: Unlimited Line Item Subform functionality in a FORM

2000-12-13 Thread JustinMacCarthy

Here is a very quick DHTML example I just knocked up for u.
(ie4 + ) Needs to be changed slightly to be DOM compliant

You need to loop over the 'Form' collection on the "action" page to add each
field (lineitem1,lineitem2 lineitem3 etc)

Justin MacCarthy

html
head
script
!--//

currentItem = 1;

function AddLineItem ()
{
currentItem++;
e = "input tye='text' size='20' name='lineitem" + currentItem + "'";
lineitems.insertAdjacentHTML("BeforeEnd",e);
}

//--
/script


/head


body
form action="" name=""
div id=lineitems
input type="text" name="lineitem1" size=20
/div
input type="Button" onclick="AddLineItem()"
/form
/body
/html


-Original Message-
From: Bob Silverberg [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, December 13, 2000 2:32 PM
To: CF-Talk
Subject: Unlimited Line Item Subform functionality in a FORM


Hi all,

Here's the scenario:  A user is entering an order, the order will have some
info associated with it, and then the order can have multiple line items
added to it.  Each line item will have a number of attributes
(like product,
quantity, etc.).  In a program like Access, you can create a form for the
Order, and then create a subform for the line items.  You can easily set it
up so that the user can enter as many line items as they like.  After they
enter a line item, the interface adds a new blank line item.

We need to replace an Access application with a ColdFusion application and
provide this same functionality.  If we have to, we could provide input
fields for a specific number of line items, and then provide a
button to add
more items, but I was wondering if anyone knows of any custom tags, applets
or ActiveX controls that would provide this functionality.  Or perhaps I'm
missing an obvious easy solution.

Any suggestions would be greatly appreciated.

Thanks,
Bob



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

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



RE: Another debate - absolute rubbish.

2000-12-13 Thread JustinMacCarthy

Most "security issue" in ColdFusion are problems with IIS not ColdFusion or
problems in standard security. There have been a couple of exceptions (the
Expression Evaluator and samples mostly), but most are not the fault of CF.

If he is comparing PHP on Unix to CF on NT, it's not really a fair
comparison, is it?

As for cost. The cost of a few days extra time programming nearly covers the
application.

Why don't you ask him about these security issues??? What are they ? Is he
talking about webserver or system security? Or CF ?

And before I get into a flame war here, I do use PHP ,and Perl, C/C++, Java
(JRun is great BTW )and CF others , NT and *nix. I prefer do prefer PHP for
some stuff  (can't wait for cfscript to get better ), and with Zope it's
very fast but CF is cool too, and I've been using it since CF V1.5ish with
success. Why stop now?

~J

However, in the corporate IT department, CF is usually not an
 option due to cost and security problems. I realize that changing
 perceptions and old habits are sometimes difficult, but necessary.
 Especially in our industry (high-tech).

 The need to deliberate the issue further is a mute point."


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

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



RE: CF_ThreeSelectsRelated nate Weiss

2000-12-12 Thread JustinMacCarthy

Hi Fng,

Nate is a busy guy and his tag is open source, so you can s=do the mod
yourself.

The issue is (') in JavaScript, you need to escape it like this:-   \'
Luckily CF has a built in function to do this called JSStringFormat()
Use this and your problems should be solved. It's good to know about the
tags you use too..

Justin MacCarthy


-Original Message-
From: FARRAH NG [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 12, 2000 1:41 AM
To: CF-Talk
Subject: CF_ThreeSelectsRelated


Hi Nate Weiss,
I have download the CF_ThreeSelectsRelated you have created.
I ran a SQL server query to retrieve the Section ID, Department
ID and
the name of the Manager belongs to that department and section.
The problem some of the names in our SQL server has quote or double
quotes, like 0'Connor or O'Hara  and your custom tag cannot
populate the box where the manager name should go.  Please advise
how i should modify your tag to take of this situation.  I tried to
put the DE function in the evaluate statements but it does not solve
the problem.

I would appreciate much if some insight will be given.

thanks


Fng



--
Global Internet phone calls, voicemail, fax, e-mail and instant messaging.
Sign-up today for FREE account at http://www.hotvoice.com


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

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



RE: LDAP using CF? OT

2000-12-12 Thread JustinMacCarthy

There is a  LDAP tag in ColdFusion, is this what you want?

Justin 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 12, 2000 1:12 AM
To: CF-Talk
Subject: LDAP using CF? OT



Hi guys,
Anyone know of a way to connect LDAP to a odbc datasource? Once 
there the CF
can run, so yes, this off topic sorry... Any help would be helpful...

-Brian



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

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



RE: Webserver and win 2000 Help

2000-12-12 Thread JustinMacCarthy

I'd add the MS loopback adapter to you network settings...

Justin

-Original Message-
From: Shane Witbeck [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 12, 2000 1:49 PM
To: CF-Talk
Subject: Re: Webserver and win 2000 Help


Edit your "hosts" file in your c:\winnt\system32\drivers\etc\hosts 
file. Something like this:

127.0.0.1 localhost

Then run the command "nbtstat -R"

You can also add additional mappings to this file as needed.
Also, check in IIS to make sure you have index.cfm listed as in 
the default documents list. Hope this helps.

Shane Witbeck

-- Original Message --
From: "AustralianAccommodation.com Pty. Ltd." 
[EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Date: Fri, 12 Dec 1997 22:41:27 +1000

I  have just upgraded to win 2000 and all works fine however I 
cannot get the personal webserver to allow me to view my local 
server at http://127.0.01 etc etc nor allow cf studio to browse 
the cf pages 


any words of wisdom would be appreciated


Kind Regards

Claude Raiola (Director)
AustralianAccommodation.com Pty. Ltd.
Email: [EMAIL PROTECTED]
Developers Of:
  Website: www.AustralianAccommodation.com
  Website: www.AccommodationNewZealand.com





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

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



RE: CF/JRun Studio

2000-12-12 Thread JustinMacCarthy

I remember someone talking about a RunMultiple copy (something like that )
setting in the REG , but I have no idea what it does

J

-Original Message-
From: Clint Tredway [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 12, 2000 1:58 PM
To: CF-Talk
Subject: RE: CF/JRun Studio


I have them both installed and I don't have any problems. I have not opened
them at the same time though.

-Original Message-
From: DeVoil, Nick [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 12, 2000 5:14 AM
To: CF-Talk
Subject: RE: CF/JRun Studio


So does anyone know, is it OK to have them both installed
so long as you only have one open at a time?

I *was" planning to install JRun Studio later this week
but now I'm not so sure...

Is this the same as the Homesite/CF Studio problem that
was discussed on the list a while ago?

Nick


-Original Message-
From: Lord, Heath [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 11, 2000 5:23 PM
To: CF-Talk
Subject: RE: CF/JRun Studio


Yes.
It hosed my install when I tried having them both open at the same time.
However, I was so frustrated at this point that I uninstalled JRUN Studio
and CF Studio, did the CF Studio reinstall, and that's all I use now.

Heath


**
Information in this email is confidential and may be privileged.
It is intended for the addressee only. If you have received it in error,
please notify the sender immediately and delete it from your system.
You should not otherwise copy it, retransmit it or use or disclose its
contents to anyone.
Thank you for your co-operation.
**

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

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



RE: CF java object

2000-12-11 Thread JustinMacCarthy

I think you may be mixing up Java Applets with Java objects(Servelets ,
Beans etc...)

Justin

-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 08, 2000 6:31 PM
To: CF-Talk
Subject: RE: CF java object


Calling a Java class is done using HTML and thus the location of the CF
machine is completely irrelevent.  You can call Java classes from anywhere.


Bryan Love ACP
[EMAIL PROTECTED]



-Original Message-
From: Alex [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 08, 2000 5:33 AM
To: CF-Talk
Subject: CF java object


can I call a java object on a remote machine? or does the object have to be
on
the same machine as CF?

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

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



RE: [RE: CF java object]

2000-12-11 Thread JustinMacCarthy

Yes, check out my page at http://www.cffaq.org/javasetup.cfm
on how to setup CF4.5 to use Java

You will need the JDK if you are writting the Java yourself..
What are you creating ?

You can use Java several ways from CF 

a)Servlet using the cfservlet tag 
b)CFX , creating CFX using Java 
c)Servelets or JavaBeans using CFObject 

Justin 

-Original Message-
From: Alex [mailto:[EMAIL PROTECTED]]
Sent: Monday, December 11, 2000 1:17 PM
To: CF-Talk
Subject: Re: [RE: CF java object]


OK. if I use cfobject. does the java class have to be on the CF server?

"JustinMacCarthy" [EMAIL PROTECTED] wrote:
I think you may be mixing up Java Applets with Java objects(Servelets ,
Beans etc...)

Justin

-Original Message-
From: Bryan Love [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 08, 2000 6:31 PM
To: CF-Talk
Subject: RE: CF java object


Calling a Java class is done using HTML and thus the location of the CF
machine is completely irrelevent.  You can call Java classes from 
anywhere.


Bryan Love ACP
[EMAIL PROTECTED]



-Original Message-
From: Alex [mailto:[EMAIL PROTECTED]]
Sent: Friday, December 08, 2000 5:33 AM
To: CF-Talk
Subject: CF java object


can I call a java object on a remote machine? or does the object 
have to be
on
the same machine as CF?


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

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



RE: Retrieving database properties

2000-12-11 Thread JustinMacCarthy

Hi Howie, how are  things?

Check out http://www.swynk.com/sqlhome/scriptlibrary.asp , they'll have most
of the scripts you are looking for (version 6.5  7 ). You 'll need to be
DBowner or SA for most of them though. Otherwise connect though OleDB would
work ..

Justin MacCarthy


I'm trying to import data from a remote server for which I have FTP access
but not access to the MSSQL Server.  I can get all the records from the
remote server but what would make life easier would be the ability to:

1 - get a list of all tables in the data source
2 - get the attributes (data type) of each field in a particular table.

Any ideas?



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

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



RE: Any good ideas?

2000-12-11 Thread JustinMacCarthy

This is not a task for a web request, you should really fire an another
process to do reporting. Use cfexecute and what ever they are currently
using, if it ain't broke...


Justin

Nope not these queries.  This database is huge, I am talking hundreds of
GIGs to terabytes. Average queries on this site do not get returned any
where near as fast as the template could process.  I thought about using


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

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



RE: CFX_NNTP and WDDX

2000-12-07 Thread JustinMacCarthy



-Original Message-
From: Owens, Howard [mailto:[EMAIL PROTECTED]]

I've never worked with either CFX_NNTP or WDDX so I'm excited at getting an
opportunity to do both. But before I over commit myself, I

I need to use CFX_NNTP to access a private newsgroup and download articles


No problem

that are all marked up in XML.  I then need to use WDDX to manipulate the
articles into a database (not sure yet, but either SQL Server or Oracle).

I'm not sure what exactly you mean by 'manipulate' but you might look at
something like http://www.siteobjects.com/index.cfm?fuseaction=showproducts
or the msxml com to deal with the XML. Wddx is NOT XML, it IS an
implementation of XML. This seams to cause some confusion with users.

Justin


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

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



RE: Regular Expressions - Programming Interface?

2000-12-07 Thread JustinMacCarthy

One thing I saw which was pretty cool was a web page with a form with the
fields
value to test:
regex :

It used the RE's in javascipt to do the tests, client side , no source
editing etcjust an alert box... I can't remember where it is but it
chould be replicated easy enough.

Of course I have thought about this in respect of a REGEX builder where for
example:
you would say, here are 10 strings; give me the regex's that will match
them.

But of course this would be very complicated, especially when you get into
'0 or more times' expressions , backrefs etc

You probably have to a lot of 'training', and feed the thing a lot of
strings that  the pattern shouldn't match.  It is probably easier to just
learn RE's !!

But if you find something CC me 

Justin MacCarthy



-Original Message-
From: Don Smith [mailto:[EMAIL PROTECTED]]
Sent: Thursday, December 07, 2000 3:57 PM
To: CF-Talk
Subject: Regular Expressions - Programming Interface?


Per a discussion at last night's CFUG,

Is anyone aware of any programming interface that would help new
programmers
learn to write regular expressions?  Preferably Perl-style REs,
but actually
I would be interested to see if anyone has some kind of "regular expression
builder" or programming interface for CF, Perl or any RE-capable language.
I am not sure what this would look like, but like many of us I have been
casually writing REs by hand for the last 8 years and I don't remember ever
seeing anything to assist new programmers other than books.

thanks for any info,

Don


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

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



RE: Summary: A CF limitation in building a spider?

2000-12-06 Thread JustinMacCarthy

Look at the CoolFusion.com cfx tag, which calls the CFserver directly
without going thru' the webserver.. it basically works the same way that a
webserver does when passing a request on to a application server.  (I
persume!).

Justin

-Original Message-
From: Bruce Heerssen [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, December 05, 2000 11:43 PM
To: CF-Talk
Subject: RE: Summary: A CF limitation in building a spider?


Does anyone know if a template will timeout if called from the
command line (eg
as a sceduled task). I'm thinking that it will only timeout when
called from the
browser, and then only because the browser stops waiting. Can
someone confirm or
deny this?

Thanks

-- Bruce

 -Original Message-
 From: Phill Gibson [mailto:[EMAIL PROTECTED]]

 !-- snip --
 I will probably also eventually put the CFHTTP one to
 work with cfschedule.


 Phill Gibson
 Velawebs Web Designs
 www.Velawebs.com
 [EMAIL PROTECTED]




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

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



RE: advanced coldfusion tutorials

2000-11-28 Thread JustinMacCarthy

And here are some good XML examples

http://www.siteobjects.com/index.cfm?fuseaction=showproducts

Justin

-Original Message-
From: Simon Horwith [mailto:[EMAIL PROTECTED]]
Sent: Monday, November 27, 2000 8:47 PM
To: CF-Talk
Subject: RE: advanced coldfusion tutorials


http://www.cfcomet.com/cfcomet is the only site I know of that has a good
number of COM examples.  It largely depends on what COM Object you want to
use... most come with documentation, and frequently have ASP 
examples, which
are easilly adapted to CF.

~Simon

 Simon Horwith
 Certified ColdFusion Developer
 Fig Leaf Software
 1400 16th St NW, # 220
 Washington DC 20036
 202.797.6570 (direct line)
 www.figleaf.com
 


-Original Message-
From: stas [mailto:[EMAIL PROTECTED]]
Sent: Monday, November 27, 2000 3:15 PM
To: CF-Talk
Subject: advanced coldfusion tutorials


Hello,

I am looking for examples that illustrate the use of COM objects, Java
servlets/applets, and XML. Thanks for any links!

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

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

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


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

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



RE: time in CF

2000-11-28 Thread JustinMacCarthy

Or as they say in perl RTFM :-)

Even as an expert in CF you can still gain new information by reading the
docs every so often. For example I recently "found out" that variables
static in a Java cfx persist in memory, if I'd bothered to read the docs
properly I would known ...

~Justin Mac Carthy

The first answer came back on CF-Talk in 16 minutes, the above process took
less than a minute - you do the math as to which is faster and
which is more
productive for your knowledge...

This may sound like arrogance, but being new to CF is no excuse for
lazyness - those of us who started using CF well before this list started
had to do things the hard way, and we're (hopefully) better programmers for
it... replying on other's knowledge for something this simple is just
lazy...

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

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



RE: CFHTTP still broken in SP2

2000-11-28 Thread JustinMacCarthy

Or use cfx_http or a java cfx 

Justin 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 28, 2000 1:10 PM
To: CF-Talk
Subject: CFHTTP still broken in SP2


Substitute the IP address instead of the server name and watch it work!!

From:  John Rice [EMAIL PROTECTED]
Subject:   RE: TURKEY VS CFHTTP - [in mime format] 
[the answer from Allaire]

 I am having the same exact problem.  Does anyone have any ideas?
  Its a bad time to feel like a turkey so I need some advice in hurry.
 Anyone
  know why this returns "Connection Failure" in CFHTTP.fileContent?
 
  CFHTTP
  url="http://www.docboard.org/cgi-shl/nhayer.exe"
 ~~

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

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


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

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



RE: CFMail, iMS advice needed

2000-11-28 Thread JustinMacCarthy

It's pretty great , but don't just take my opinion, join the mail list and
Ask the users.

Signup at [EMAIL PROTECTED] or http://www.coolfusion.com/index.htm

and the mail archive

http://www.mail-archive.com/infusion-email%40eoscape.com/

Also Howie (who is on this list) is very helpfull, quick to reply and solve
issues

Justin

-Original Message-
From: Norman Elton [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 28, 2000 3:24 PM
To: CF-Talk
Subject: CFMail, iMS advice needed


Hello-

We're about to start on a project that involves sending out automated
surveys. We have had some problems with CFMAIL in the past (various error
messages often maildrops locking up on the mail server). Has anyone had
much experience with iMS? What is your opinion? How hard is it to
administer?

Any advice would be most appreciated. Thanks!!

Norman Elton
Information Technology
College of William  Mary

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

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



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

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



RE: Use End of Line Char as Delimiter?

2000-11-23 Thread JustinMacCarthy

BTW this depends on platform Linux /Windows use different "End OF line"
combinations
Justin

--_=_NextPart_001_01C054C9.763C0AE0
Content-Type: text/plain;
   charset="iso-8859-1"

CHR(13) and CHR(10)

I can't remember which is which, but I believe one is line feed, and one is
break.

E


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

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



RE: cf-studio mailing list?

2000-11-23 Thread JustinMacCarthy


M.D. You should talk to Jeff Wilkinson  http://www.wilk4.com/asp4hs/ if you
are going to create one. He has a list
http://www.wilk4.com/asp4hs/maillist.htm

~Justin MacCarthy


-Original Message-

M. Dinowitz:
On that note, is there any demand for a ColdFusion Studio
mailing list?
~~
Structure your ColdFusion code with Fusebox. Get the official book
at http://www.fusionauthority.com/bkinfo.cfm

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



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

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



RE: Java to cf

2000-11-22 Thread JustinMacCarthy

How much of the app are you converting ,can you use some of the Java from
ColdFusion???
Using the cfServlet and cfobject tags?? Or chould you wrap some of the Java
in cfx_ 's ??

Java is quite easy, don't be afraid (Although it depends on the size of
the site)


Justin MacCarthy


-Original Message-
From: Rick Lamb [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 22, 2000 1:18 AM
To: CF-Talk
Subject: Java to cf


I've been handed a site that was written in jhtml using Java,
class, and cgi
for the backend stuff. The task I've been given is to convert this Java
based website into a cf site (we don't support java). Anybody have any
suggestions on how this could be done or if it is even feasible considering
I know nothing about Java? Just wondering if anyone has ever
successfully or
unsuccessfully tried to do something like this and what there experience's
where.

Thanks,

Rick

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

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



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

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



RE: CF for UNIX

2000-11-21 Thread JustinMacCarthy

There is a cf-linux list @houseoffusion.com, good noise/signal ratio,
Loads of smart *nix \ cf folks on it. and me ...

Justin MacCarthy

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 21, 2000 4:22 PM
To: CF-Talk
Subject: CF for UNIX


We run Cold Fusion on Solaris here and I was wondering if anyone knows of
any good resources for things that work / don't work for the *nix versions
of CF.

chris.alvarado
cold.fusion - developer
[phone] 512.794.6563
[email] [EMAIL PROTECTED]
[web] http://www.tmanage.com


Privileged/Confidential Information may be contained in this message. It is
not for use or disclosure outside TManage without a written proprietary
agreement.  If you are not the addressee indicated in this
message, or agent
responsible for delivery, you may not copy or deliver this message to
anyone.  Please notify the sender as soon as possible and immediately
destroy this message and its attachments entirely.


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

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



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

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



RE: Is this possible w/CF???

2000-11-20 Thread JustinMacCarthy

Assuming this is not an Access database, one way
to make things a bit more effecient is to use
Stored Procedures to perform all of the actual
logging. :-) (Triggers:)


Only problem with that idea is, it's probably the same user modifying the
data each time (CF odbc source)..

J

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

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



RE: Bizarre CFMAIL problem

2000-11-20 Thread JustinMacCarthy

It sounds like either a full disk drive or a permissions problem.

Justin 

'Unable to write mail message to disk.'


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

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



RE: Kooky Form Field/List question.

2000-11-20 Thread JustinMacCarthy

You need to use Evaluate()

Check out Ben Forta's FormMail tag at the tag gallery
http://devex.allaire.com/developer/gallery/info.cfm?ID=CA3470A1-2830-11D4-AA
9700508B94F380method=Full

Justin


-Original Message-
From: Willy Ray [mailto:[EMAIL PROTECTED]]
Sent: Monday, November 20, 2000 3:48 PM
To: CF-Talk
Subject: Kooky Form Field/List question.



I work on a college campus, and frequently I'm asked by
faculty/staff/students, why they can't just make a form in front
page express and have it send them an email (and we don't have the
server extensions).  I have the hardest time explaining what a
form handler is, and how frontpage just can't do it.

So, I decided to make a generic Coldfusion form handler.
Something that, provided it was passed an email address, subject
line, and a redirect URL (for the success message), it would make
an email to the address.  Ok, this is the easy part.  I have it
already.  The problem is, I need also to pass *any form fields*
other than the ones required for the email in the body of the
email.  Biology is going to need different things on their form
than accounting, see, so I want to make this thing totally generic.

So, here's the problem.  I can use the automatically-created
FORM.fieldnames list to get the field names onto the email like this:

cfloop index="test" list="#FORM.fieldnames#" delimiters=","
#test# :   br
/cfloop

This code puts the names of the form field onto the email.  Easy.
I can also test them for whether or not they're one of my required
fields, and not print them if they are.   What I can't do is print
the VALUE of the form fields.  Make sense?  I was hoping I could
do something like this:

cfloop index="test" list="#FORM.fieldnames#" delimiters=","
#test# : #FORM.#test##  br
/cfloop

Yeah, but I can't.  Any thoughts?

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

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



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

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



RE: Finding an Odd Number

2000-11-20 Thread JustinMacCarthy

Use the following code as an example, the function you should look at is MOD

cfloop from="1" to="6" index="currentnumber"
cfoutput
The number : #currentnumber# is cfif (currentnumber MOD
2)oddcfelseeven/cfifbr
/cfoutput
/cfloop

Justin

-Original Message-
From: Jason Larson [mailto:[EMAIL PROTECTED]]
Sent: Monday, November 20, 2000 3:58 PM
To: CF-Talk
Subject: Finding an Odd Number



Can someone help me out?

I have a cfloop that loops 6 times, I want to be able to be able to output
what loop number the current loop is on, and tell if the number is even or
odd.

Any help would be greatly appreciated

Thanks
Jason Larson
[EMAIL PROTECTED]

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

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



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

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



RE: How to tell between MS 2000, 97, 95, etc. with Cold Fusion

2000-11-17 Thread JustinMacCarthy

There is a "MagicNumber" in the FileFormat.Search for vmware, a C LIB for
parsing word docs...

Justin


-Original Message-
From: Jerry Tolentino [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 16, 2000 7:54 PM
To: CF-Talk
Subject: How to tell between MS 2000, 97, 95, etc. with Cold Fusion



I wanted to allow users to upload various file of similar formats that
differ in versions. Is there a way to this. Most users
are not willing to do a "Save As" on file so I have to handle this on the
CF end... IF POSSIBLE!

Anyone know a way to distinguish between different file formats such as
word 2000, and 97.

Are there COM object that give this information?

Are ther e other ways?

Any help on this subject would help?

Does not have to apply soley to MS products (that was just an example)?


PLEASE HELP!!!

Jerry


---
-
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
or send a message with 'unsubscribe' in the body to
[EMAIL PROTECTED]



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

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



RE: MAIL, HELP ME FOR THE LOVE OF GOD

2000-11-16 Thread JustinMacCarthy

Sorry for the delay in responding:

Anyway look for cfx_mail at allaires site, you can add any headers you want
Another option is iMS from www.coolfusion.com. It's a great product.
If you just want to send mail it's only $70...


Justin


 -Original Message-
 From: Robert Everland [mailto:[EMAIL PROTECTED]]
 Sent: Wednesday, November 15, 2000 6:05 PM
 To: CF-Talk
 Subject: MAIL, HELP ME FOR THE LOVE OF GOD


   Ok I have been trying all day to find a way to send an email to efax
 with an attachment that will take it. I guesse because of the way cfmail
 encodes the email it doesn't know what type of attachment it has. I have
 been trying to get the Dundas email to work but it uses a
 collection and the
 com  object keeps erroring out in the to field. Anyone out there
 either find
 a workaround to mail efax or know of an easy com object that will just
 encode an attachment? Need it very urgently.

 Robert Everland III
 Web Developer
 Dixon Ticonderoga
 --
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
 or send a message with 'unsubscribe' in the body to
 [EMAIL PROTECTED]




Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: cd-rom based applications

2000-11-16 Thread JustinMacCarthy

Eh, care to share how ? :-) 

~J

-Original Message-
From: Neil Clark [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 16, 2000 5:29 PM
To: CF-Talk
Subject: RE: cd-rom based applications


yes, I have done a fully searchable (RAM-updateable) database on a
CD-ROM good experience and quite fun to do...

N

! ---
Neil Clark


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: append variable to a variable??

2000-11-16 Thread JustinMacCarthy

Using SetVariable is better

cfset setvariable("Edname"  numvar, "test")

Justin 

-Original Message-
From: S R [mailto:[EMAIL PROTECTED]]
Sent: Thursday, November 16, 2000 5:29 PM
To: CF-Talk
Subject: RE: append variable to a variable??


Thanks Everyone!!

Sal


From: "Andrew" [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: RE: append variable to a variable??
Date: Wed, 15 Nov 2000 22:40:23 -0500

Sal:

Sure there is. try this for instance:

cfset numvar = "2"
cfset "Edname#numvar#" = "test"

cfoutputEdname2 is #Edname2#/cfoutput

How's that?


Andrew Hewitt
Web Application Developer
webworld studios, inc.
www.wwstudios.com
cf_certified/

-Original Message-
From: S R [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, November 15, 2000 7:56 PM
To: CF-Talk
Subject: append variable to a variable??


Is there anyway to do this?

I have six variables in my database they are called:

EdName1, EdName2, etc.

It would be awesome if I could set a variable that could 
dynamically change
the number of each variable for me so I don't have to hard code the
variable.

For example (I know this doesn't work but it will get my point across:

cfset numvar = "2"

#EdName#numvar## = EdName2

Thanks for your help

Sal
_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at
http://profiles.msn.com.

--
--

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
or send a
message with 'unsubscribe' in the body to 
[EMAIL PROTECTED]


--
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
or send a 
message with 'unsubscribe' in the body to 
[EMAIL PROTECTED]

_
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.

---
-
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
or send a message with 'unsubscribe' in the body to 
[EMAIL PROTECTED]



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Automatic documentation

2000-11-14 Thread JustinMacCarthy

Anyone got a script that looks through CF code and adds Comments to the top
of the code ,
listing which custom tags variables etc are used?

Thanks

Justin MacCarthy


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Report: Allaire Worldwide Developer Conference 2000

2000-11-13 Thread JustinMacCarthy

Hi Stephan ,
Excellent report, I missed the conf. because I was sick, thanks for getting
me up to speed,
Cheered me up no end :-) I'm off to buy some Allaire Stock

JustinMacCarthy
www.cfug.ie

 -Original Message-
 From: Stephan Tual (CFTutorials.com)
 [mailto:[EMAIL PROTECTED]]
 Sent: Monday, November 13, 2000 12:57 AM
 To: CF-Talk
 Subject: Report: Allaire Worldwide Developer Conference 2000


 I've uploaded a 7 page report that covers everything you ever wanted to
 know about the Allaire Worldwide Developer Conference 2000, from product
 announcements to fun facts.

 Learn what's behind codenames such as Pharaoh, Trinity, Neo, and Dharma.
 This is the most complete report available on the net, and it's
 accompanied
 by an exclusive product roadmap. A must read for both ColdFusion and JRun
 developers.

 You can find the report at http://www.cfvault.com/ , in the
 'articles' section.

 As usual, feedback is welcomed!

 Best Regards,


 Stephan Tual
 Editor  Webmaster

 CFVault.com
 http://www.cfvault.com
 Daily News Updates, Jobs, Forums, Articles, Interviews, Events, and
 in-depth Tutorials from the Allaire World.

 Direct Line: CFTutorials.com Ltd. +(1) 415 637 5591

 Team Allaire Member
 Allaire Certified Trainer
 Allaire Certified CF Developer

 --
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
 or send a message with 'unsubscribe' in the body to
 [EMAIL PROTECTED]




Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: cfhttp - java code to get status only

2000-11-13 Thread JustinMacCarthy


Just for fun...
Here is some java to just request the Http Status code (200 ok , 404
etc.)from a URL , it *should* be much faster than using cfhttp ... wrap it
up in a java cfx , and there you go.
Good exercise for you :-)

If you need help give me a shout and I'll get to it a some stage :-)

Justin

To run the class as is , if you have the JDK installed just run

javac Main.java

and then

java Main

From the cmd line

http://www.allaire.com is hardcorded in ...


//-- java code -
import java.net.*;
import java.io.*;

class Main {
public static void main (String[] args)
{
int responseCode;
HttpURLConnection connection;


try
{
URL url = new URL("http://www.allaire.com");
connection = (HttpURLConnection)url.openConnection();
responseCode = connection.getResponseCode();
System.out.println("Status: " + responseCode );


}
 catch (MalformedURLException e)
 {
e.printStackTrace();

}
 catch (IOException e) {
   e.printStackTrace();
}

}
}

 -Original Message-
 From: Craig Bowes [mailto:[EMAIL PROTECTED]]
 Sent: Monday, November 13, 2000 4:23 PM
 To: CF-Talk
 Subject: Re: cfhttp



 Peter,

 You do this by using cfhttp as follows:

 cfhttp url="directory/myurl.cfm" method="POST" resolveurl="false"
 /cfhttp

 cfif cfhttp.filecontent does not contain "error" and cfhttp.filecontent
 does not contain "connection"
  a href="directory/myurl.cfm"some link here/a
 /cfif

 The only problem is, for every link that needs to be checked, cfhttp will
 take a while to check the page and thus slow down YOUR page that has the
 links.  CFHTTP is kind of slow.  A better way to do this would be to
 database all your links, then create a scheduled task that checks all the
 links at once, maybe once a day or month or so,  and and alters
 the database
 as to whether or not each one has an error or connection failure.
  Then you
 run a query against this database checking the status of each
 link the last
 time it was checked and displaying it or not based on what it finds in the
 database.  If your links are already stored in a database, this
 will be easy
 because you'll just have to add another bit field and call it
 "validlink" or
 something.

 -Craig Bowes
 Coldfusion Programmer
 [EMAIL PROTECTED]
 972.243.1171

 - Original Message -
 From: "Peter Benoit" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Monday, November 13, 2000 9:52 AM
 Subject: cfhttp


  How can I use cfhttp if the page doesn't exist?
 
  I have a list of links, in case one doesn't exist anymore, I'd
 like to not
  present it.  Is cfhttp the best way to do this?
 
  Thanks,
  Pete
 
 
 --
 --
  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
  Unsubscribe:
http://www.houseoffusion.com/index.cfm?sidebar=lists or send
a message with 'unsubscribe' in the body to
[EMAIL PROTECTED]




Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a
message with 'unsubscribe' in the body to [EMAIL PROTECTED]



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Date Manipulation?

2000-11-13 Thread JustinMacCarthy

DateAdd('d',number,date)

Justin MacCarthy

 -Original Message-
 From: Willy Ray [mailto:[EMAIL PROTECTED]]
 Sent: Monday, November 13, 2000 4:34 PM
 To: CF-Talk
 Subject: Date Manipulation?
 
 
 
 Ok, I have a date.  I need to add a day, or a number of days.  
 How the devil does one do this?
 
 --
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar
 
 

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: launching executables on client machines

2000-11-09 Thread JustinMacCarthy

It's is possible to do this using Java or a ActiveX, but there are many
security concerns.

Justin MacCarthy
Irish CF Head

 
  Is there an easy way to launch an executable on the client's
 computer? What I
  want to do is have the user click on a link in their browser
 which will launch


Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: I need Help - Using an Java Application from CF page

2000-11-09 Thread JustinMacCarthy

Cfv4 + Has the CFExecute tag to run programs server side; v3.0 doesn't have
ability natively, but you can use one of Min 's  CFX tags to do the same
thing.

Check out www.intrafoundation.com/freeware.html


Justin MacCarthy

By the way Min  http://www.public.usit.net/lsellers/ is 404ing ...


 -Original Message-
 From: Marcelo Oliveira [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, November 09, 2000 2:37 PM
 To: CF-Talk
 Subject: I need Help - Using an Java Application from CF page
 Importance: High


 Hi People,

 I need to start a Java application from a CF page, but this Java code runs
 at prompt, and I don´t know how to do that !!!

 The command is like this one below:

 Java name.class param1 param2 param3

 It gets 3 parameters from CF page and return to DOS command line another
 number. This application is from a credit card company and I do not have
 permission to change it, or modify its properties.

 So, I need to send 3 parameters from a CF page to this Java
 application and
 get the result from the DOS command line and use it inside my CF page.

 Is it possible ??? Is there a special CF Tag to do it ? Is it necessary
 change any configuration of CF Server or install any package ? And is it
 possible to run any soluction using Cold Fusion 3.1 ??? My client
 has an old
 version (3.1) of Cold Fusion server and they will not update it up to this
 moment.

 If anybody has a soluction, please send an email to my personal address
 [EMAIL PROTECTED]

 Regards,
 Oliver.

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




Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



RE: Null Values

2000-11-08 Thread JustinMacCarthy

Much Better to do 

cfif Not Len(Trim(Whatever))

/cfif

Justin MacCarthy


IsNull() does not exist in Cold Fusion. It is a vbscript function.
 
 What I always do is:
 
 CFIF Whatever IS ""
   here is some stuff if whatever is null
 /CFIF
 

 



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: top 10 is not a field

2000-10-20 Thread JustinMacCarthy

TOP 10 is a MsSql server command NOT an ANSI SQL-92 Sql syntax..

Jim you should buy SQL for Smarties by Joe Clecko, it has ANSI ways of doing
this and many other tricks(trees )

EG. Get the top 3 earners

SELECT DISTINCT COUNT(*), A.salary
FROM Employees AS A, Employees AS B
WHERE (A.salary = B.Salary)
GROUP BY A.salary
HAVING COUNT(*) = 3 // change this for top n

JustinMacCarthy



- Original Message -
From: "Patricia Lee" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, October 20, 2000 1:18 PM
Subject: RE: top 10 is not a field


 Top 10 IS a SQL Command.  I copied this statemtent directly from my SQL 7
 Enterprise manager if you still don't believe:

 SELECT TOP 10 *
 FROM [dbo].[objects]

 It returns the top 10 rows, all columns.

 -Original Message-
 From: Jim Watkins [mailto:[EMAIL PROTECTED]]
 Subject: top 10 is not a field


 I noticed when I posted my question on "selecting the top ten of a list of
 counties" that 2 or 3 responded with something like: "Select top 10 * (or
 your fields)" now how would CF and Oracle respond to such a statement as
 'top ten' as it is not a SQL command (as far as I know) or even a field in
 my query?


 --
--
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
a message with 'unsubscribe' in the body to
[EMAIL PROTECTED]




Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: Need help for execute a print command thru ColdFusion

2000-10-19 Thread JustinMacCarthy

with CFEXECUTE instead of
 calling the program directly. I've run into odd syntax problems using
 CFEXECUTE in the past.

 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 voice: (202) 797-5496

Me too, you chould also try one of min's execute cfx's @
www.intrafoundation.com
I've found them better than CFEXECUTE in some cases

Justin MacCarthy



Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]



Re: Beep, Beep?

2000-10-17 Thread JustinMacCarthy

Not unless you want to use a ActiveX com or Java Applet

Justin MacCarthy

- Original Message -
From: "Michael Rosario" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, October 17, 2000 4:00 PM
Subject: Beep, Beep?


 This message is in MIME format. Since your mail reader does not understand
 this format, some or all of this message may not be legible.

 --_=_NextPart_001_01C0384B.0EA54D90
 Content-Type: text/plain;
 charset="iso-8859-1"

 Hello there!

 Is there an easy way to make a beep from Internet Explorer
 javascript?   I've already tried using an embed to put a wav file
 into the page and play it.  That works, but I've found this causes
 javaScript errors in some unknown cases.   (It may be caused by difference
 media player
 active X object)In addition, this doesn't cause a beep for people who
 don't have sound cards.   Any suggestions?   Thanks!

 /\/\ichael

 --_=_NextPart_001_01C0384B.0EA54D90
 Content-Type: text/html;
 charset="iso-8859-1"
 Content-Transfer-Encoding: quoted-printable

 !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
 HTML
 HEAD
 META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
 charset=3Diso-8859-1"
 META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
 5.5.2650.12"
 TITLEBeep, Beep?/TITLE
 /HEAD
 BODY

 PFONT SIZE=3D2Hello there!/FONT
 BRFONT SIZE=3D2nbsp;nbsp; /FONT
 BRnbsp;nbsp;nbsp;nbsp;nbsp;nbsp;nbsp; FONT SIZE=3D2Is there =
 an easy way to make a beep from Internet Explorer =
 javascript?nbsp;nbsp; I've already tried using an lt;embedgt; to =
 put a wav file /FONT/P

 PFONT SIZE=3D2into the page and play it.nbsp; That works, but I've =
 found this causes javaScript errors in some unknown cases.nbsp;nbsp; =
 (It may be caused by difference media player/FONT/P

 PFONT SIZE=3D2active X object)nbsp;nbsp;nbsp; In addition, this =
 doesn't cause a beep for people who don't have sound cards.nbsp;nbsp; =
 Any suggestions?nbsp;nbsp; Thanks!/FONT/P

 PFONT SIZE=3D2/\/\ichael/FONT
 /P

 /BODY
 /HTML
 --_=_NextPart_001_01C0384B.0EA54D90--
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CF Resources

2000-10-16 Thread JustinMacCarthy

You will find a load of stuff like this at
http://devex.allaire.com/developer/gallery/

Also there are lots of CF resources out there

www.cfadvisor.com
www.houseoffusion.com
www.defusion.com

Also check out your local CFUG
http://devex.allaire.com/developer/usergroups/

JustinMacCarthy

- Original Message -
From: "Peter Benoit" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, October 16, 2000 3:13 PM
Subject: CF Resources


 Boy what a hard time I had this weekend trying to find some resources on
 Cold Fusion.  Basically I was trying to write a few scripts, but I
couldn't
 find any decent examples online.  Much different from the PHP community
out
 there.  The examples I could find were done as CFX, which I can't use on
my
 current host.

 I just want to do some simple things right off the bat, server side
browser
 detection, sessions, etc...

 Can someone help me with this?


 -Pete

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: cfm-resources??

2000-10-13 Thread JustinMacCarthy

yes cfm-resources.com/fisrtletterofuername/username


Justin
- Original Message -
From: "HappyToad.com" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, October 12, 2000 9:12 PM
Subject: cfm-resources??


 Does anyone know the new path for users of cfm-resources.com??

 Rich
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Multiple file filters for CFDIRECTORY

2000-10-13 Thread JustinMacCarthy

No but I'm in the middle of writting a Java CFX to do this.. send me a mail
if you want to test it...


Justin MacCarthy

- Original Message -
From: "Aidan Whitehall" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, October 13, 2000 10:59 AM
Subject: Multiple file filters for CFDIRECTORY


 Is there any way doing this...

 CFDIRECTORY
ACTION="LIST"
DIRECTORY="C:\somedir\"
FILTER="*.rsp,*.req"
NAME="DirectoryListing"
SORT="DATELASTMODIFIED DESC"

 so you can get a listing of all .rsp and .req files in a directory?

 This returns no results, BTW.


 --
 Aidan Whitehall [EMAIL PROTECTED]
 Netshopper UK Ltd
 Advanced Web Solutions  Services

 http://www.netshopperuk.com/
 Telephone +44 (01744) 648650
 Fax +44 (01744) 648651
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: So, the Client isn't an issue to the CF Server?

2000-10-13 Thread JustinMacCarthy

Yeah I just figured this out too. It's weird.
As for IE4.5 on the Mac...

Justin


 This is your problem.  IE5 on a mac has a strange (extremely strange, damn
 right weird infact) behaviour on ALL form fields. It puts a line
 termination (either CR/LF or LF or CR, can't remember which) string on the
 end of the form field !  You need to Trim( ) that variable before
comparing
 it.  I don't know how this thing isn't breaking sites all over the place -
 but it certain has caused me headaches in the past.


 ---
 James Sleeman
 [EMAIL PROTECTED] (home)
 [EMAIL PROTECTED] (work)


 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: IMG SRC = Some_CFML_file.cfm Banner Exchange

2000-10-13 Thread JustinMacCarthy

Why not just do

CFSETTING ENABLECFOUTPUTONLY="Yes" SHOWDEBUGOUTPUT="No"
 CFHEADER NAME="Content-Disposition" VALUE="inline; Sample.jpg"
 CFCONTENT RESET="Yes" TYPE="image/jpeg"
file="c:\Documentsandettings\jgarza\MyDocuments\My pictures\Sample.jpg"


Justin MacCarthy


 The one where I do what you suggest (CFHEADER) does not work then it comes
 to sending the jpeg to the user:

 CFSETTING ENABLECFOUTPUTONLY="Yes" SHOWDEBUGOUTPUT="No"
 CFHEADER NAME="Content-Disposition" VALUE="inline; Sample.jpg"
 CFCONTENT RESET="Yes" TYPE="image/jpeg"
 CFFILE action="READBINARY" file="c:\Documents and settings\jgarza\My
 Documents\My pictures\Sample.jpg" variable="Image"
 cfoutput#Image#/cfoutput

 This fails in the #Image#.  Cold fusion refuses to send anything but text.
 I tried encoding in base64 to no avail.


--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: ColdFusion SP2

2000-10-12 Thread JustinMacCarthy

I should also add DirectoryExists and UNC paths issues . Dosen't seem to
work . Is this a confirmed bug also?

Where can I get a list of confirm bugs?

Justin MacCarthy


 Issues with cfcontent over UNC paths. Is this a confirmed Allaire Bug ??

 Also

 Using cfwddx :
 Some sort of error returned, gracefully,  if a wddx packet is not valid
 would be nice.

 Justin MacCarthy

 - Original Message -
 From: "Damon Cooper" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Sent: Wednesday, September 27, 2000 3:12 PM
 Subject: RE: ColdFusion SP2



 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.




--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Source Control for Linux

2000-10-12 Thread JustinMacCarthy

Yes there are many but not CF based
CVS is one such system.

Justin

- Original Message -
From: "William J Wheatley" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, October 12, 2000 12:53 PM
Subject: Source Control for Linux


 Does anyone use a system of source control for linux?
 I am going to write one if nobody else has a method they use for version
 control

 Thanks!


 Bill Wheatley
 Director of Development
 AEPS INC
 Allaire ColdFusion Consulting Partner
 www.aeps.com
 www.aeps2000.com
 954-472-6684 X303
 ICQ: 417645



 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: source code

2000-10-12 Thread JustinMacCarthy

That will work with Cfm files too.

Justin

- Original Message -
From: "Gavin Myers" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, October 12, 2000 2:54 PM
Subject: source code



http://www.mydomain.com/null.htw?CiWebHitsFile=/pagenamehere.asp%20CiRestri
 ction=noneCiHiliteType=Full#CiTag0

 allowes you to view asp pages (you all probally know this, its been out
for
 awhile).

 Is there any current trick that allows people to view cfm files? I
couldn't
 find anything on the allaire site, either old bugs or new ones?

 thanks,
 Gavin

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Allaire trips over itself - flame warning

2000-10-12 Thread JustinMacCarthy

I agree. MS's site was bad but now it's pretty good.
Allaire site is awful to find anything, even when you know what you are
looking for!!!  I always end up "listing all"  when looking for stuff.

Justin



  I've complained before, to no effect. Does anyone have the *correct*
links
  to the performance tuning papers?

 No. They're almost as bad as Microsoft's site aren't they? Actually
they're
 even worse now that I think about it. Frustrating to find anything.
 --min

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Passing parameters to a COM object

2000-10-11 Thread JustinMacCarthy

Check out this great site for com  CF

http://www.cfm-resources.com/c/comet/

Justin

- Original Message -
From: "Sree@bigbuzz" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, October 11, 2000 5:01 PM
Subject: Passing parameters to a COM object


 How do i  pass parameters to a COM object

 Thanks
 Sree

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Using IIS to append text or HTML to a static page.

2000-10-10 Thread JustinMacCarthy

I think You would need to write an ISAPI filter.
http://www.15seconds.com/focus/ISAPI.htm

Justin MacCarthy

- Original Message -
From: "Timothy C. Hill" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, October 10, 2000 5:26 PM
Subject: OT: Using IIS to append text or HTML to a static page.


 Sorry for the off topic post, but I am pulling out my hair and figured
 someone here knew how to do this.

 I am putting up a free hosting service and I want to include banners on
each
 page that is served from the free sites. I know I can use IIS to add a
 footer, but I want to add a banner to the top of the page. Does anyone out
 there have a way to do this?

 thanks,

 Tim Hill

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFX-Image

2000-10-10 Thread JustinMacCarthy

Grab the zip from here (mins site)
http://www.intrafoundation.com/3rdparty/CFX_Image.zip

There is a set of egs + readme with it...

Justin


- Original Message -
From: "Kevin Schmidt" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, October 10, 2000 7:06 PM
Subject: CFX-Image


 Where is the best site to get this from...documentation???

 Thanks,

 Kevin Schmidt
 Internet Services Director
 PWB Integrated Marketing and Communications
 Office: 734.995.5000
 Mobile: 734.649.4843



 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Sending page break to Excel in a csv

2000-10-09 Thread JustinMacCarthy

Have a look here , you might find something

http://www.sector13.org/jason/xls/

Justin
- Original Message -
From: "Stephen Collins" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Cc: "CF-Aussie (E-mail)" [EMAIL PROTECTED]
Sent: Monday, October 09, 2000 11:15 AM
Subject: Sending page break to Excel in a csv


 Can anybody enlighten me as to how I might do this?  I try sending
chr(12),
 but it doesn't work.

 Steve
  
 | Stephen Collins|
 | Consultant - Australian Corporate Information Solutions|
 |GPO Box 2962 CANBERRA ACT 2601 Australia|
 | Ph +61 2 62822662 Fax +61 2 62824328 Cel +61 410 680722|
 |  [EMAIL PROTECTED] [EMAIL PROTECTED]  |
 | http://www.acis.com.au |
 |~~~oOo~~|
 |   Before I got into triathlon, I was a normal person.  |
 ||


 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Java Books

2000-10-09 Thread JustinMacCarthy

There are 2 Great Java books for beginners by Wrox

Beginning Java 2
And
Professional Java Server Programming

Also check out java.sun.com for lots of code ,example  help.

Justin MacCarthy


- Original Message -
From: "Lee Surma" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, October 09, 2000 5:43 PM
Subject: OT: Java Books


 I want to start playing around with Java but I'm only really interested in
Web/database applications. Should I start out with a JSP book or should I be
looking for a beginner Java book? Which books do you recommend?
 --

 _
 Lee Surma
 Public Radio International
 [EMAIL PROTECTED]
 612-330-9223
 _

 --

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



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: robots.txt

2000-10-09 Thread JustinMacCarthy

The robot.txt is a file to control how a web spider , goes though your site
. Not all spiders respect this file.

Try

http://info.webcrawler.com/mak/projects/robots/norobots.html


Justin
- Original Message -
From: "Chad Gray" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, October 09, 2000 6:24 PM
Subject: OT: robots.txt


 Anyone know what robots.txt is?

 thanks
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: [padding string with blanks]

2000-10-09 Thread JustinMacCarthy

look at the following functions

CJustify, LJustify, ,RJustify and RepeatString

Justin

string- Original Message -
From: [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, October 09, 2000 6:42 PM
Subject: Re: [padding string with blanks]


 here is a perl example you might be able to change  to CF.

 #pad with leading spaces
 while (length($FullTrackNo)  18){
   $FullTrackNo=" " . $FullTrackNo;
 }

 "Adrian Cesana" [EMAIL PROTECTED] wrote:
 I need to pass a string to a bar-coding process and it must have a fixed
 length of 18, so if the string length is 10 I need to pad 8 blanks in
front
 of it.  Ive been playing with the below code. I know it doesn't work but
its
 a start, what happens is the value of blanks get appended to the string
 rather than appending actual blanks.  Any idea on how to get the blanks in
 there or a better method?


 cfif len(left(FullTrackNo,18)) LT 18
 cfset blanks = 18 - len(left(FullTrackNo,18))
 cfset TrackNo = '#insert(left(FullTrackNo,18), blanks, 0)#'
 cfelse
 cfset TrackNo = 'left(FullTrackNo,18)'
 /cfif


 Here is my padded string for the BarCode #TrackNo#

 Thanks, Adrian

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the
 body.


 
 Get free email and a permanent address at http://www.netaddress.com/?N=1
 --

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



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Fw: CF Script

2000-10-06 Thread JustinMacCarthy

 what is a good referance to learn CF_Script?
 What URL's do you have?

CfScript is a hack of Javascript, There is not much to it. All the CF
functions work the same. It's only really the control structures that are
different.
So if you know JavaScript you will know CFScript (with a few exceptions)

 what are its benifits?

It is faster and easy to read in some cases

Justin MacCarthy

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: How to call an .EXE from web page

2000-10-06 Thread JustinMacCarthy

cfexecute  in  CF4 +

otherwise look at
www.intrafoundation.com  for cfx_consolecommand , cfx_spawn etc...

Justin

- Original Message -
From: "Paul Sizemore" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, October 06, 2000 3:11 PM
Subject: OT: How to call an .EXE from web page



 Has anyone called a Win .EXE file from a html page?

 On our intranet, we want to recreate a VB navigational menu system that
 calls other VB applications (the VB applications reside on a drive that
has
 been mapped on our end users computers). How can I do this?
 Paul Sizemore
 --
--
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: How to call an .EXE from web page

2000-10-06 Thread JustinMacCarthy

Oh Sorry ! No you can oly do this using a Java Applet or ActiveX control

Justin

- Original Message -
From: "Paul Sizemore" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, October 06, 2000 3:53 PM
Subject: RE: How to call an .EXE from web page


 Doesn't CFExecute execute a on the server? And, it looks like the others
do
 as well (but, Intra tools looks to have great products).

 I need to run a VB app on the end user's machine. (Like CF 
C:\Windows\
 Calc.exe)


 -Original Message-
 From: JustinMacCarthy [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 06, 2000 9:20 AM
 To: CF-Talk
 Subject: Re: How to call an .EXE from web page

 cfexecute  in  CF4 +

 otherwise look at
 www.intrafoundation.com  for cfx_consolecommand , cfx_spawn etc...

 Justin

 - Original Message -
 From: "Paul Sizemore" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Friday, October 06, 2000 3:11 PM
 Subject: OT: How to call an .EXE from web page


 
  Has anyone called a Win .EXE file from a html page?
 
  On our intranet, we want to recreate a VB navigational menu system that
  calls other VB applications (the VB applications reside on a drive that
 has
  been mapped on our end users computers). How can I do this?
  Paul Sizemore

 --
 --
  --
  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
  To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
or
  send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
  the body.

 --
 
  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
  To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 
 

 --
--
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Oracle Cold Fusion $1 million dollars

2000-10-06 Thread JustinMacCarthy


 Can anybody comment on MySQL speeds compared to SQL Server and Oracle?

You can't really compare this products. MySql is very fast but at a cost of
functionality and flexiblity. It has not stored Procedure or SubQuery
support.

Justin

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: How to call an .EXE from web page

2000-10-06 Thread JustinMacCarthy

There is quiet a bit to this. You need to create a signed applet to access
the local system.

How is the app to be launched??? Is there to be a button on the applet?

Have you got java developers???

Justin

- Original Message -
From: "Paul Sizemore" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, October 06, 2000 5:15 PM
Subject: RE: How to call an .EXE from web page


 Any leads on an Applet or Active X to do this - it is "planned" to be one
of
 the big hits of our implimentation.

 -Original Message-
 From: JustinMacCarthy [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 06, 2000 10:24 AM
 To: CF-Talk
 Subject: Re: How to call an .EXE from web page

 Oh Sorry ! No you can oly do this using a Java Applet or ActiveX control

 Justin

 - Original Message -
 From: "Paul Sizemore" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Friday, October 06, 2000 3:53 PM
 Subject: RE: How to call an .EXE from web page


  Doesn't CFExecute execute a on the server? And, it looks like the others
 do
  as well (but, Intra tools looks to have great products).
 
  I need to run a VB app on the end user's machine. (Like CF 
 C:\Windows\
  Calc.exe)
 
 
  -Original Message-
  From: JustinMacCarthy [mailto:[EMAIL PROTECTED]]
  Sent: Friday, October 06, 2000 9:20 AM
  To: CF-Talk
  Subject: Re: How to call an .EXE from web page
 
  cfexecute  in  CF4 +
 
  otherwise look at
  www.intrafoundation.com  for cfx_consolecommand , cfx_spawn etc...
 
  Justin
 
  - Original Message -
  From: "Paul Sizemore" [EMAIL PROTECTED]
  To: "CF-Talk" [EMAIL PROTECTED]
  Sent: Friday, October 06, 2000 3:11 PM
  Subject: OT: How to call an .EXE from web page
 
 
  
   Has anyone called a Win .EXE file from a html page?
  
   On our intranet, we want to recreate a VB navigational menu system
that
   calls other VB applications (the VB applications reside on a drive
that
  has
   been mapped on our end users computers). How can I do this?
   Paul Sizemore
 

 --

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: HTML Email Tracking

2000-10-05 Thread JustinMacCarthy

link to it like : img src=getimage.cfm 


in getimage.cfm

-
code to update counter
cfcontent file="image.gif" cfcontent type="image/gif"


Main thing to use is cfcontent 
HTH

Justin




- Original Message -
From: "Sean Daniels" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, October 05, 2000 5:28 PM
Subject: HTML Email Tracking


 I feel like I've seen this done before, but I can't for the life of me
 figure out how to get it to work.

 What I have is a marketing email that is going out HTML formatted. I want
to
 include in it a reference to an image file. I've heard that some people
have
 successfully referenced a CFM file in the src of the image that would
allow
 you to have some code executed each time the image was grabbed. Then you
use
 cfcontent maybe to push out an actual image.

 Anyone got some code that shows how this is actually done? I've tried
just:

 img src="thefile.cfm" height=1 width=1 border=0

 The code in thefile.cfm doesn't get run though. All it does by the way is
 increment a counter in a db table.

 TIA

 - Sean

 ~~
   Sean Daniels
   Manager, Engineering
   (T): 207.439.6030
   (C): 978.764.0799
 ~~
   http://www.dealforce.com
   http://www.mergernetwork.com



 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Recommend CF-based threaded discussion sw?

2000-10-05 Thread JustinMacCarthy

Try fusetalk.com

Justin
- Original Message -
From: "Joe Tartaglia" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, October 05, 2000 5:43 PM
Subject: Recommend CF-based threaded discussion sw?



 Could anyone recommend a CF-based threaded discussion
 list application and/or a chat application?  If source
 code was available, that would be great but not an
 absolute requirement.

 Thanks
 Joe

 -=0=-

 http://www.HillarysEyes.com
 "Beware the eyes of March..."

 -=0=-
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Netscape? Code Included

2000-10-05 Thread JustinMacCarthy

Your are missing some tr 's , around City
Try using validate Document in CFStudio (Shift + F6)

Justin

- Original Message -
From: "HappyToad.com" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, October 05, 2000 5:55 PM
Subject: RE: Netscape? Code Included


 OK This form works fine in IE 5.5 but gets cut off right below h3 in
 Netscape:

   HTML
  HEAD
  cfquery name="get_states" datasource="ibtoad"
  SELECT state_ab FROM states
  /cfquery
  cfquery name="get_countries" datasource="ibtoad"
  SELECT country_name FROM countries
  ORDER by country_name
  /cfquery
   TITLEStore Registration/TITLE
   /HEAD
   BODY
 H1 align="center"Store Registration/H1
 !---Registration Form---
  p align="center"bTo start shopping please register below:/b
 CFFORM ACTION="registration_action.cfm?#client.urltoken#" METHOD="post"
 table align="center"
 tr
 tdbUser ID:/b/td
 tdCFINPUT TYPE="text" NAME="user_id" Required="yes"/td
 /tr
 tr
 tdbPassword:/b/td
 tdCFINPUT TYPE="password" NAME="password" Required="yes"/td
 /tr
 tr
 tdbEmail Address:/b/td
 tdCFINPUT TYPE="text" NAME="email_address" Required="yes"/td
 /tr
 tr
 tdbFirst Name:/b/td
 tdCFINPUT TYPE="text" NAME="first_name" Required="yes"/td
 /tr
 tr
 tdbLast Name:/b/td
 tdCFINPUT TYPE="text" NAME="last_name" Required="yes"/td
 /tr
 tr
 td bAddress:/b/td
 tdCFINPUT TYPE="text" NAME="street_address" Required="yes"/td
 /tr
 td bCity:/b/td
 tdCFINPUT TYPE="text" NAME="city" Required="yes"/td
 /tr
 tr
 td bState:/b/td
 tdselect name="state"
 cfoutput query="get_states"
 option
value="#state_ab#"#state_ab#/option/cfoutput/selectbr/td
 /tr
 tr
 tdbZip Code:/b/td
 tdCFINPUT TYPE="text" NAME="zip" size="5" Validate="zipcode"
 Message="Please enter a valid Zip Code."/td
 /tr
 tr
 tdbCountry:/b/td
 tdselect name="country"
 cfoutput query="get_countries"
 option
 value="#country_name#"#country_name#/option/cfoutput/select/td
 /tr
 tr
 td INPUT TYPE="submit" Value="Register"/td
 /tr
 /CFFORM

 /BODY
 /HTML

 -Original Message-
 From: Gavin Myers [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, October 05, 2000 12:02 PM
 To: CF-Talk
 Subject: RE: Netscape?


 can you copy/paste the source? that may make it easier to find a problem

 -Original Message-
 From: HappyToad.com [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, October 05, 2000 9:21 AM
 To: CF-Talk
 Subject: RE: Netscape?


 OK explain this. The form works when I use it as a CFINCLUDE but not on
its
 own.  I can't figure it out.
 Rich

 -Original Message-
 From: James Taavon [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, October 05, 2000 10:08 AM
 To: CF-Talk
 Subject: Re: Netscape?


 This is a multi-part message in MIME format.
 --9F438ACC8159EB2C0B77E0AA
 Content-Type: text/plain; charset=us-ascii
 Content-Transfer-Encoding: 7bit

 It must be your code.

 I got cfform running using both IE and Netscape.

 "HappyToad.com" wrote:
 
  Is there something wrong with my code or does Netscape not recognise
  CFFORM?
 
  Rich
 --9F438ACC8159EB2C0B77E0AA
 Content-Type: text/x-vcard; charset=us-ascii;
  name="jtaavon.vcf"
 Content-Transfer-Encoding: 7bit
 Content-Description: Card for James Taavon
 Content-Disposition: attachment;
  filename="jtaavon.vcf"

 begin:vcard
 n:Taavon;James
 tel;cell:(443) 506-2117
 tel;fax:(410) 333-5203
 tel;work:(410) 767-3415
 x-mozilla-html:FALSE
 org:Department of Labor, Licensing and Regulation;Office of Information
and
 Technology
 version:2.1
 email;internet:[EMAIL PROTECTED]
 title:Senior Web Developer
 adr;quoted-printable:;;1100 N. Eutaw Street,=0D=0ARoom
 203;Baltimore;MD;21201;
 fn:James Taavon
 end:vcard

 --9F438ACC8159EB2C0B77E0AA--

 --
--
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.

 --
--
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.
 --
--
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.




Re: Statistical Analyses

2000-10-05 Thread JustinMacCarthy

Min's homepage :  www.intrafoundation.com
but you would be better off using some OLAP , or Data mining tools to do
generate reports..

Justin

- Original Message -
From: "Karl Simanonok" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, October 05, 2000 5:50 PM
Subject: RE: Statistical Analyses


 "min"?

 Original message:
 ===
 Date: Wed, 04 Oct 2000 10:42:26 -0700
 From: Cary Gordon [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Re: Statistical Analyses
 Message-ID: [EMAIL PROTECTED]

 Hi Karl,

 I think that that a Java CFX might be an interesting way to go, but,
 unless
 you need platform independence, I would probably go for C++.  I'll bet
 that
 you can find algorithms and probably some raw code online.  You might
 try
 some of the component companies as well.

 If all else fails, you could probably get min to write it for you.

 Cary


 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: How to view textfiles

2000-10-05 Thread JustinMacCarthy

Look at the cfdirectory and cffile tags

Justin

- Original Message -
From: "monika kon" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, October 05, 2000 6:04 PM
Subject: How to view textfiles


 Hello everyone,
 I have text files present in the directory.I have a
 form which has a textfield and a submit button labeled
 as "view".
 I want if any one types the name of the textfield and
 presses "view" button then should be able to view the
 contents of the text file as well able to save it.
 Please help.
 Thanks in advance
 Shally


 __
 Do You Yahoo!?
 Yahoo! Photos - 35mm Quality Prints, Now Get 15 Free!
 http://photos.yahoo.com/
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Recommend CF-based threaded discussion sw?

2000-10-05 Thread JustinMacCarthy



 Isn't "Allaire Forums" Free now?

 Shawnea

yes (www.forumspot.com ) free and awful..

 ~Justin

 -Original Message-
 From: Joe Tartaglia [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, October 05, 2000 12:43 PM
 To: CF-Talk
 Subject: Recommend CF-based threaded discussion sw?



 Could anyone recommend a CF-based threaded discussion
 list application and/or a chat application?  If source
 code was available, that would be great but not an
 absolute requirement.

 Thanks
 Joe

 -=0=-

 http://www.HillarysEyes.com
 "Beware the eyes of March..."

 -=0=-
 --
--
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Report generation in Unix (Solaris)

2000-10-04 Thread JustinMacCarthy

You might try the cf-linux list , it's low noise / high signal

Sign up at houseOfFusion.com

Justin

- Original Message -
From: "Larry W. Virden" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, October 03, 2000 6:22 PM
Subject: Report generation in Unix (Solaris)


 What are the Unix/Solaris ColdFusion developers on this list using
 for report generation?


 --
 Never apply a Star Trek solution to a Babylon 5 problem.
 Larry W. Virden mailto:[EMAIL PROTECTED] URL:
http://www.purl.org/NET/lvirden/
 Even if explicitly stated to the contrary, nothing in this posting should
 be construed as representing my employer's opinions.
 --
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: CFPOP Experts????

2000-10-04 Thread JustinMacCarthy

What version of CF?
~J

- Original Message -
From: "Randy Adkins" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, October 04, 2000 1:13 PM
Subject: CFPOP Experts


 I am having problems with CFPOP.

 I am attempting to POP the server and get a message. (See bottom for code)
 However I get the following error:

 Error Diagnostic Information
 unknown exception condition
 CFMLInterpreterImp::executePCode
 Date/Time: 10/03/00 13:40:49
 Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)


 *** IP has been masked for this email ***
 cfpop action="GETALL" name="support_headers" messagenumber="1"
 server="999.999.999.999" username="myname" password="mypass"

 cfif support_headers.recordcount is 0NONE/cfif
 cfoutput query="support_headers"
 #support_headers.from#br
 /cfoutput

 Thanks for any assistance you can give.

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Image Processing Tag.

2000-10-04 Thread JustinMacCarthy

Min has the dll on his site , but it's by Jukka Manner.

go to
http://www.intrafoundation.com/cf.html

or directly

http://www.intrafoundation.com/3rdparty/CFX_Image.zip

it comes with lot of examples for thumbnailing , resizing etc

JustinMacCarthy


- Original Message -
From: "Nadir Ait-Laoussine" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, October 04, 2000 2:58 PM
Subject: Image Processing Tag.


 This message is in MIME format. Since your mail reader does not understand
 this format, some or all of this message may not be legible.

 --_=_NextPart_001_01C02E0B.227E1164
 Content-Type: text/plain;
 charset="iso-8859-1"

 Hello all,

 CFX_GIFGD used to work quite well, but does not support any of the latest
 JPG formats.  I've heard of a CFX_IMAGE tag... but I can't seem to find a
 valid link to it.  Does anyone know where I can find that tag, or another
 Image Processing Tag?

 Thanks

 Nadir



 --_=_NextPart_001_01C02E0B.227E1164
 Content-Type: text/html;
 charset="iso-8859-1"

 !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
 HTMLHEAD
 META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"


 META content="MSHTML 5.50.4134.600" name=GENERATOR/HEAD
 BODY
 DIVSPAN class=940385513-04102000FONT face=Arial size=2Hello
 all,/FONT/SPAN/DIV
 DIVSPAN class=940385513-04102000FONT face=Arial
 size=2/FONT/SPANnbsp;/DIV
 DIVSPAN class=940385513-04102000FONT face=Arial size=2CFX_GIFGD used
to
 work quite well, but does not support any of the latest JPG formats.nbsp;
I've
 heard of a CFX_IMAGE tag... but I can't seem to find a valid link to
it.nbsp;
 Does anyone know where I can find that tag, or another Image Processing
 Tag?/FONT/SPAN/DIV
 DIVSPAN class=940385513-04102000FONT face=Arial
 size=2/FONT/SPANnbsp;/DIV
 DIVSPAN class=940385513-04102000FONT face=Arial
 size=2Thanks/FONT/SPAN/DIV
 DIVSPAN class=940385513-04102000FONT face=Arial
 size=2/FONT/SPANnbsp;/DIV
 DIVSPAN class=940385513-04102000FONT face=Arial
 size=2Nadir/FONT/SPAN/DIV
 DIVSPAN class=940385513-04102000FONT face=Arial
 size=2/FONT/SPANnbsp;/DIV
 DIVFONT face=Arial size=2/FONTnbsp;/DIV/BODY/HTML

 --_=_NextPart_001_01C02E0B.227E1164--
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Anyone know how to use CFPOP?

2000-10-04 Thread JustinMacCarthy

From the
ColdFusion 4.0 Release Notes
Updated October 5, 1998

a.. CFPOP throws an error when reading email messages that have a certain
date/time convention. This appears to be related to messages from Netscape's
InboxDirect or some other email that uses MDT instead of GMT. The error
message is (1858):

Error Occurred While Processing Request
Error Diagnostic Information
An error has occurred while processing the expression:
DateFormat(ParseDateTime(Mail.Date,"POP"),"ddd, d mmm ")
b.. CFPOP crashes when retrieving messages with action="GetAll" that contain
Content-Type: multipart/mixed or multipart/related. (6235)
c.. CFPOP doesn't recognize 8-bit attachment headers encoded by MIME. (6880)
d.. If an attachment's name is base64 encoded, CFPOP can not retrieve the
message, it times out. CPU usage pegs to 100%, and the memory use climbs.
After it times out not all memory is released. (7233)


Justin MacCarthy

- Original Message -
From: "Randy Adkins" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, October 04, 2000 4:25 PM
Subject: Anyone know how to use CFPOP?


 Cold Fusion Server version 4.01
 Cold Fusion Studio version 4.0



 I am having problems with CFPOP.

 I am attempting to POP the server and get a message. (See bottom for code)
 However I get the following error:

 Error Diagnostic Information
 unknown exception condition
 CFMLInterpreterImp::executePCode
 Date/Time: 10/03/00 13:40:49
 Browser: Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0)


 *** IP has been masked for this email ***
 cfpop action="GETALL" name="support_headers" messagenumber="1"
 server="999.999.999.999" username="myname" password="mypass"

 cfif support_headers.recordcount is 0NONE/cfif
 cfoutput query="support_headers"
 #support_headers.from#br
 /cfoutput

 Thanks for any assistance you can give.

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Reliability of CFSCHEDULE in CF 4.5.1

2000-10-04 Thread JustinMacCarthy

Howie and the guys @ www.coolfusion.com have built a program called cftimer
, which allow you to run CF templates without using IIS so no timeouts  and
lots of other cool stuff

The times etc are stored in an odbc DB

I'm not sure of the cost , but it's not much.
Ask Howie about it  he is on this list .

Justin


- Original Message -
From: "Aidan Whitehall" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, October 04, 2000 4:47 PM
Subject: RE: Reliability of CFSCHEDULE in CF 4.5.1


  Is CFSCHEDULE any more reliable in v4.5.1 than in past
  releases?  I've never
  trusted it, always using Windows AT to run batch files
  launching templates.

 I'm really struggling with the scheduler at the moment... nuthin' seems to
 work (haven't tried setting up events using the CFSCHEDULE tag, though).

 I took a quick look at help on the AT command the other day and wondered
 where the hell to start. Do you have a sample batch file you could send me
 to show how to set an AT job up?


 On another note...
 Smeone posted a message a couple of months ago on how to set up a
scheduled
 event so that it always worked... quite a detailed procedure. Does anyone
 have a copy of that e-mail, or is the original poster listening?



 Thanks

 --
 Aidan Whitehall [EMAIL PROTECTED]
 Netshopper UK Ltd
 Advanced Web Solutions  Services

 http://www.netshopperuk.com/
 Telephone +44 (01744) 648650
 Fax +44 (01744) 648651
 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: autoresize custom tag

2000-10-04 Thread JustinMacCarthy

There is an app called Dependancy Walker (Visual Studio) , which very handy
for checking what DLL etc a dll needs

Justin MacCarthy


 forum and found that the error might be that my system needs a necessary
 .dll file. I tried using the custom tag cfx_gfgd and it worked fine for
 resizing. In the release notes cfx_gfgd says you need mfc40(d).dll (or
 newer) for the tag to work. And my systems has

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Encryption in CF

2000-10-04 Thread JustinMacCarthy

 
 How safe is the encryption in CF. 

What do you mean?

 Are there ways to unecrypt encrypted =
 CF files? Known exploits?

Yes, it's  very easy. There are programs to do this.

Justin 

--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Statistical Analyses

2000-10-04 Thread JustinMacCarthy

There is a cfx , which has a lot of extra math functions

http://devex.allaire.com/developer/gallery/info.cfm?ID=CA347518-2830-11D4-AA
9700508B94F380method=Full

that Tom wrote maybe that would be some help ?

Otherwise http://www.netlib.org is a good place to get LIB's  or check out
http://www.maths.uq.edu.au/~gks/webguide/source.html



Justin

- Original Message -
From: "Karl Simanonok" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Wednesday, October 04, 2000 6:02 PM
Subject: Statistical Analyses


 I would like to be able to perform statistical analyses (T-tests,
 Wilcoxon signed-rank tests, chi-square, linear regression, etc.) on data
 sets stored in databases (SQL Server 7 or Access).  There don't seem to
 be any custom tags at Allaire for the purpose.  Can anyone point me to
 custom tags or even pseudocode algorithms for doing statistics?

 In some discussion with local CF developers, we have considered what
 would be the optimal approach for doing statistical computing.  The
 consensus seems to be that Javascript is too slow, lacks many useful
 math functions, and would in some cases require a lot of data to be
 transferred for client-side processing.  ColdFusion offers the advantage
 of server-side processing of data and just delivering the results to the
 user, but might also be rather inefficient.  A compiled CFX would
 probably be an improvement, but requires the intervention of a whole
 lower-level programming environment.  I'm thinking that stored
 procedures might work well in SQL Server, but not everyone thinks so,
 citing lack of many math functions.  Some think that server-side Java is
 the way to go.  What do you people think?

 Regards,

 Karl Simanonok

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Sharing sessions between CFM ASP

2000-10-03 Thread JustinMacCarthy

Yeah , use client vars stored in a DB . and pass urltoken to each page..

Justin

- Original Message -
From: "Geoffrey V. Brown" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, October 02, 2000 11:06 PM
Subject: RE: Sharing sessions between CFM  ASP



 How about cookies, this would even be workable in the situation?

  -Original Message-
  From: Billy Cravens [mailto:[EMAIL PROTECTED]]
  Sent: Monday, October 02, 2000 3:31 PM
  To: CF-Talk
  Subject: Re: Sharing sessions between CFM  ASP
 
 
  Not really possible.  You can however, send a variable between pages
  (links, cfhttp, etc.) and convert the variable (form, url) into that
  application server's session variables.  It works just like passing
  session variables between 2 ColdFusion servers.
 
  --
  Billy Cravens
  [EMAIL PROTECTED]
 
 
 
  "Geoffrey V. Brown" wrote:
  
   Hi,
   I have a session var that needs to be shared between a CFM
  script and an ASP
   script on the same server (same domain, etc).
  
   Is this possible?  How?
  
   - Geoff B
  
  
  --
  
   Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
   To Unsubscribe visit
  http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf
 _talk or send a message to [EMAIL PROTECTED] with
 'unsubscribe' in the body.
 --
--
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
 http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
 send a message to [EMAIL PROTECTED] with 'unsubscribe' in
 the body.


 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: UNC Paths...

2000-10-03 Thread JustinMacCarthy

Yes you need to RUN cfserver under a user account and share the path with
that user

Check out :
http://www.cffaq.org/cfserveruseraccount.cfm

~Justin


- Original Message -
From: "Neil H." [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Monday, October 02, 2000 8:49 PM
Subject: UNC Paths...


 Is there anyway anyone know how to browse files and folders via UNC paths?

 Thanks,

 Neil


 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: validating an image

2000-10-03 Thread JustinMacCarthy

Use accept on the cffile tag with a value of image/*
See the Docs -  cffile -upload  for example...

~Justin

- Original Message -
From: "sebastian palmigiani" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, October 03, 2000 3:16 PM
Subject: validating an image



 I am using cffile to upload a photo. Before submitting I want to
validate
 that the user has  chosen a photo to upload and not something else. I know
I
 can check for the presence of .jpg or .gif in the file name but is there a
 way to validate that it is actually a photo?

 Sebastian

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: Eliminate duplicates??

2000-10-03 Thread JustinMacCarthy

Select Distinct OrderID FROM Table


Justin

- Original Message -
From: "HappyToad.com" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Tuesday, October 03, 2000 3:46 PM
Subject: Eliminate duplicates??


 Question:
 I have built a store app and orders are stored with each product ordered
 being assigned its own table row but sharing the unique order id.  How can
I
 have a query that will display the order ids without duplicates?  Is there
a
 way to eliminate duplicates without limiting the output rows?

 Thanks,
 Rich

 --

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or
send a message to [EMAIL PROTECTED] with 'unsubscribe' in
the body.



--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



<    1   2   3   4   >