install Error

2003-04-03 Thread Justin MacCarthy
Hi,
Mate of mine getting this error installing CFMX onto NT4. Anyone seen it
b4?

Error Occurred While Processing Request
Unable to load library

The Error Occurred in C:\CFusionMX\wwwroot\CFIDE\administrator\login.cfm:
line 26

Called from C:\CFusionMX\wwwroot\CFIDE\administrator\login.cfm: line 146
Called from C:\CFusionMX\wwwroot\CFIDE\administrator\Application.cfm: line
272

24 : [EMAIL PROTECTED];9€v¶qNòxÏ®a€
ù1¡D;?X9CE
25 :
¸£whp€Ê—@:üWÀ§¦dM€I<Üc`#ZË9½ÔiÝÂ?õ¦_ˆ÷‹M¶¥ÿ½»ÔèÍ?Ø,kS¢™7ÃWžj^õ*üùL
´mã^
£Òb¦ÌÁæÙΰշ£²
“=Éå8Ò¼æQ»?•2¨Y9PÄQˆ¦xö)[EMAIL PROTECTED]/
©ß©:INÈñ¯jòCŠí®å[š®ð6“|8

thanks WG

~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
This list and all House of Fusion resources hosted by CFHosting.com. The place for 
dependable ColdFusion Hosting.

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



generating cfstoredproc from a stored Procs

2003-03-19 Thread Justin MacCarthy
Has anyone got a script for generating the cf code http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm

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



RE: Automated RDS file copy over SSL i.e. secure backup

2003-01-07 Thread Justin MacCarthy
how about this

Use rsync, tcpwrappers, and ssh.
Easy to automatic (command line)

This will give you, a very fast (rsnyc will only transfer the bits u need)
secure (ssh) , portable (linux/windows everything)  and free

All opensource...



> -Original Message-
> From: Mark W. Breneman [mailto:[EMAIL PROTECTED]]
> Sent: 07 January 2003 16:09
> To: CF-Talk
> Subject: Automated RDS file copy over SSL i.e. secure backup
>
>
> I know that RDS was never made for this but, I am looking for a way to
> securely copy down a database backup from a CF server.  I can
> browse to the
> file via RDS on a SSL connection and copy/paste the file but, I am hoping
> for some way to automate it, something like a command prompt or
> CFRDS tags.
>
> Anyone see anything like this?
>
> Mark W. Breneman
> -Macromedia Certified ColdFusion Developer
> -Network / Web Server Administrator
>   Vivid Media
>   [EMAIL PROTECTED]
>   www.vividmedia.com
>   608.270.9770
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



Command line

2002-12-16 Thread Justin MacCarthy
Hi,

What is the syntax to run a cfm template from the command line in CF MX?
I want to generate Static HTML docs from my cfcs (via util.cfcToHTML) and
cfm (using UDF Doc).

WG




RE: RegEx Question

2002-11-26 Thread Justin MacCarthy
I'll explain why this doesn't work.

"[*]"

This replaces "" followed by anything followed by .
The problem is that Regexs are "greedy" so this replaces  followed
by anything _including_ ""

What you want is to replace  followed by anything UNTIL .
So you need to do something like

"[^()]"  - (pseudocode...)


Justin

> -Original Message-
> From: Duane Boudreau [mailto:[EMAIL PROTECTED]]
> Sent: 26 November 2002 17:37
> To: CF-Talk
> Subject: RegEx Question
>
>
> I'm not sure why I can not get this to work. What am I doing wrong?
>
> I want to replace *
>
> TIA,
> Duane
>
>
> 
> 
> [*]",
> "#myStr2#")>
>
>
> 
~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: 
http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forumid=4
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



CSVtoQuery problem

2002-11-19 Thread Justin MacCarthy
Have you got cflock s around the cfx?

Justin

> Date: Tue, 19 Nov 2002 18:28:25 +1100
> >From: "Michael Kear" <[EMAIL PROTECTED]>
> Subject: Anyone have any ideas why this happens?  CSVtoQuery problem
> Message-ID: <[EMAIL PROTECTED]>
>
> Does anyone else have any idea why my CSVtoQuery tag might be crashing the
> CF Server?
>
>
> OR even if it's the custom tag that's causing the problem?
>
> To recap  Here's the story so far 
>
>
> I installed Nate Weiss's CSVtoQuery custom tag on my staging
> server and used
> it successfully for a couple of weeks.
> I deployed the application and installed the tag on the production server,
> where it worked happily for two weeks.
> When next the Sysadmin booted the server, last Friday, the CF
> server refused
> to work.  Every time anyone called a .cfm page, it called for a NT
> authorisation.(So far as we know, no one has changed any folder
> structure or permissions structure on the NT)
>
> When we changed the name of the custom tag to something else, the Cfserver
> worked ok again (except for that app of course)
>
>
> The tag is called once a day in a scheduled task at 7am.  The
> system reboot
> was at 3am and CF crashed from that moment.
>
>
>
> So what I'm wondering is 
>
> Is Nate's tag buggy?
>
> Why would it work ok for a couple of weeks, then only crash when the
> NTServer is rebooted?
>
> I'm not sure what would cause the whole CF server to demand NT
> authentication, and then stop doing it when the custom tag is renamed.
>
> SO therefore I 'm not sure if the remedy for this problem is to get rid of
> the custom tag, or whether the problem lies somewhere else.




POST / TCP IP

2002-08-12 Thread Justin MacCarthy

Hi, Please cc [EMAIL PROTECTED] as I'm on digest

> I am trying to use a TCPIP com object to post form variable but I
> don't know
> what the packet should look like.  Does anyone know the syntax for a POST?
>
> Thanks,
>
> Neil

First of all - are you looking for trouble?? :-)  Can't you use some higher
level object???
If you NEED to use a tcp/ip object to do a HTTP POST , grab a packet sniffer
and look at the stream. use tcpdump to get it.

Also I think min has a example of HTTP with his tcp/ip object
http://www.intrafoundation.com/tcpclient.html

Again, it would be better if you chould use a higher level object.

Please cc [EMAIL PROTECTED] as I'm on digest

Justin


FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: CF 5.0 and misc questions...

2000-07-19 Thread Justin MacCarthy

>
> My advice to you is to work with what you have, without expecting the 5.0
> release to solve all your problems. Remember, CF is designed to do one
> thing, and one thing only - generate HTTP response data. If you want to do
> something else, like run programs at arbitrary times, you can do it in CF,
> but it's a kludge, and you might be better off using another tool for that
> task

On that note the guys  www.coolfusion.com
are beta-testing a product called CFTIMER  which allows you do lots of CF +
non cf Timer stuff, like run CF templates (not via HTTP!! ) , restart CF
server etc..

~Justin MacCarthy


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



Re: "Sticky" variables

2000-07-19 Thread Justin MacCarthy

HI Joel,

Marc from Advantex has an Excellent article here :
http://www.advantex.net/ColdFusion/CFClustering.htm

There are a few extra things you could add to it, for example using WDDX to
store data you would have stored in a session.structure, but the basics are
there ...

~Justin MacCarthy

> I've seen a few posts here and there discussing session variables in a
> clustered environment. Are there any pages or resources I can look at
> that would help explain them, or how to implement them? A cluster is
> in my not-so-distant future, so I want to be prepared.
>


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



Re: ORDER BY in a UNION Query

2000-07-19 Thread Justin MacCarthy

I would say  the issue is possibly a reserved word or a quotation mark
 Can you output the SQL the is generated


~Justin


> When I stick the Order By statement at the end of the second Select
clause,
> Oracle returns the error:
> "[Microsoft][ODBC driver for Oracle][Oracle]ORA-00904: invalid column name
"
>
> The column names Name and Reason *are* present in both tables. I tried to


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



Re: new PDF license

2000-07-18 Thread Justin MacCarthy

Have a look at

www.activePDF.com

and also the FDF tags in the Tag Gallery (or the Dev exchange as they call
these days.)

~Justin



- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, July 18, 2000 4:44 PM
Subject: new PDF license


> with the new adobe license that their products aren't supposed to be
installed on the server, how can I dynamically create a pdf document from a
tab delimited file?
>
> ?? - thank you,
> je
>
> This message sent using EMUmail.  http://EmuMail.com
> --

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



Re: Accessing a SQL Server 7.0 DTS Package Via ColdFusion

2000-06-19 Thread Justin MacCarthy

use CFExecute (CF4.5) and dtsrun OR Write a Sproc that uses xp_cmdshell  OR
run it on a Schedule using sp_add_jobschedule

That help?

~JustinMacCarthy


- Original Message -
From: Marc Lippman <[EMAIL PROTECTED]>
To: cftalk <[EMAIL PROTECTED]>
Sent: Monday, June 19, 2000 2:16 PM
Subject: Accessing a SQL Server 7.0 DTS Package Via ColdFusion


> Anyone out there know any way to access a  SQL Server 7 DTS package via
CF?
> --

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

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



Re: CFIF syntax debate (kind of...)

2000-06-18 Thread Justin MacCarthy


> Second, it removes a bit of overhead.  If you don't scope a variable, CF
has
> to search through all of the variable scope types to figure out which one
> this relates to.  Obviously if you tell CF where to look, CF doesn't have
to
> work so hard.

True ... Jeff



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



Re: Weird Prepend

2000-06-18 Thread Justin MacCarthy

You check your application.cfm file ???

~Justin MacCarthy

- Original Message -
From: [ W E B D i V A ] <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, June 18, 2000 2:10 PM
Subject: Weird Prepend


> All cfm pages on our server seem to get this:
>
> 
>
> prepended at that top of each page.  When you open the file it is not
there,
> but when you view source, it is.  Therefore, any page that has a body
color
> of black gets overridden by the body that is prepended.  Is it something
> with Studio since that is the template page that comes up when you start
> it??? Any ideas would be greatly appreciated.
>
> Thanks in advance!
>
> --

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

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



Re: CFIF syntax debate (kind of...)

2000-06-18 Thread Justin MacCarthy

In fact  is better as it is faster or if doing a
string comparison



~JustinMacCarthy



- Original Message -
From: Phil Labonte <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, June 18, 2000 2:41 PM
Subject: CFIF syntax debate (kind of...)


> This is a multi-part message in MIME format.
>
> --=_NextPart_000_0032_01BFD909.54A70BF0
> Content-Type: text/plain;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> When using CFIF and using a variable from a form is it better to refer =
> to the variable using ex:or can I use  Var is not "")?  Where Var is the variable in question that is from a =
> form.
>
> What is the proper syntax?  I looked in the Ben Forta CF book and there =
> is no mention of this.
>
> Please help...
>
>
>
> --=_NextPart_000_0032_01BFD909.54A70BF0
> Content-Type: text/html;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> 
> 
>  http-equiv=3DContent-Type>
> 
> 
> 
> 
> When using CFIF and using a variable =
> from a form is=20
> it better to refer to the variable using ex:   not=20
> "">  or can I use  the=20
> variable in question that is from a form.
>  
> What is the proper syntax?  I =
> looked in the=20
> Ben Forta CF book and there is no mention of this.
>  
> Please help...
>  
>  
>
> --=_NextPart_000_0032_01BFD909.54A70BF0--
>
> --

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

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



Re: ISAPI

2000-06-18 Thread Justin MacCarthy

http://www.15seconds.com/
is a good plavce to start ...

~Justin MacCarthy


- Original Message -
From: Iztok Polanic <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, June 18, 2000 10:50 AM
Subject: Re: ISAPI


> Hy!
>
> While we are at he ISAPI, is anybody familiar with ISAPI programming. Does
> somebody know a good ISAPI list?
> Thank you!
>
> Bye,
>
> Iztok
> - Original Message -
> From: "Howie Hamlin" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Sunday, June 11, 2000 03:05
> Subject: Re: ISAPI
>
>
> > It's an application server.  There is an ISAPI that IIS uses to
> communicate
> > with CF...
> >
> > Howie Hamlin
> > --
> > inFusion Project Manager; On-Line Data Solutions, Inc. (631)737-4668
> > www.CoolFusion.com
> > 
> > Please vote for iMS in the Most Innovative category here:
> > *** http://www.sys-con.com/ColdFusion/readerschoice2000/ ***
> > 
> > Check out inFusion Mail Server - the world's most configurable email
> server
> >
> > - Original Message -
> > From: Jake Hileman <[EMAIL PROTECTED]>
> > To: <[EMAIL PROTECTED]>
> > Sent: Saturday, June 10, 2000 10:48 AM
> > Subject: ISAPI
> >
> >
> > > Does Cold Fusion run as an ISAPI?  Or just as a stand alone web server
> > > (CFServer.EXE)?  If it runs as an ISAPI... shweee, that would be
> > nice...
> > > :-)
> > >
> > > thanks and let me know,
> > >
> > > Jake
> > >
> >
>
> --
> > 
> > > Archives: http://www.eGroups.com/list/cf-talk
> > > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
> > the body.
> >
>
> --
> 
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --

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

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



Re: One more form question

2000-06-17 Thread Justin MacCarthy

You can only do this in Version4 browser + , unless you relaod the page.
Look at  the disabled property in IE4

~JustinMacCarthy

- Original Message -
From: Les Mizzell <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, June 17, 2000 3:36 PM
Subject: One more form question


> Is this possible?
>
> Using a drop down box with a number of choices.  Last choice is "OTHER"
>
> If someone picks "OTHER", I'd then like two new text input fields to
appear
> for them to fill in.
>
> I can obviously just have the fields already there marked "Please fill
these
> out if you picked "OTHER", but it would be nice if they weren't visible
> unless you *did* pick "OTHER".
>
> Les Mizzell
> ***
> Who needs Intel?
> Athlon Inside!!!
>
> --

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

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



Re: CMDSHELL ??

2000-06-16 Thread Justin MacCarthy

It basically means, retrieve & execute the DTS package DTS__2 from
the server called CFUSIONSVR

You will have to look at the DTS package to get more info, use the DTS
Designer or look up DTS in SQL Server books online in get more info on DTS
in general

~Justin MacCarthy


- Original Message -
From: vincy <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, June 12, 2000 7:12 AM
Subject: CMDSHELL ??


> hi,
>Part of some of the work done on my database has been outsourced  from
> another company.
> A search on one of the databases revealed this command as a part of one of
> the stored procedures
> that we have implemented on our SQL database.
> We are running CF 4.5 on NT4 sp6 and SQL 7
>
> Anyone has a brief idea on what this statement could possibly do ???
>
> EXECUTE @result = master.. XP_CMDSHELL 'DTSRUN /S CFUSIONSVR /U SA /E  /N
> DTS__2'
>
>
> thanks
> Vincent
>
> --

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

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



Re: inserting a character between elements of a string

2000-06-16 Thread Justin MacCarthy

Try using a Regular expression with backreferences

something like

#REReplace("=93STOP=94 ","([A-Za-z])([a-zA-z])","\1-","ALL")#

That won't work but it might point you the general direction

~Justin MacCarthy

- Original Message -
From: Jonathan R. Karlen <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, June 09, 2000 10:23 PM
Subject: inserting a character between elements of a string


> This is a multi-part message in MIME format.
>
> --=_NextPart_000__01BFD237.7F1CEEA0
> Content-Type: text/plain;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
> X-MIME-Autoconverted: from 8bit to quoted-printable by onyx.he.net id
OAA01903
>
> Greetings =96
>
> I want to insert a character between each element of a string.  For examp=
> le
> I want to receive the string =93STOP=94 and make it =93S-T-O-P=94.  Does =
> CF have the
> functions to do this?
>
> Jon
>
> ***
> Jonathan R. Karlen
> Karlen Internet Solutions
> Web Site and Application Development
> [EMAIL PROTECTED]
> http://www.karlen.com
>
>
> --=_NextPart_000__01BFD237.7F1CEEA0
> Content-Type: text/html;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
>  xmlns:w=3D"urn:schemas-microsoft-com:office:word" =
> xmlns=3D"http://www.w3.org/TR/REC-html40">
>
> 
>  charset=3Diso-8859-1">
> 
> 
> 
> cid:[EMAIL PROTECTED]">
> 
> 
> <!--
>  /* Style Definitions */
> p.MsoNormal, li.MsoNormal, div.MsoNormal
> {mso-style-parent:"";
> margin:0in;
> margin-bottom:.0001pt;
> mso-pagination:widow-orphan;
> font-size:12.0pt;
> font-family:"Times New Roman";
> mso-fareast-font-family:"Times New Roman";}
> p.MsoAutoSig, li.MsoAutoSig, div.MsoAutoSig
> {margin:0in;
> margin-bottom:.0001pt;
> mso-pagination:widow-orphan;
> font-size:12.0pt;
> font-family:"Times New Roman";
> mso-fareast-font-family:"Times New Roman";}
> span.EmailStyle15
> {mso-style-type:personal-compose;
> mso-ansi-font-size:10.0pt;
> mso-ascii-font-family:Arial;
> mso-hansi-font-family:Arial;
> mso-bidi-font-family:Arial;
> color:black;}
> @page Section1
> {size:8.5in 11.0in;
> margin:1.0in 1.25in 1.0in 1.25in;
> mso-header-margin:.5in;
> mso-footer-margin:.5in;
> mso-paper-source:0;}
> div.Section1
> {page:Section1;}
> -->
> 
> 
>
> 
>
> 
>
>  color=3Dblack
> face=3DArial> style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
> Arial'>Greetings –
>
>  color=3Dblack
> face=3DArial> style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
> Arial'> 
>
>  color=3Dblack
> face=3DArial> style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
> Arial'>I want to insert a character between each element of a =
> string. style=3D"mso-spacerun: yes">  For example I want to receive =
> the
> string “STOP” and make it “S-T-O-P”. style=3D"mso-spacerun: yes"> 
> Does CF have the functions to do =
> this?
>
>  color=3Dblack
> face=3DArial> style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
> Arial'> 
>
>  color=3Dblack
> face=3DArial> style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
> Arial'>Jon
>
>  color=3Dblack
> face=3DArial> style=3D'font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:
> Arial'> 
>
>  ont
> color=3Dblack> style=3D'color:black'>*** t> color=3Dblack> style=3D'color:black;mso-color-alt:windowtext'><=
> /p>
>
>  Roman"> style=3D'font-size:12.0pt;color:black'>Jonathan R. =
> Karlen color=3Dblack> style=3D'color:black;mso-color-alt:windowtext'><=
> /p>
>
>  Roman"> style=3D'font-size:12.0pt;color:black'>Karlen Internet =
> Solutions color=3Dblack> style=3D'color:black;mso-color-alt:windowtext'><=
> /p>
>
>  Roman"> style=3D'font-size:12.0pt;color:black'>Web Site and Application =
> Development color=3Dblack> style=3D'color:black;mso-color-alt:windowtext'><=
> /p>
>
>  Roman"> style=3D'font-size:12.0pt;color:black'>[EMAIL PROTECTED] ont
> color=3Dblack> style=3D'color:black;mso-color-alt:windowtext'><=
> /p>
>
>  Roman"> style=3D'font-size:12.0pt;color:black'>http://www.karlen.com 

Re: CFMAIL Alternatives

2000-06-08 Thread Justin MacCarthy

Hi Sean,

Look at iMS server from www.coolfusion.com
It's cheap, if you just want the 'post' server.
Otherwise,there is a COM on serverobjects.com for sending mail.I haven't
used this though...


~Justin MacCarthy

- Original Message -
From: Sean Daniels <[EMAIL PROTECTED]>
To: Cf-Talk@Houseoffusion. Com <[EMAIL PROTECTED]>
Sent: Monday, June 05, 2000 7:00 PM
Subject: CFMAIL Alternatives


> Hello all,
>
> I am lookig for an alternate solution to cfmail that will allow my site to
> send larger quantities of email more efficiently. For example, a
newsletter
> to all of our customers will go out to about 12,000 people. This currently
> takes CFMAIL a hell of a long time to send out - like about 5-6 hours.
>
> Does anyone have any experience with alternatives? I remember a discussion
a
> while back about a product that was an intergrated SMTP server and CF tag.
> Could someone point me in the right direction and give me some stats on
that
> (like emails per minute?)
>
> TIA
>
>
> - Sean
>
> 
> Sean Daniels
> Manager, Engineering
> Marketplace Technologies
> [EMAIL PROTECTED]
> http://www.dealstream.com
> http://www.mergernetwork.com
> 
> tel: 207.439.6030
> cel: 978.764.0779
>
>
> --

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

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



Re: Cold Fusion-based email server...?

2000-05-30 Thread Justin MacCarthy


Your options :

Roll your own server:  iMS from Coolfusion.com  *excellent support & product*
iMail from ipswitch, good sever , customizable front end with some util's
for adding users domains etc.
(anyone figured out how to share a session with CF IE , if you authenticate
a user with CF can you get at their mailbox with out another logon?)

or use cfx_imap from the tag gallery...

~Justin MacCarthy



At 11:36 PM Tuesday, you wrote:
>Hi all,
>
>I've seen this thread before, but can't find the info - what's everyone's CF
>email system of choice?
>
>Ian
>
>Portent Interactive
>http://www.portentinteractive.com
>Process, Design, Content
>
>Market Matrix
>http://www.marketmatrix.com 
>Secure Commerce for Your Business
>
>Working together to create powerful, usable web solutions.
>---
---
>Archives: http://www.eGroups.com/list/cf-talk
>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.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



Re: How do you make the Cursor Default to the First Input Field

2000-05-26 Thread Justin MacCarthy

document.forms[0].elements[0].focus()
will do it first for first form ,first field

~Justin MacCarthy

- Original Message -
From: sam komolafe <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 26, 2000 5:19 PM
Subject: How do you make the Cursor Default to the First Input Field


> Hi CF_friends,
>
> How do I make the Cursor Default to the First Input Field as soon as a
form
> is requested.  I used the tabindex='1' attribute but it still defaults to
> the browser URL Address box.
>
> Thanks
> sam
>
> --

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

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



Re: IIS,Virtual Directorys and CF?

2000-05-24 Thread Justin MacCarthy

Hi Malcolm,

I' m a little confused by the first part of the question - however I have
some suggestions of the no2.

a) Don't include the cfinlcude etc in your Word Template , instead create a
handler which includes the middle bit (the HTML created by your users) in
between the cfincludes . this will get around the .cfm problem & also stop
users from removing the cfincludes from the template.

b) write a AutoClose macro for word that saves the file as .cfm (I don't
really like this idea...)


> 2.Although the templates work really well--word insists on using.htm as
the
> default extension.
> Is there a way to change this default? If Not can I set up cf server to
> parse for all .htm extensions--
> convert to .cfm and upload to the live directory? can i schedule this
using
> the shcheduled events in cf server?
>


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



Re: CFML vs. CFX

2000-05-24 Thread Justin MacCarthy

What custom tag you using?  What are you trying to do..you can make HTML
save with HTMLCodeFormat() or remove all HTML with  REReplace(YourHtmlText,
"<[^>]*>", "", "All") pretty fast...

~JustinMacCarthy

Coming soon WWW.CFFAQ.ORG

- Original Message -
From: Brian P. Doyle <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 24, 2000 3:10 PM
Subject: CFML vs. CFX


> I just installed a custom tag to strip html out of my search results.  The
> problem is that it slows things down horribly. (I had to put it in the
> cfoutput of the query so that it stripped every record).  I'm curious if a
> CFX tag would work faster.  If anyone has any light to shed on this it
would
> be greatly appreciated.
>
>
> Brian Doyle
>
> --

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

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



Re: Credit Card Payment - Java or Perl ?

2000-05-24 Thread Justin MacCarthy

You should be able to do anything that you can do in ActivePerl, you should
be able to do in CF.  Unless your Java is good , I'd either go with
rewritten the activePerl in CF or Calling the Perl cgis with CFHTTP

~Justin


- Original Message -
From: Ken M. Mevand <[EMAIL PROTECTED]>
To: 02 cf-talk <[EMAIL PROTECTED]>
Sent: Wednesday, May 24, 2000 2:12 PM
Subject: Credit Card Payment - Java or Perl ?


> i have a site which will be accepting credit card payments. my solution
> provide has 2 methods of clearing credit cards, using Active Perl or Java.
>
> in your opinions, which method is better from the point of view of CF. my
> site is running virtual server on Win NT with CF4.5.1 and MS SQL7.
>
> thanks
>
> -ken
>
>
> --

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

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



Re: web based email client : reinventing the wheel

2000-05-23 Thread Justin MacCarthy

There are two problems with CF + pop

1) the connection overhead
2) and cfmail

You can get around cfmail , using cfx_mail or others but you still have
connection overhead. The version of crazy cabs email client that comewith
ColdFusion, caches all the email titles into a sessions, to speed the later
pages, but the page which connects is painfully slow.

The rest of the job is easy.

Are you going to be running this on Linux or NT ?


- Original Message -
From: Adam Cantrell <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, May 23, 2000 5:03 PM
Subject: RE: web based email client : reinventing the wheel


>
> I have seen the infusion mail server - it's an awesome product, and I get
> reamed for not using it.  However, I'm looking for a web based
client/front
> end - not a server.  The front end that goes along with iMS seems to want
to
> stay with iMS.  I'm looking for a client that has been performance tuned
and
> proven stable under higher load conditions, and that interacts completely
> through POP (like with a freeBSD box running sendmail).  It would be cool
if
> it had address book features, although I am looking for core functionality
> right now (send, receive, forward, attach).  Has anyone ran across
something
> like this, or done one theirselve?  And if you don't have the source, I
> would appreciate any pointers or tricks you used to make it faster/better.
>
>
>
> +-Original Message-
> +From: Justin MacCarthy [mailto:[EMAIL PROTECTED]]
> +Sent: Tuesday, May 23, 2000 10:34 AM
> +To: [EMAIL PROTECTED]
> +Subject: Re: web based email client : reinventing the wheel
> +
> +
> +You should have a look at iMS from Coolfusion.com
> +
> +~Justin MacCarthy
> +
> +- Original Message -
> +From: Adam Cantrell <[EMAIL PROTECTED]>
> +To: <[EMAIL PROTECTED]>
> +Sent: Tuesday, May 23, 2000 4:15 PM
> +Subject: web based email client : reinventing the wheel
> +
> +
> +>
> +> I was wondering if anybody has put a lot of time into creating a
> +web based
> +> messaging client that interacts with a single pop server.  I know I
could
> +> design one myself, but I would think everybody has already done this,
and
> +> somebody has probably put a lot of time into making a benchmark
performer
> +in
> +> regards to web messaging.  If anyone could point me to or provide me
with
> +> source code, it would be much appreciated.
> +>
> +>
> +> Adam Cantrell
> +>
> +>
>
+--
> +
> +> Archives: http://www.eGroups.com/list/cf-talk
> +> To Unsubscribe visit
> +http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or
> +send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> +the body.
> +>
> +>
> +
> +---
> +---
> +Archives: http://www.eGroups.com/list/cf-talk
> +To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --

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

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



Re: web based email client : reinventing the wheel

2000-05-23 Thread Justin MacCarthy

You should have a look at iMS from Coolfusion.com

~Justin MacCarthy

- Original Message -
From: Adam Cantrell <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, May 23, 2000 4:15 PM
Subject: web based email client : reinventing the wheel


>
> I was wondering if anybody has put a lot of time into creating a web based
> messaging client that interacts with a single pop server.  I know I could
> design one myself, but I would think everybody has already done this, and
> somebody has probably put a lot of time into making a benchmark performer
in
> regards to web messaging.  If anyone could point me to or provide me with
> source code, it would be much appreciated.
>
>
> Adam Cantrell
>
> --

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

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



Re: SQL 7 Functions

2000-05-23 Thread Justin MacCarthy

>From BOL- mathematical functions

Using RAND
The RAND function calculates a random floating point number between 0 and 1,
and can optionally take a tinyint, int, or smallint value for the starting
point of the random number to calculate.

This example calculates two random numbers. The first RAND() function lets
Microsoft® SQL ServerT pick the seed value, and the second RAND() function
uses the value of 3 for the starting position.

SELECT RAND(), RAND(3)


The RAND function is a pseudorandom number generator that operates in a
manner similar to the C run-time library rand function. If no seed is
provided, the system generates its own variable seed numbers. If you call
RAND with a seed value, you must use variable seed values to generate random
numbers. If you call RAND multiple times with the same seed value, it
returns the same generated value. This script returns the same value for the
calls to RAND because they all use the same seed value:

SELECT RAND(159784)
SELECT RAND(159784)
SELECT RAND(159784)
A common way to generate random numbers from RAND is to include something
relatively variable as the seed value, such as adding several parts of a
GETDATE:
SELECT RAND( (DATEPART(mm, GETDATE()) * 10 )
   + (DATEPART(ss, GETDATE()) * 1000 )
   + DATEPART(ms, GETDATE()) )

When you use an algorithm based on GETDATE to generate seed values, RAND can
still generate duplicate values if the calls to RAND are made within the
interval of the smallest datepart used in the algorithm. This is especially
likely if the calls to RAND are included in a single batch. Multiple calls
to RAND in a single batch can be executed within the same millisecond, which
is the smallest increment of DATEPART. In this case, incorporate a value
based on something other than time to generate the seed values.

See Also

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, May 23, 2000 1:20 PM
Subject: OT: SQL 7 Functions


>
> Where do I find a list of functions for SQL 7?
> Specifically today I'm looking for equivalent to CF Randrange():
> SELECT TOP 1000 *
> FROM users
> WHERE ID IN (randrange(1, 3))
> But there has to be a list somewhere. I'm getting
> frustrated looking through the online help.
>
>
>
>
>
> --

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

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



Re: Reformatting number

2000-05-19 Thread Justin MacCarthy

> sorry to post the same message again but its Friday afternoon and my brain
> is tired.
>
> I've got a value 16,511.00 which although it looks like an int, CF
believes
> its a string. So I can't use NumberFormat.
>
> I need to turn 16,511.00 into the integer 16511.
>
> How?

Try this:




#round(num)#


>
> Also can anyone recommend a good resource for learning about regular
> expressions?

There is an oreilly book Mastering Regular Expressions which has
everything++
One gotcha is that CF is a little different in its syntax for  somethings .

Hope that helps ..

~JustinMacCarthy

Coming soon WWW.CFFAQ.ORG


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



Re: Wherefor art thou, CGI?

2000-05-18 Thread Justin MacCarthy

>From the docs :

Request
 CGI.AUTH_TYPE
CGI.CONTENT_LENGTH
CGI.CONTENT_TYPE
CGI.PATH_INFO
CGI.PATH_TRANSLATED
CGI.QUERY_STRING
CGI.REMOTE_ADDR
CGI.REMOTE_HOST
CGI.REMOTE_USER
CGI.REQUEST_METHOD
CGI.SCRIPT_NAME
 Server

 CGI.GATEWAY_INTERFACE
CGI.SERVER_NAME
CGI.SERVER_PORT
CGI.SERVER_PROTOCOL
CGI.SERVER_SOFTWARE

Client
 CGI.CERT_ISSUER
CGI.CERT_SUBJECT
CGI.CLIENT_CERT_ENCODED
CGI.HTTP_ACCEPT
CGI.HTTP_USER_AGENT

~JustinMacCarthy

Coming soon WWW.CFFAQ.ORG

- Original Message -
From: Todd Ashworth <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, May 18, 2000 3:17 PM
Subject: Wherefor art thou, CGI?


> OK .. this is the last one for a while .. I promise ;)
>
> Anyone know where I can get a complete list of those 'CGI' variables?
> CGI.remote_addr, etc?
>
> .Todd
>
>
> --

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

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



Re: Can I put a wddx packet into a database and read it back out?

2000-05-17 Thread Justin MacCarthy

Yes to all 3 ---








post the wddx to another page

#MyWddx#


insert into table
(wddxfield)
value
('#MyWddx#')







#My2dArray[1][1]#
#My2dArray[1][2]#



Hope that helps

~JustinMacCarthy

Coming soon WWW.CFFAQ.ORG

- Original Message -
From: zknoll <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 17, 2000 4:11 PM
Subject: Can I put a wddx packet into a database and read it back out?


>
> I have an 2-D array of information that I convert into a wddx packet to
> pass between templates but I would also like to be
> able to store the packet into a database and read it out again. A) Is
> this possible? B) Is it possible with access 200 as the
> backend database? C) If A and B are true can you show me a snippet of
> code as to how this would be done?
>
> --

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

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



Re: CF --> IRC - solution

2000-05-17 Thread Justin MacCarthy

Have a look @ http://www.intrafoundation.com/freeware.html
There is a cfx ( CFX_TCPClient )  there that lets you do all sort of low
level stuff, play around with it you should be able to post to irc
channels..
Excellent work by Lewis A. Sellers III :-)

~JustinMacCarthy
Coming soon WWW.CFFAQ.ORG
'Your CF questions answered!'

- Original Message -
From: Billy Cravens <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 17, 2000 6:21 PM
Subject: Re: CF --> IRC


> Seems that you can attempt to interface with mIRC's API if it's installed
> and running on the server.. just an idea.. that'd be something fun to play
> with.
>
> Billy
>
>
> - Original Message -
> From: lsellers <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Tuesday, May 16, 2000 9:16 PM
> Subject: RE: CF --> IRC
>
>
> > > Hello all! I run a video game web site and an IRC server. I want
> > > CF to post
> > > a message into certain IRC channels depending on the content we are
> adding
> > > to the site. Does anyone have any suggestions/experience for/with
this?
> I
> > > BELIEVE PHP can do it, but I cant seem to find anything on it. I would
> > > revert to any langauge I know that can do it if anyone knows a way,
but
> CF
> > > would be much prefered. Thanks in advance for the help!
> > >
> > > Mike Grundvig
> >
> > Well, you CAN do it with CFX_TCPClient as-is but the IRC server has to
> have
> > IDENT turned off. Most all irc servers these days required IDENT so...
> > .
> >
> > You unfortunately will have to download the RFC for the IRC protocol and
> > read through all of it to do this ;-), but...
> >
> > --min
> >
> >
>
> --
> 
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --

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

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



Article on Slashdot about Allaire Forums

2000-05-17 Thread Justin MacCarthy

heads up

http://slashdot.org/article.pl?sid=00/05/16/1512238&mode=thread

~JustinMacCarthy

Coming soon WWW.CFFAQ.ORG


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



Re: formating date in CFGRID

2000-05-17 Thread Justin MacCarthy

Otherwise instead of using the query attribute of cfgrid

Loop over cfgridrow tag like





Hope that helps

~JustinMacCarthy

Coming soon WWW.CFFAQ.ORG


- Original Message -
From: Justin MacCarthy <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 17, 2000 1:28 PM
Subject: Re: formating date in CFGRID


> You chould try using SQL again something like
>
> SELECT CONVERT(varchar, Day(GETDATE()))
> + '/' + CONVERT(varchar, MONTH(GETDATE()))
> + '/' + CONVERT(varchar, YEAR(GETDATE())) AS MyDate
>
> What are the issues with cfgrid
>
>
>
> ~JustinMacCarthy
>
> Coming soon WWW.CFFAQ.ORG
>
> - Original Message -
> From: Dharmendar Kumar <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, May 17, 2000 11:24 AM
> Subject: formating date in CFGRID
>
>
> > This is a multi-part message in MIME format.
> >
> > --=_NextPart_000_0046_01BFC018.3A7D46E0
> > Content-Type: text/plain;
> > charset="iso-8859-1"
> > Content-Transfer-Encoding: quoted-printable
> >
> > Does anyone know how to format dates in CFGRID. "DateFormat" is not =
> > working.
> >
> > Dharmendar Kumar
> >
> > --=_NextPart_000_0046_01BFC018.3A7D46E0
> > Content-Type: text/html;
> > charset="iso-8859-1"
> > Content-Transfer-Encoding: quoted-printable
> >
> > 
> > 
> >  > http-equiv=3DContent-Type>
> > 
> > 
> > 
> > 
> > Does anyone know how to format dates in
=
> >
> > CFGRID. "DateFormat" is not working.
> >  
> > Dharmendar =
> > Kumar
> >
> > --=_NextPart_000_0046_01BFC018.3A7D46E0--
> >
>
> --
> 
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> >
> >
>
> --

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

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



Re: formating date in CFGRID

2000-05-17 Thread Justin MacCarthy

You chould try using SQL again something like

SELECT CONVERT(varchar, Day(GETDATE()))
+ '/' + CONVERT(varchar, MONTH(GETDATE()))
+ '/' + CONVERT(varchar, YEAR(GETDATE())) AS MyDate

What are the issues with cfgrid



~JustinMacCarthy

Coming soon WWW.CFFAQ.ORG

- Original Message -
From: Dharmendar Kumar <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 17, 2000 11:24 AM
Subject: formating date in CFGRID


> This is a multi-part message in MIME format.
>
> --=_NextPart_000_0046_01BFC018.3A7D46E0
> Content-Type: text/plain;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> Does anyone know how to format dates in CFGRID. "DateFormat" is not =
> working.
>
> Dharmendar Kumar
>
> --=_NextPart_000_0046_01BFC018.3A7D46E0
> Content-Type: text/html;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> 
> 
>  http-equiv=3DContent-Type>
> 
> 
> 
> 
> Does anyone know how to format dates in =
>
> CFGRID. "DateFormat" is not working.
>  
> Dharmendar =
> Kumar
>
> --=_NextPart_000_0046_01BFC018.3A7D46E0--
>
> --

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

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



Re: Newbie qts -

2000-05-17 Thread Justin MacCarthy

You could do it in the SQL:

SELECT Firstname + ' ' + lastname AS Fullname
FROM table

Then just use Fullname in you cfgrid

~JustinMacCarthy

Coming soon WWW.CFFAQ.ORG


- Original Message -
From: Dharmendar Kumar <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 17, 2000 11:22 AM
Subject: Newbie qts -


> This is a multi-part message in MIME format.
>
> --=_NextPart_000_003E_01BFC017.F515F160
> Content-Type: text/plain;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> I am selecting two fields in a query - firstname and lastname.
>
> I want to concatenate the two fields and display the fullname in a =
> single column in a CFGRID. How do I do this.
>
> Can anyone help me?
>
> Dharmendar Kumar
>
> --=_NextPart_000_003E_01BFC017.F515F160
> Content-Type: text/html;
> charset="iso-8859-1"
> Content-Transfer-Encoding: quoted-printable
>
> 
> 
>  http-equiv=3DContent-Type>
> 
> 
> 
> 
> I am selecting two fields in a query - =
> firstname=20
> and lastname.
>  
> I want to concatenate the two fields =
> and display=20
> the fullname in a single column in a CFGRID. How do I do =
> this.
>  
> Can anyone help me?
>  
> Dharmendar =
> Kumar
>
> --=_NextPart_000_003E_01BFC017.F515F160--
>
> --

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

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



Re: Seeking Broadcast E-mail System - answer iMS

2000-05-17 Thread Justin MacCarthy

Use iMS seemless intregration with CF from coolfusion.com. A great price for
the Post server at the momment too.

~JustinMacCarthy
~Irish CfHead

Coming soon WWW.CFFAQ.ORG




- Original Message -
From: Steve Pierce <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 17, 2000 3:50 AM
Subject: RE: Seeking Broadcast E-mail System


> Try Lyris from www.lyris.com. They use it at C-Net Central for the largest
> email lists in the world, it might be able to do what you want.
>
>  - Steve
>
>
> -Original Message-
> From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, May 16, 2000 10:13 PM
> To: [EMAIL PROTECTED]
> Subject: RE: Seeking Broadcast E-mail System
>
>
> Thanks Steve - don't want to mention any names but it sounds something
like
> list caster. For those interested what happened was we sent a message to
the
> list and as expected some mailboxes didn't exist any more (which is quite
> normal) so the receiving sever sent a message back to our list. Our list
> server didn't know what to do with them so it sent them back to the sever
> from whence they came and vice versa. Fortunately it wasn't an infinite
loop
> but it then proceeded to e-mail all the error messages to everyone on the
> list. An issue aside - we had great difficulty with the interfaces for
this
> product - for example some fields and boxes were below the bottom of the
> screen and we couldn't scroll down to them, we had to tab to expose them
> which I think is very poor design.
>
> Our ISP gives us access to major-domo via Major Cool which is quite good
but
> we can't administer all aspects of the list and have to rely on ISP
support
> for some of them - simple things such as changing the intro message for
> example.
>
> Thanks again for the advice Steve.
>
>
> +
> Kevin Parker
> Service and Communication
> WorkCover Corporation
>
> [EMAIL PROTECTED]
> www.workcover.com
>
> ph:  +61 8 82332548
> fax: +61 8 82332000
> mob: 0418 800 287
>
> ++
>
> -Original Message-
> From: Steve Pierce [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 17 May 2000 11:29 AM
> To: [EMAIL PROTECTED]
> Subject: RE: Seeking Broadcast E-mail System
>
>
> CF is the wrong tool for a mailing list. Sure you can do it, and yes you
can
> use Excel spreadsheets as a database instead of SQL but would you want to?
> Figure out why your NT mailing product filed and get a better one. BTW,
> which one was such a nightmare for you.
>
>  - Steve
>
> Steve Pierce, HDL
> "Co-Location starting $99 per month, no setup fee"
> (734) 482-9682 | mailto:[EMAIL PROTECTED] | http://HDL.com
>
>
>
> -Original Message-
> From: Parker, Kevin [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, May 16, 2000 9:43 PM
> To: [EMAIL PROTECTED]
> Subject: RE: Seeking Broadcast E-mail System
>
>
> We've had a lot of dramas recently with an NT based list server and I've
> effectively told our networking guys to forget it (you don't want to hear
> the horror stories - it sounds something like a DOS attack). I've gone
back
> to our ISP temporarily but want to consider CF options - I'd be grateful
if
> you could let me look at your templates as well Paul.
>
>
> +
> Kevin Parker
> Service and Communication
> WorkCover Corporation
>
> [EMAIL PROTECTED]
> www.workcover.com
>
> ph:  +61 8 82332548
> fax: +61 8 82332000
> mob: 0418 800 287
>
> ++
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, 17 May 2000 10:56 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Seeking Broadcast E-mail System
>
>
> I've got an app like this.
> You can see the front end at http://gobears.support.net/
> I'll send you the templates if you want.
>
> best,  paul
>
> At 05:06 PM 5/16/00 -0700, you wrote:
> >I am looking for a CF-based application or set of custom-tags
(application
> >is better) that can be used for managing and sending internal broadcast
> >e-mail messages within an organization. User base is around 500 people.
> >
> >Can anyone recommend anything?
> >
> >Richard Colman
> >
>
>---
> ---
> >Archives: http://www.eGroups.com/list/cf-talk
> >To Unsubscribe visit
> >http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or
> >send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> >the body.
>
> --
--
> --
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
>
>
>

> This e-mail is intended for the use of the addressee only. It may contain
> information that is protected by legislated confidentiality and/or is
> legally privileged. If you are not the intended recipient you are
prohibited
> from dis

Re: CF and Encryption

2000-05-17 Thread Justin MacCarthy

It would be quite easy to write a cjx or cfj tag to do des encrytpion, I
know that there is a cf_blowfish tag out there somewhere, but I can't
remember who did it ...

a quick look at counterpane tell me it's CFX_Encrypt by Jim Fuller @

http://www.ejim.co.uk/module/encrypt/index.cfm

Freeware ...

~ Justin MacCarthy
~Irish CFHead

Coming soon http://www.CFFAQ.org


- Original Message -
From: Chris Montgomery <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 17, 2000 5:04 AM
Subject: CF and Encryption


> Howdy folks,
>
> I am looking for info on what kind of encryption CF employs.  In
> particular, I am wondering about single DES encryption.  I've searched
> the docs and support forum at Allaire's site but found no specific
> mention on what algorithm CF uses for encryption.
>
> My reason for asking:  Am about to take on a project to write an app for
> issuing software licenses.  Developers at the company say that the
> actual license generation module will be done in Java, invoking single
> DES encryption to generate the license codes.  I know you can employ CF
> to encrypt strings and am thinking that if it uses single DES encryption
> then why not just use CF for the whole thing, including the license
> generation part.
>
> Any thoughts on this or pointers where I can find out more about how CF
> encryption works?
>
> Thanks,
>
> Chris Montgomery  [EMAIL PROTECTED]
> ::Web development/Consulting  http://www.astutia.com ::
> ::210-490-3249 / 888-745-7603 Fax 210-490-4692   ::
> ::Find a Job in San Antonio   http://www.sajobnet.com::
>
> --

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

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



Re: Dynamic Multiple Choice Box

2000-05-16 Thread Justin MacCarthy

I think you can use the TWO_selects_related (from the dev exchange)tag to do
this ...

~Justin MacCarthy


- Original Message -
From: Dave Hannum <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
Sent: Tuesday, May 16, 2000 1:55 PM
Subject: OT: Dynamic Multiple Choice Box


> OK JS Guru's -
>
> I have a query that brings back two columns in a table.  I want to have
radio buttons above a multi-choice box where users can
> choose which column of info they want and upon clicking, the JavaScript
populates the multi-choice box with the results of that
> column.  I've seen this done, but I can't for the life of me remember
where.  Can anyone help?
>
> Thanks,
> Dave
>
>
> =
> "Always Drink Upstream From The Herd!"
>
> David Hannum
> Web Analyst/Programmer
> Ohio University
> [EMAIL PROTECTED]
> (740) 597-2524
>
>
>
>
> --

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

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



When Failure IS not an option

2000-05-16 Thread Justin MacCarthy

http://www.genekranz.com/ ( former flight director of NASA ) using Cold
Fusion :-)
Great analogy !!!


~Justin MacCarthy
~CF Astrounaut



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



Re: Member database with access levels -=- CF4.0.1+Access97

2000-05-15 Thread Justin MacCarthy

Hi Tiffany,

What you need to do is check that the user is logged in on each page you
want to secure. One way to do this is the application.cfm to check if the
user is checked in 

 






    goto login page!



This will check to see if the user is logged in when any page in the
application directory is called...

Another way is to create a file to include just at the top of pages you
want to secure..
 asecurepage.cfm ###



a secure page 

## isSecure.cfm #





##  login.cfm   #









So if someone goes to www.yoursite.com/asecurepage.cfm, the IsSecure.cfm
template will look for the cfid & cftoken, to figure out what user this is;
if they are logged in (and haven't timed out) they can view the page
otherwise they are directed to logon.cfm

As far as cookies are concerned you can choose to use them or not, but if
you don't you have to pass Session.UrlToken (which contains cfid & cftoken)
from Page to page via the URL to keep state..otherwise the cfid & cftoken
are set as cookies

Hope that helps :-)

~ Justin MacCarthy
~ Irish CF Head 

you said>
>username and password against the database and sending them to a page
>once they have successfully logged in. The thing is, how do you make it
>so someone cant just copy the URL they were sent to when they logged in
>and paste in a browser window and have it pop up?  Cookies right?


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



.jml Anyone know what language this is ?

2000-05-12 Thread Justin MacCarthy

Hi does anyone  know what language uses the extension .jml ?


~ Justin Mac Carthy

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



Re: [OT] ASP equivalent of CFCONTENT?

2000-05-12 Thread Justin MacCarthy

You need to use the  FileSystem Object with
<% Response.ContentType = "Whatever" %>

~Justin MacCarthy

- Original Message -
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 12, 2000 5:19 PM
Subject: [OT] ASP equivalent of CFCONTENT?


> Sorry for the OT post, but does anyone know the ASP equivalent of the
> CFCONTENT tag? A client of ours (who only has ASP) needs to serve up
> files securely, and keep them off the webroot.
>
> tia,
> ron
>
>
> --

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

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



Re: Gettting a list of Proc's from an NT server

2000-05-12 Thread Justin MacCarthy

I tried that com but there seems to be a problem convert data types in CF..
It should return  a variant array of process id's and process names I tried
it with an Array(2)
Array(1), Struct.. but no luck ...anyone have ideas?





~ Justin MacCarthy

- Original Message -
From: Brian Mitter <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 12, 2000 12:30 PM
Subject: Gettting a list of Proc's from an NT server


> Hi all,
>Im trying to list processes that are running on our CF server (NT)
> Can I do this in any way with ColdFusion? Or do I have to use an ASP
object?
> I have found one called ProcACP on the server objects site which does
> exactly what I want.
> I can't get my head around how to call this with cfobject though.
> Can anyone quickly show me how to call this from CF please?
> This is the example that came with the object:
>
> --cut --
> <%
>   Set ProcList = Server.CreateObject("ASPsvg.Process")
>
>   strProcessIDtoKill = Request.QueryString("ProcID")
>   if strProcessIDtoKill <> "" then
> if ProcList.Kill(strProcessIDtoKill) then
>   Response.Write("Process " & strProcessIDtoKill & " terminated
> successfully")
> else
>   Response.Write("Process " & strProcessIDtoKill & " termination
> failed")
> end if
>   end if
>
>   varArray = ProcList.GetProcessList
>   Response.Write ("")
>   Response.Write ("Process IDProcess
> Name")
>   ArrayLimit = UBound(varArray) -1
>   For I = 0 to ArrayLimit
> strProcessID = varArray(I)(0)
> strProcessName = varArray(I)(1)
> Response.Write "" & strProcessID & "" & strProcessName &
> ""
>   Next
>
>   Response.Write ("")
> %>
> --cut --
>
> I'm not interested in the first part for killing Proc's, just the latter
> part that LISTS the running ones.
> Has anyone done anything like this before?
>Thanks
>  Brian
>
>
> --

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

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



Re: REVERSE QUESTION --- Is there anything that Cold Fusion can do that ASP can't do?

2000-05-12 Thread Justin MacCarthy

While I've found anything I've wanted to do in CF is possible, it can to a
bit of a mess to code things at times, the more script v's tag method of
coding in ASP, does make for neater code sometimes ; and neater = less
mistakes :-)
Hopefully CF5 will have the ability to create functions in cfscript + more
functionally in cfscript generally.


~Justin MacCarthy


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



Quick Question

2000-05-10 Thread Justin MacCarthy

I got a CFM page with form(A)  with textarea's hidden fields etc which
is submitted to another page with a form(b) and the values from formA are
set as hidden fields on form(b) which is submitted or whatever.

The question: because users can put any charactors into the formA's textarea
, I'm concerned about chars (<'>" etc) which might break a hidden field. If
I URLEncode the content and then UrlDecode  them to display, will that solve
the problem ?

Cheers

~Justin...

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



Re: CFX_IIS ? (and CF limitation ASP doesn't have)

2000-05-10 Thread Justin MacCarthy

There is a ASP book, which covers some of the VWeb stuff from ASP, of
course, but you can highjack the code from the ASP for CF , it's a wrox book
, here is a link to the source code from the book,

http://www.wrox.com/Consumer/Store/Download.asp?ISBN=1861001797

I'd be interested in the CF- ized version :-) if you use it ...

Hope that helps ...

~Justin MacCarthy


- Original Message -
From: William James <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 10, 2000 3:22 PM
Subject: Re: CFX_IIS ? (and CF limitation ASP doesn't have)


> Another possibility that I'm looking into, not only for managing IIS but
the
> rest of an NT server (Windows 2000, NT 4.0 is a pile of...), is using
> CFEXECUTE and who knows what else to use the Resource Kit Tools. Yes this
> means another $200 for anybody who wants to use the tags, but I think the
> Resource Kit alone is well worth it and when you add on a full suite of CF
> tools so you cando it remotely... well, you get the picture... It's a side
> project of my own so it'll probably take awhile for it to be done, but I'l
> lget it done sooner or later... I've gotten a few through the beta stages
so
> far (like managing users) and as I finish them and get done testing them,
> I'll let the list know as well as try to get them in the Tag Gallery
(these
> will be my first so I don't know how hard/easy it is to get into the Tag
> Gallery).
>
> -Will
>
> - Original Message -
> From: "Jonathan Broome" <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Cc: <[EMAIL PROTECTED]>
> Sent: Wednesday, May 10, 2000 6:59 AM
> Subject: RE: CFX_IIS ? (and CF limitation ASP doesn't have)
>
>
> >
> > To manage the server settings (and a whole lot more) you'll need to use
> > ADSI.  But here's a gotcha - CF can't handle working with ADSI, since
it's
> a
> > complex system of nested COM objects.  ASP can handle this, but CF
> can't --
> > how annoying.  The only way I can think of to make it work is write some
> > kind of COM wrapper that does all the interfacing with ADSI and returns
> > simple strings to CF.
> >
> > If you've got access to it, you can check out the web interface to
> managing
> > iis (vs. mmc) and the pages in %windir%\system32\inetsrv\iisadmin to get
> an
> > idea for what it can do, and how.  If you come across CF code that works
> for
> > this, please post a link to it!
> >
> > Good luck.
> >
> > Jonathan
> >
> > -Original Message-
> > From: Jim McAtee [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, May 09, 2000 2:17 PM
> > To: cf-talk
> > Subject: CFX_IIS ?
> >
> >
> > Does anyone know of a CF or CFX tag that can create and manage IIS
virtual
> > web sites?  I know much of it can be done through Window Scripting Host,
> > but I'd like to avoid running command line programs.  If there's not
> > currently a tag, can this be done through CFOBJECT?
> >
> > Thanks,
> > Jim
> >
>
> --
> --
> > --
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> > http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk
or
> > send a message to [EMAIL PROTECTED] with 'unsubscribe'
in
> > the body.
>
> --
> 
> > Archives: http://www.eGroups.com/list/cf-talk
> > To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> >
>
> --

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

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



Re: How to secure PDF file?

2000-05-10 Thread Justin MacCarthy

Use cfcontent to serve the file Look at alive.allaire.com for egs.


~Justin MacCarthy

- Original Message -
From: Christian Labrecque <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, May 10, 2000 2:09 PM
Subject: How to secure PDF file?


> Hi,
>
> I have some PDF files inside secure directory(applicatiom.cfm).
>
> Any hint to secure PDF like .cfm file ?
>
> Thanks
>
> Chrsitian
>
>
> --

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

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



Re: Basic: number of rows returned?

2000-05-07 Thread Justin MacCarthy

Hi,

Use the following
#queryname.recordcount#
so in your case
#localads.recordcount#

Have a look at these too

queryname.CurrentRow
queryname.RecordCount
queryname.ColumnList

~Justin MacCarthy


- Original Message -
From: WL <[EMAIL PROTECTED]>
To: Cold Fusion Talk <[EMAIL PROTECTED]>
Sent: Sunday, May 07, 2000 8:47 PM
Subject: Basic: number of rows returned?


> Hi,
>
> Sorry for the basic question - but we all have to start somewhere right?
>
> OK all I need to do is find out how many rows are returned on the
following
> Query:
>
> 
> Select sub_id, sub_name, sub_descript
> FROM sub_categories
> WHERE cat_id = '#cats.ID#'
>
> 
>
> Thanks...:)
>
> Will
> --
> Lukrative Media Ltd - Berkshire, UK
>
> --

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

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



Re: group email application

2000-05-05 Thread Justin MacCarthy

Have a look at iMS from CoolFusion.com


- Original Message -
From: Dan Schueler <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, May 05, 2000 5:27 PM
Subject: group email application


> Does anyone have a corporate workgroup email application available?
> What I'm thinking about is an intranet site that would let you choose
> one or more departments to send email to, with an input box and
> reply address.  Also useful would be an approval address to send the
> email to that would allow the moderator to click a button to grant
> the approval.  Kinda like egroups, but a little more versatile and
> a bunch more secure.  I'm about to build such a thing, but thought
> about that wheel thing, reinventing and all.
>
>
> --

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

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



Session overhead / limits

2000-05-02 Thread Justin MacCarthy

Hi,

A vague question on Sessions. How much can you practically store in
session variables?? Is there a limit / or is it just RAM ?? Is there any way
of telling how much RAM is being used to store a session variable ??? Is
there a formula to figure out RAM usage from sessions?

Cheers,

~Justin

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



CF on ASPToday - eh yesterday....

2000-04-28 Thread Justin MacCarthy

A nice article on CF at 

http://www.ASPToday.com/articles/2427.htm


Some interesting quotes...
"...it has been shown to be a scalable, cross-platform solution for Web
developers"
"... a fully featured server-side scripting language, with functionality as
robust and rich as that offered by VBScript running in ASP"
"...considered to be highly optimized in terms of processing time"

 I like it !!! 

~Justin MacCarthy
~Irish CF Head



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



Re: CF & VFP & ODBC

2000-04-28 Thread Justin MacCarthy

Hi what happens with

 SELECT * from delegate
 where delid in
 (101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,1
 16,117,118,119,120,121,122,123,124)
or delid in
 (xxx,xxx,xxx)
etc

YUCK!!! but a work around

Let me know how you get on

~ Justin MacCarthy
~CfHead
- Original Message -
From: Terry Riley <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 3:22 PM
Subject: CF & VFP & ODBC


> Just had a very strange thing happen (repeatable):
>
> Using a Visual FoxPro free table (delegate.dbf), CF4.01 and
> the latest MDAC2.1 drivers, asking CFAS to perform:
>
> SELECT * from delegate
> where delid in
> (101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,1
> 16,117,118,119,120,121,122,123,124)
>
> works fine, and gives me the results. If I add another number
> to the IN list, making 25 list items, it falls over with the
> message:
>
> [Microsoft][ODBC Visual FoxPro Driver] SQL expression is too
> complex
>
> It doesn't depend on the total length of the list (I tried it
> with '1,2,3,4 etc' with the same results on 24/25 numbers.
>
> Thought maybe it was corrupted drivers, so reinstalled MDAC2.1
> - no difference. Downloaded MDAC2.5 (which includes a newer
> vfpodbc.dll), installed, still the same.
>
> Using the same query natively in VFP does what it is supposed
> to do (and quickly), having no problem handling 350+ numbers
> in the list.
>
> I can't see what can possibly be wrong, except the driver
> can't handle it.
> Surely I'm not the only one out there who's using this
> combination (VFP and CF)?
>
> Has anyone else seen this, got a workaround, or care to try
> something similar on their machine to see if you can reproduce
> it?
>
> Thanks in advance for any pointers/corroboration before I try
> to point this out as a bug..
>
> Terry Riley
> Riley Varea Associates, London, UK
>
> --

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

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



Re: Making a unique ID

2000-04-28 Thread Justin MacCarthy

Has anyone noticed that the uuid returned by CF CreateUUID function isn't
the right format ???
Why?
_ Justin


- Original Message -
From: James Sleeman <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 28, 2000 10:44 AM
Subject: RE: Making a unique ID


> ---Reply to mail from Reagan, Leman about Making a unique ID
> >
> > I am planning to use the  UUID tag (in sever 4.5 or greater) after we
> > upgrade.
> >
> > What does everyone think??
> > Is the 4.5 Server UUID function 'Random' enough for a unique database
ID?
>
> I havn't looked but it won't be random, I don't know what algorithm it
uses or how it is seeded,
> but basically you get a unique 128bit number in a string representation of
the number in
> hexadecimal.  128bits is surely enough to ensure with a high degree that
the
> returned number is totally unique in the
> entire set of cold fusion servers in the world.
>
>
> --

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

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



Re: Directory Security

2000-04-27 Thread Justin MacCarthy

You would be a hundred times better off using an isapi filter to do this.
There are lots out there that can authenticate from a ODBC source ...

Check out http://www.genusa.com/isapi/authfilt.zip for the source code to do
this (from microsoft)

Sometime CF is not always the anwser...

~Justin MacCarthy

- Original Message -
From: Olive, Christopher M Mr USACHPPM
<[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, April 27, 2000 3:37 PM
Subject: RE: Directory Security


> there is a performance hit.  in my experience, it's negligible.
>
> Chris Olive
> DOHRS Website Administrator
> [EMAIL PROTECTED]
>
>
> -Original Message-
> From: Dan O'Keefe [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, April 26, 2000 5:53 PM
> To: [EMAIL PROTECTED]
> Subject: RE: Directory Security
>
>
> To me, when they told me that, I interpreted it as if I place a support
call
> with them and I am routing all htm or html files to the CF dll, they may
> limit their effort in helping to resolve the support call. (Again, my
> Interpretation)
>
> This was during the 2.X days about 3 1/2 years ago, and I did not see much
> point to doing it that way. I inherited a project from a consultant (my
> first CF exposure), and just changed the extensions to .cfm where it was
> necessary. Also, I think somebody else mentioned a performance hit routing
> all page requests through CF.
>
> Dan
>
> -Original Message-
> From: Olive, Christopher M Mr USACHPPM
> [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, April 26, 2000 3:10 PM
> To: '[EMAIL PROTECTED]'
> Subject: RE: Directory Security
>
>
> whoops.  my bad, nick.  i meant to mention that.  i've been in 6 hours of
> meeting stoday, i'm a tad brain dead.
>
> and dan, what does that mean?  there's nothing for allaire to support,
it's
> an IIS thing, not CF.  not that i think you're lying, but i must say, i'm
a
> bit confused as to why allaire would weigh in on this issue.
>
> Chris Olive
> DOHRS Website Administrator
> [EMAIL PROTECTED]
>
>
> -Original Message-
> From: Dan O'Keefe [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, April 26, 2000 1:49 PM
> To: [EMAIL PROTECTED]
> Subject: RE: Directory Security
>
>
> I have also been told by Allaire that they do not support this, for what
it
> is worth.
>
> Dan
>
> -Original Message-
> From: Nick Call [mailto:[EMAIL PROTECTED]]
> Sent: Wednesday, April 26, 2000 11:33 AM
> To: [EMAIL PROTECTED]
> Subject: Re: Directory Security
>
>
> Keep in mind that this may cause a performance issue.  Setting .htm files
to
> read through the CF .dll will cause EVERY .htm request on your site to
route
> through the CF Server, slowing it down a bit.  It your traffic is high
> enough, you may notice a difference.  Otherwise, continue and ignore my
> babbling.
>
> Good Luck!
> Nick Call
> [EMAIL PROTECTED]
> http://www.accessutah.com
>
>
> - Original Message -
> From: "Olive, Christopher M Mr USACHPPM"
> <[EMAIL PROTECTED]>
> To: <[EMAIL PROTECTED]>
> Sent: Wednesday, April 26, 2000 9:36 AM
> Subject: RE: Directory Security
>
>
> > if you're the website admin (have access to the IIS MMC), you can go the
> > properties of your web tsite ->home directory -> Configuration (under
> > application settings) and add
> > .htm mapped to \bin\iscf.dll
> >
> > that'll do it.
> >
> > Chris Olive
> > DOHRS Website Administrator
> > [EMAIL PROTECTED]
> >
> >
> > -Original Message-
> > From: Jeff Bartlett [mailto:[EMAIL PROTECTED]]
> > Sent: Tuesday, April 25, 2000 12:45 PM
> > To: '[EMAIL PROTECTED]'
> > Subject: RE: Directory Security
> >
> >
> > How would one go about having HTML requests go throught the CF dll?
> >
> > Jeff
> >
> > > -Original Message-
> > > From: Olive, Christopher M Mr USACHPPM
> > > [SMTP:[EMAIL PROTECTED]]
> > > Sent: Tuesday, April 25, 2000 10:27 AM
> > > To: '[EMAIL PROTECTED]'
> > > Subject: RE: Directory Security
> > >
> > > one possible way is to feed all HTML requests through the CF dll.
that
> > > will
> > > invoke application.cfm for HTM files as well as CFM files.
> > >
> > > Chris Olive
> > > DOHRS Website Administrator
> > > [EMAIL PROTECTED]
> > >
> > >
> > > -Original Message-
> > > From: Wey Hueymeei [mailto:[EMAIL PROTECTED]]
> > > Sent: Tuesday, April 25, 2000 10:08 AM
> > > To: [EMA

RE :OT: Embedded telnet client?

2000-04-26 Thread Justin MacCarthy

As usual, there is a cf tag to do this :)
Go to www.intrafoundation.com and check out CFX_TCPClient 


~Justin - CFHead

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



Re: Directory Security

2000-04-25 Thread Justin MacCarthy

Upload the files into a protected directory not availible though the web.
Use a 'helper' cfm page which show the file after doing a security check...
Use cfcontent to retrieve the file..

There is an example of something similar at alive.allaire.com

Hope that helps ...

~Justin

- Original Message -
From: Olive, Christopher M Mr USACHPPM
<[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 25, 2000 3:27 PM
Subject: RE: Directory Security


> one possible way is to feed all HTML requests through the CF dll.  that
will
> invoke application.cfm for HTM files as well as CFM files.
>
> Chris Olive
> DOHRS Website Administrator
> [EMAIL PROTECTED]
>
>
> -Original Message-
> From: Wey Hueymeei [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 25, 2000 10:08 AM
> To: [EMAIL PROTECTED]
> Subject: Directory Security
>
>
>
> Hello,
>
> We have a security system built in application.cfm, which disallow users
to
> access our site without providing valid username and password.
> ie. when a user put URL on the location bar, if he has not logged in, he
> would be redirected to the login page first before seeing the actual page.
>
> But we just have a security problem with the system:  There is a directory
> for users to upload files. If the file is not in CFM format, it seems like
> that the application.cfm cannot do security check. Therefore, if the
person
> knows the URL, he could see the page without logging into the system.
>
> Could anybody help?
>
> thanks in advance,
>
> Hueymeei
>
>
> --
--
> --
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
> --

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

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



[ot?] hosting with digex

2000-04-25 Thread Justin MacCarthy

Hi Guys and Gals,

Anyone on the list using Digex for hosting??? Any comments???
 TIA

~Justin 

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



Re: CFENCODE!

2000-04-25 Thread Justin MacCarthy

You chould read the header of the file to see if it is encypted
Also you chould add your own header to the file using th /h option ...

~Justin MacCarthy

- Original Message -
From: Daive <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Tuesday, April 25, 2000 1:32 PM
Subject: CFENCODE!


> Is there a way to check if a cfm file is encrypted or not? Like i'm about
to
> build some utils with login/pass to encrypt specific directory and i don't
> want the user to encrypt a file 2 times. Any ideas?
>
> daive
> --
> [EMAIL PROTECTED]
>
>
> --

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

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



Re: Sorting search results: revisited

2000-04-25 Thread Justin MacCarthy

You need to pass the product variable on to the next page like this :

> Sort by
Manufacturer.

~Justin


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



Re: HELP WITH CASE SENSITIVE LOGIN

2000-04-25 Thread Justin MacCarthy

What database are you authenticating against???

~Justin

- Original Message -
From: Internet Gold Coast Properties
<[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Saturday, April 24, 1999 6:27 PM
Subject: HELP WITH CASE SENSITIVE LOGIN


> This is a multi-part message in MIME format.
>
> --=_NextPart_000_0046_01BE8ECB.8823B7A0
> Content-Type: text/plain;
> charset="windows-1257"
> Content-Transfer-Encoding: quoted-printable
>
> my login page accepts lower case however if I type the same login name =
> and password in upper case the system does not accept the login=20
>
> if I recall I need to use the code  or something similar to that =
> so that the system ignores the case in which the user enters in the =
> login details=20
>
> can I please have some guidance as to exactly the code needed to achieve =
> this and exactly where is this placed
>
>
>
> Kind Regards
>
> Claude Raiola
> E-Mail: [EMAIL PROTECTED]
> Website: www.internetgoldcoastproperties.com.au
>
>
>
> --=_NextPart_000_0046_01BE8ECB.8823B7A0
> Content-Type: text/html;
> charset="windows-1257"
> Content-Transfer-Encoding: quoted-printable
>
> 
> 
>  http-equiv=3DContent-Type>
> 
> 
> 
> 
> my login page accepts lower case =
> however if I=20
> type the same login name and password in upper case the system does not =
> accept=20
> the login 
>  
> if I recall I need to use the code=20
>  or something similar to that so that the system ignores =
> the case=20
> in which the user enters in the login details 
>  
> can I please have some guidance as =
> to exactly=20
> the code needed to achieve this and exactly where is this =
> placed
>  
>  
> Kind Regards
>  
> Claude RaiolaE-Mail:  href=3D"mailto:[EMAIL PROTECTED]">info@internetgold=
> coastproperties.com.auWebsite:=20
>  href=3D"http://www.internetgoldcoastproperties.com.au">www.internetgoldco=
> astproperties.com.au
>  
>  
>
> --=_NextPart_000_0046_01BE8ECB.8823B7A0--
>
> --

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

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



Re: CFQUERY problem

2000-04-25 Thread Justin MacCarthy

'TEXT' is propably a reserved word in Access  change the name of your
table
try myText or something ...


~Justin MacCarthy


> I'm trying to build a dynamically filled drop down select box.  However, I
> keep getting an error message which I cannot resolve, and I'd appreciate
> some advice.  The error message is:
>
> "ODBC Error Code = 37000 (Syntax error or access violation)
>
> [Microsoft][ODBC Microsoft Access Driver] Syntax error in FROM clause.
>
> SQL = "SELECT JokeTitle FROM Text"
> Data Source = "Jokes"
>
> The error occurred while processing an element with a general identifier
of
> (CFQUERY), occupying document position (1:1) to (3:14). "
>
> The code for the form is below.  Please note that the name of the table is
> 'text'.
>
>  DATASOURCE="Jokes"
> NAME="Titles">
>
> SELECT JokeTitle
> FROM Text
> 
>
>
> 
>
>
> 
> 
>  Jokes
> 
>
> 
>
> JOKES
>
> 
>
> Please select the joke titles from the contents of the select boxes below.
> You may select up to five titles at a time.
>
> Joke title #1:
> 
> 
>
> 
> #Titles#
> 
> 
> 
> 
> 
>
> Thanks.
>
> Sincerely,
>
> ---
> Hubert Earl
> ICQ#:  16199853
>
> I develop & maintain web sites internationally.  I also build web
> applications using CGI scripts written in Perl.  I accept subcontracting
> work.
>
> **Personal web site:  http://www.geocities.com/SiliconValley/Peaks/8702/
> (please remember to view this with a sense of humour!)
>
> **Business web page:  http://home.talkcity.com/MigrationPath/hearl/
>
> --

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

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



converting word docs - you might be kicking yourself

2000-04-23 Thread Justin MacCarthy

Hi Greg,
Are you sure the filter is installed ??? I run this and got a HTML convertor!


~Justin 


>Thanks Justin.  This sounded perfect, but it still didn't work.  I
>converted to CF:
>
>   
>   
>   
>  #fileConverter.className#
>   
>
>which gave the following file converters:
>
>  Text with Layout, MS-DOS Text with Layout, WrdPrfctWin, WrdPrfctDOS51, 
>  WrdPrfctDOS50, WrdPrfctDat50, WrdPrfctDat, MSWordMac51, MSWordMac5, 
>  MSWordMac4, MSWord6VIEExp, MSWord6THAExp, MSWord6RTFExp, MSWord6Exp, 
>  MSWordWin2, MSWorksWin4, Recover, Lotus123, MSBiff, MSWordMac, 
>  WordPerfect6x, WrdPrfctDos, SPLUS, OUTLOOK, MSPAB
>
>No HTML file converter.  It seems like this really shouldn't be this
>difficult. 

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



Re: converting word docs to HTML [still not working]

2000-04-20 Thread Justin MacCarthy

Hi guys,

There is .bas script for homesite that does this. In the code the author
notes that


' find the index of the HTML converter (this works around a bug in
' MS Word that prevents accessing the HTML converter by name) '


he does a loop over the .FileConverters collection until he finds  ClassName
= 'html'
and then uses the current convertor to convert the file ..

The script is at : http://scripts.hsguide.com/scripts.html

I hope this info helps ...let me know how you get on ..

Justin  ~Irish ColdFusion Head



- Original Message -
From: Greg Saunders <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, April 20, 2000 3:25 PM
Subject: Re: converting word docs to HTML [still not working]


> At 12:53 PM 4/20/00 -, David E. Crawford wrote:
> >Mike Dinowitz might have it.  We kind of worked together to get the right
> >solution.  Apparently between Office 97 and Office 2000 there was a
> >difference in the parameter for saving the files out.
>
> Apparently so.  Or could it even be a separate method?  I've tried all
> suggestions so far, as well as a brute force search of various Save-as
> types, from -10 to 260, and found this:
>
>   0-7 - save correctly (see David's post on Word formats)
>   -1, 15, 106 - appear to save as Word docs
>   all the rest (including 10 and 100 as suggested solutions) - give a
> "Command failed" error
>
> any other ideas?  I'm running CF 4.0 and Word 2000.  I also ran David
> Crawford's original script, as reposted by David Shadovitz, and it failed
> in the same way.
>
> Thanks to everyone who has responded so far!
>
> Greg Saunders
>
> --

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

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



Re: li'l OT - SQL Server

2000-04-20 Thread Justin MacCarthy

nearly ...

UPDATE table
SET field = (field + 1)
WHERE foobar

> Is there a way to increment a value in SQL server with one database call -
> sort of like
> UPDATE mytable
> SET foofield = foofield++
> WHERE fooid = 2
> ?
>


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



Re: commas in strings

2000-04-20 Thread Justin MacCarthy

Yeah change the custom tag delimiter to a pipe or something else..
shouldn't be too hard?

~Justin

- Original Message -
From: graham lewis <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, April 20, 2000 2:30 PM
Subject: commas in strings


> I writing the results of a query to a list.  The list is a list of
strings.
> However, some of the strings have commas in them.  The list has to
> be comma deliminated as it is used by a custom tag that expects
> that input.
>
> Any bright ideas?
> --

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

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



Re: twoselectsrelated

2000-04-19 Thread Justin MacCarthy

Yes, you need to modify the code so that the JS function names are different
so
change

function #FunctionName# {
 OneA.length = 0;
 menuNum =
document.#Attributes.FormName#.#Attributes.Name1#.selectedIndex;
 if (menuNum == null) return;

to

function #FunctionName##Attibutes.Name1# {

or something like thatI haven't got time to test it , but I did
something like that and it worked find...

BTW Allaire have nothing to do with the tags on the gallery - nate weiss
wrote that tag.

~Justin MacCarthy

- Original Message -
From: Deanna L. Schneider <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 19, 2000 4:32 PM
Subject: twoselectsrelated


> Hi Folks,
> I see this has been asked about on Allaire with no answers given, so I
> thought I'd try here.
>
> Has any one figured out a way to modify the  custom
> tag so that more than one can be performed on the same page?
>
> -or-
>
> Does someone have a solution for having 3 sets of related select boxes
(i.e.
> person gets to choose "category" then choose a bird from the category
three
> times) on the same page? Twoselectsrelated works great for one, but gives
> errors if you try to have more than that.
>
> Thanks,
> Deanna
>
>
>
> 
> Deanna Schneider
> Interactive Media Developer
> UWEX Cooperative Extension Electronic Publishing Group
> 103 Extension Bldg
> 432 N. Lake Street
> Madison, WI 53706
> (608) 265-7923
>
>
>
> --

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

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



SQL 4 Smarties

2000-04-19 Thread Justin MacCarthy

> PS - Make sure to get the 2nd Edition version of Joe Celko's SQL for
> Smarties. According to the liner notes, there are big differences between
> the two versions. Apparently 1st Edition doesn't cover hierarchical trees
to
> the depth that 2nd Edition does.
>
> -Dan

Looks like I'll have to get the 2nd Edition now !

~Justin

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



Re: Parent/Child query

2000-04-19 Thread Justin MacCarthy



> > then the standard adjacent list (aka, the parent/child relation) but it
> > seems to work really will. The concept is based off of something in the
> book
> > "SQL for Smarties"-which is a great book.

I agree with that - "SQL for Smarties" is an EXCELLENT book .Author Joe
Cleeko.
It has especially good examples of using SQL to non-sql type things, like
statistics, trees, lists etc...
as well as showing you how to speed up you more "normal" queries.....

A worthy addition to your bookshelf.

~Justin MacCarthy

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



Re: DB update with email notification

2000-04-13 Thread Justin MacCarthy

Using SQLServer   You could try SQLMail (yuck!) with a trigger ...

~Justin

- Original Message -
From: Kevin Marshall <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, April 13, 2000 5:36 PM
Subject: Re: DB update with email notification


> Karen,
>
> Is there any reason that you couldn't use the CFMail tag in the same cf
> page that inserts the form fields into the data?
>
> It would look like this:
> ---user submits form---
>  (or cfinsert)
> Insert into...
> 
>
> 
> this is an automatic notification that the database has been updated!
> 
>
> I would recommend that you do the mail message after the insert (or
update)
> so that if the db operation fails, the message doesn't get sent
> prematurely.  We currently do something almost exactly like this - except
> that we don't always use form variables for the from,to,...etc.
>
> hth,
> Kevin
>
> At 10:04 AM 4/13/00 -0400, you wrote:
> >Hi,
> >
> >I have a form right now that updates a database in CF.  I would like for
> >an automatic email notification to occur after the database has been
> >updated.  The "to, from and cc" fields would be included in the update
> >form.  Currently, we are using a form2email perl script for email
> >notification.  I am not familiar with CFMail.  Any ideas how this could
> >be accomplished within one form?
> >
> >Thanks!
> >Karen
>
> --
> Kevin Marshall
> Web Application Developer
> eCalton.com, Inc.
> Vero Beach, FL
> www.ecalton.com
> [EMAIL PROTECTED]
> 561.569.4500
>
> --

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

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



Re: Automatically Processing Email in CF

2000-04-13 Thread Justin MacCarthy


Also you chould look at iMS from Coolfusion.com. They have stmp/pop/post
modules you chould use. If you use the smtp module ($500 ish ) you chould
use it to run a script or execute CF code ... check out the site , it will
explain this better :- ), they have a sample in which you can email a stock
symbol and you will get a quote for the symbol emailed back...

~Justin MacCarthy
~Irish ColdFusion Developer

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



Re: How do you test if an index in an Array is defined

2000-04-12 Thread Justin MacCarthy

You can however check if you variable is an array using the IsArray
fuction

~Justin



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



WDDX , prefilling forms

2000-04-11 Thread Justin MacCarthy

Hi people, a vague question 

I remember someone on the list has done a tag, which allows users to go
forward / back in a series of forms, by saving the contents in a wddx
packet, I think it is on one of the CFUG sites ...

Can anyone point me in the right direction???

TIA

~Justin

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



Re: Netscape! Hidden fields?

2000-04-07 Thread Justin MacCarthy

Ok Chris, I thing we need to see all that code !!!



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



Re: Netscape! Hidden fields?

2000-04-07 Thread Justin MacCarthy

You sure you have the closing  tag 


- Original Message -
From: Chris Tazewell <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, April 07, 2000 10:23 AM
Subject: Re: Netscape! Hidden fields?


> This is the resolved source in the Nutscrape browser, the values are from
2
> CF variables but as you can see they are resolved.
>
>  TARGET="body" METHOD=POST>
>
> 
>  VALUE="-2035698287">
>
> The receiving template is pretty much irrelavent because all Im trying to
do
> for debug is test the presence of the two values, just an IsDefined. But
> it's not that code because the debug info on the end of the page shows no
> values (wheareas it does in IE)... all the other form values (not hidden)
> are fine.
>
> Debug info:
>
> ___IE___
>
> Form Fields:
>
> MILEAGE=Mileage
> FORMSBUTTON2.X=32
> FORMSBUTTON2.Y=18
> MODEL=Model
> USERNAME=test
> USERID=-2035698287
>
FIELDNAMES=USERNAME,USERID,MAKE,MODEL,YEAR,MILEAGE,FORMSBUTTON2.X,FORMSBUTTO
> N2.Y
> YEAR=Year
> MAKE=Make
>
> ___Netscape___
>
> Form Fields:
>
> MILEAGE=Mileage
> FORMSBUTTON2.X=39
> FORMSBUTTON2.Y=15
> MODEL=Model
> FIELDNAMES=MAKE,MODEL,YEAR,MILEAGE,FORMSBUTTON2.X,FORMSBUTTON2.Y
> YEAR=Year
> MAKE=Make
>
> Now if anyone can explain this phenomenom (baring in mind I've done this a
> hundred times before without trouble) Ill be chuffing happy. Any issues
with
> frames? Any bizarre bugs?
>
> Cheers
>
> Taz
>
>
> > I've never seen a problem like that.  How about some sample code for the
> > form and the action page?
> >
> > Howie Hamlin
>
>
> --

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

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



[MSAccess] Getting column names in a table

2000-04-06 Thread Justin MacCarthy

Can some remind me how to get the column names from an Access Table, I never
use access so I've forgotten :-) something alone the lines of

"Select * from Systable" of something ???


~Justin who hates MsAccess but has to use it today


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



Re: query.recordcount woes...

2000-04-05 Thread Justin MacCarthy

It's because you have the CheckLogin.recordcount  within the 
tags, therefore if there are no row returned nothing with the cfoutput's
will run

~ Justin
Irish CF Head

- Original Message -
From: McDonald, David <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, April 05, 2000 2:14 PM
Subject: query.recordcount woes...


> I have been trying to set up a username and password login, which is
> working okay, except for the "failed login" scenario.  The  tag does
> not
> execute the  tag for a failed login (ie. query.recordcount is
> 0).  I'm lost as to why.  Here's my code (called from a previous template
> form supplying the username and password variables):
>
> 
> SELECT UserID, Username, Password, FirstName, LastName
> FROM User
> WHERE

> Username='#Username#' AND
> Password='#Password#')
> 
> 
> 
> 
> 
> 
> 
> 
>
> If the recordcount is not equal to 0 (successful login), it works
> beautifully, but if the recordcount is 0 (failed login), the
>  code does not execute, it
> simply returns a blank page (with the cf server info displayed).
>
> Anyone help me with this?  It seems very straightforward but has me
stumped.
>
> --

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

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



Re: Can I CFLOOP this?!?!?

2000-04-05 Thread Justin MacCarthy


Yeah 







or the more elegant (imo)


for(i=1;i LTE 37;i = i +1)  // i hope we get i++ in cfscript soon !!!
{
dummy = Evaluate("DIRCOUNT" & i & "cnt" & #i#);
ques1 = ques1 + dummy;
}



~ Justin The Irish CF Head  



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



Re: being lazy, looking for easy way out

2000-03-30 Thread Justin MacCarthy

There is cfx which allows you to do tcp/ip stuff , telnet , etc... @
www.intrafoundation.com
by Lewis ..


~Justin



- Original Message -
From: Doug Ford <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Thursday, March 30, 2000 5:46 PM
Subject: RE: being lazy, looking for easy way out


>
>
> -Original Message-
> From: John N Westerlund [SMTP:[EMAIL PROTECTED]]
> Sent: Thursday, March 30, 2000 8:38 AM
> To: [EMAIL PROTECTED]
> Subject: Re: being lazy, looking for easy way out
>
> Hey that would be a good tag. Send me one.
>
> -Original Message-
> From: Nick Call <[EMAIL PROTECTED]>
> To: [EMAIL PROTECTED] <[EMAIL PROTECTED]>
> Date: Thursday, March 30, 2000 11:28 AM
> Subject: being lazy, looking for easy way out
>
>
> I was wondering if anyone has written a custom tag that does remote server
> monitoring.  What I am looking for is a setup that will work like What's
Up
> Gold, pinging a service or requesting a page at designated time intervals.
> It would email a system admin if the ping fails or errors are returned.
>
> If this doesn't exist, how many of you would be interested in the free
tag?
> I will take the time to write it if interest is high.
>
> Feedback is wanted.
>
> Nick Call
> [EMAIL PROTECTED]
> http://www.accessutah.com
>
>
> 
> 
> --
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
>
> 
> --
> Archives: http://www.eGroups.com/list/cf-talk
> To Unsubscribe visit
> http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or
> send a message to [EMAIL PROTECTED] with 'unsubscribe' in
> the body.
>
> --

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

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



Re: Inline html editor

2000-03-27 Thread Justin MacCarthy

Look at ActiveEdit  @  http://www.ektron.com/ecm/download.cfm(I
think!)

~ CFHead

Chris Tazewell mumbled >>

Subject: Inline html editor


> Question: does anyone know of a usefull 'inline' html editor that I can
use
> in a CF template?Whether it be a CF custom tag, or an applet or
whatever...
>

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