RE: desktop recording software

2002-10-03 Thread Reilly, Jim

Try the makers of SnagIt: TechSmith, who have a product called: Camtastia.
http://www.techsmith.com/


-Original Message-
From: Ryan Kime [mailto:[EMAIL PROTECTED]]
Sent: Thursday, October 03, 2002 3:26 PM
To: CF-Talk
Subject: RE: desktop recording software


Macs with OSX have one out of the box. Pretty cool, you can record an area
of your screen and then output it as QuickTime. On the windows side, not
sure.

-Original Message-
From: Chad [mailto:[EMAIL PROTECTED]] 
Sent: Thursday, October 03, 2002 2:18 PM
To: CF-Talk
Subject: WOT: desktop recording software


Anyone recommend software the records the movements on your computer?

We want to make an AVI, or MOV of someone using a web page we made so we can
show someone how it works.

Sorry for the WOT.. I am not finding anything obvious on Google.



~|
Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4
Subscription: http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm



RE: WDDX Error in CFMX

2002-09-25 Thread Reilly, Jim

I found the problem in CFMX.
(Raymond, thx for the help!!!)

The problem was that I was wrapping the WDDX returned from a servlet in a
tag like:

cf_wddxcapture output=SupplierList
CFSETTING ENABLECFOUTPUTONLY=NO
cfservlet 
code=#attributes.code# 
writeoutput=yes 
debug=no
jrunproxy=#attributes.jrunproxy#

...
/cfservlet
/CF_WddxCapture

Where the cf_wddxcapture tag works off the returned servlet output
stream (wddx).
and calls this:
cfwddx input=#Trim(ThisTag.GeneratedContent)#
output=tempVar action=wddx2cfml validate=#variables.validate# 


The writeoutput=yes does not work the same as in CF5.
Meaning, it did not write it out to the screen.


So, the fix was to change the writeoutput=yes  to writeoutput=NO 
and then at the end do this:
CFOUTPUT#cfservlet.output#/CFOUTPUT    BEWARE



I understand that CFSERVLET is deprecated in CFMX, but should still work.
Are they any documented (or un-documented) differences in the CFSERVLET tag
from CF5 to CFMX?


I have also noticed some strange-ness on CGI variables being passed in
automatically (or lack there of in CFMX.)     BEWARE




Finally, if I were to change from CFSERVLET to the preferred method:
GetPageContext().include(path)
GetPageContext().forward(path)

How would I be able to call a servlet that is on another machine???
  (I assume CFHTTP would work, but expensive in terms of performance.)
Any thoughts...???


Tkx,
Jim




 
 
Tkx,
James M. Reilly
GlobalSpec
350 Jordan Road
Troy, NY 12180
Tel:  518.880.0200 x318
Fax: 518.880.0250


-Original Message-
From: Reilly, Jim 
Sent: Tuesday, September 24, 2002 11:58 AM
To: '[EMAIL PROTECTED]'
Cc: '[EMAIL PROTECTED]'
Subject: RE: WDDX Error in CFMX


Raymond,

1) There is no datetime tags.
2) There are no quotes as keys, just in the values.

3) I added the Trim.

Still no luck!  I appreciate the help!!!



You or anyone else have a thought...?


Tkx,
Jim

 
 
Tkx,
James M. Reilly
GlobalSpec
350 Jordan Road
Troy, NY 12180
Tel:  518.880.0200 x318
Fax: 518.880.0250


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 24, 2002 11:28 AM
To: CF-Talk
Subject: RE: WDDX Error in CFMX
Importance: Low


There are two confirmed WDDX bugs that may be affecting you:

1) Does your packet contain any date time info? Any large packet with
datetime info will not be deserialized. You must do a regex and replace
any datetime.../datetime with string.../string This will have
zero impact on your ability to use the data.

2) Does your data contain a structure with a key containing a single
quote? Ie, cfset foo[ray's world]. This will not be deserializable.

Also - try adding a trim around the ThisTag.generatedcontent.

===
Raymond Camden, ColdFusion Jedi Master for Hire

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda 

 -Original Message-
 From: Reilly, Jim [mailto:[EMAIL PROTECTED]] 
 Sent: Tuesday, September 24, 2002 11:12 AM
 To: CF-Talk
 Subject: WDDX Error in CFMX
 
 
 I am testing on CFMX Pro box, that has code that currently 
 works in CF 5.
 
 I am getting this error:
 WDDX packet parse error at line 1, column -1. Document root element is
 missing.. 
 
 From this line:
 cfwddx input=#ThisTag.GeneratedContent# output=tempVar
 action=wddx2cfml validate=no
 
 (Note: The WDDX packet is rendered from a servlet, ie: our 
 own wddx packet).
 The packet is about 40940 bytes in length.
 
 1.) Is there a wddx length restriction?  (as possible seen 
 from CF Forums?)
 
 2.) Or any other wddx oddities or change in definition in 
 wddx from CFMX?
 
 
 Here are the top and bottom headers:
   wddxPacket version=1.0
   header/header
   data
   struct
   ...
   /struct
   /data
   /wddxPacket
 
 
 
 
 Tkx,
 James M. Reilly
 GlobalSpec
 350 Jordan Road
 Troy, NY 12180
 Tel:  518.880.0200 x318
 Fax: 518.880.0250
 

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



WDDX Error in CFMX

2002-09-24 Thread Reilly, Jim

I am testing on CFMX Pro box, that has code that currently works in CF 5.

I am getting this error:
WDDX packet parse error at line 1, column -1. Document root element is
missing.. 

From this line:
cfwddx input=#ThisTag.GeneratedContent# output=tempVar
action=wddx2cfml validate=no

(Note: The WDDX packet is rendered from a servlet, ie: our own wddx packet).
The packet is about 40940 bytes in length.

1.) Is there a wddx length restriction?  (as possible seen from CF Forums?)

2.) Or any other wddx oddities or change in definition in wddx from CFMX?


Here are the top and bottom headers:
wddxPacket version=1.0
header/header
data
struct
...
/struct
/data
/wddxPacket




Tkx,
James M. Reilly
GlobalSpec
350 Jordan Road
Troy, NY 12180
Tel:  518.880.0200 x318
Fax: 518.880.0250
__
Your ad could be here. Monies from ads go to support these lists and provide more 
resources for the community. http://www.fusionauthority.com/ads.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: WDDX Error in CFMX

2002-09-24 Thread Reilly, Jim

Raymond,

1) There is no datetime tags.
2) There are no quotes as keys, just in the values.

3) I added the Trim.

Still no luck!  I appreciate the help!!!



You or anyone else have a thought...?


Tkx,
Jim

 
 
Tkx,
James M. Reilly
GlobalSpec
350 Jordan Road
Troy, NY 12180
Tel:  518.880.0200 x318
Fax: 518.880.0250


-Original Message-
From: Raymond Camden [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, September 24, 2002 11:28 AM
To: CF-Talk
Subject: RE: WDDX Error in CFMX
Importance: Low


There are two confirmed WDDX bugs that may be affecting you:

1) Does your packet contain any date time info? Any large packet with
datetime info will not be deserialized. You must do a regex and replace
any datetime.../datetime with string.../string This will have
zero impact on your ability to use the data.

2) Does your data contain a structure with a key containing a single
quote? Ie, cfset foo[ray's world]. This will not be deserializable.

Also - try adding a trim around the ThisTag.generatedcontent.

===
Raymond Camden, ColdFusion Jedi Master for Hire

Email: [EMAIL PROTECTED]
Yahoo IM : morpheus

My ally is the Force, and a powerful ally it is. - Yoda 

 -Original Message-
 From: Reilly, Jim [mailto:[EMAIL PROTECTED]] 
 Sent: Tuesday, September 24, 2002 11:12 AM
 To: CF-Talk
 Subject: WDDX Error in CFMX
 
 
 I am testing on CFMX Pro box, that has code that currently 
 works in CF 5.
 
 I am getting this error:
 WDDX packet parse error at line 1, column -1. Document root element is
 missing.. 
 
 From this line:
 cfwddx input=#ThisTag.GeneratedContent# output=tempVar
 action=wddx2cfml validate=no
 
 (Note: The WDDX packet is rendered from a servlet, ie: our 
 own wddx packet).
 The packet is about 40940 bytes in length.
 
 1.) Is there a wddx length restriction?  (as possible seen 
 from CF Forums?)
 
 2.) Or any other wddx oddities or change in definition in 
 wddx from CFMX?
 
 
 Here are the top and bottom headers:
   wddxPacket version=1.0
   header/header
   data
   struct
   ...
   /struct
   /data
   /wddxPacket
 
 
 
 
 Tkx,
 James M. Reilly
 GlobalSpec
 350 Jordan Road
 Troy, NY 12180
 Tel:  518.880.0200 x318
 Fax: 518.880.0250
 

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



Editing JSP in DWMX and getting functions insite

2002-06-07 Thread Reilly, Jim

I know that I can edit JSP files in DWMX, but if I have a specific java
variable called firstName that is a String, how can I get DWMX to show me a
list of functions of a String class.

So, if I have
String firstName;

and later on in the code I say:
firstName.
that after I type the . I get a pop-up list of String functions, like:
* charAt(int index)
* compareTo(Object o)

etc...

Or does DWMX not support this...?

Any thoughts?


I asked the macromedia.dreamweaver forum, but nobody responded/knew


Tkx,
Jim



Tkx,
James M. Reilly
GlobalSpec
350 Jordan Road
Troy, NY 12180
Tel:  518.880.0200 x318
Fax: 518.880.0250
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



URL Variables in CFMX read-only?

2002-06-04 Thread Reilly, Jim

I heard that URL variables in CFMX are read only.

Is this true?

I sometimes will do something like this, that will break if its true:

cfparam name=URL.MaxRowsToShow default=5 type=numeric



Tkx,
James M. Reilly
GlobalSpec
350 Jordan Road
Troy, NY 12180
Tel:  518.880.0200 x318
Fax: 518.880.0250
__
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Errors - Logs

2001-07-19 Thread Reilly, Jim


Per this Error in as IIS log:

Error,TID=217,07/18/01,20:05:41,Error in exception handler
Error,TID=217,07/18/01,20:05:41,Error in CFX custom tag managerP
Error,TID=217,07/18/01,20:05:41,Mutex timed out in
CCFCustomTagManager::GetTag after waiting for 10 seconds.PpThe error
occurred while processing an element with a general identifier of
(CFX_GETENVPATH), occupying document position (12:1) to (12:41) in the
template file 

There are a few other errors like this (other CFX's - C++ ones) that have
the same problem/error.

Anyone run across this before?

NOTE: This only happens when we are crawled by a search engine. (Scooter -
Altavista)


Possibly we are running into performance issues, but the CPU and memory
stats seem to be fine.


Tkx,
Jim

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

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



RE: CFSCRIPT switch Brain Burp

2001-04-04 Thread Reilly, Jim

Carol,

Not sure what you problem is (CFML errors or unexpected results), but here
is some docs from CF Studio:

switch-case: switch (expr) {case const-expr : statement break ; default :
statement }

In this syntax, const-expr must be a constant (i.e., not a variable, a
function, or other expression). Only one default statement is allowed. There
can be multiple case statements. You cannot mix Boolean and numeric case
values in a switch statement.

No two constants may be the same inside a switch statement.

switch(name)
{
case "John":
{
male=true;
found=true;
break;
}
case "Mary":
{
male=false;
found=true;
break;
}
default:
{
found=false;
break;
}
} //end switch


Note:  That each statement must have a break; in it, or it will continue
thru each case.  Hope that helps!

So, not " around the variable name in the switch


Jim Reilly


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]
Sent: Wednesday, April 04, 2001 3:34 PM
To: CF-Talk
Subject: CFSCRIPT "switch" Brain Burp


Looking for cfscript guru...

I know the answer to this is so simple, but I have tried everything...I
think...
and the next step right now seems to be... asprin, chicken soup and
medication.

I tried:
switch abc; switch 'abc', switch '#abc#', switch #abc#;
switch (abc); switch ('abc'), switch ('#abc#'), switch (#abc#);

and in the output, when the program doesn't get caught up in errors due
to ' or " or #,   abc = r and txt_status always = Unknown

I just don't know what to do next.

What is the secret? how do i script the switch "???abc???" so it works?  

CFSCRIPT
abc = 'r';
switch (???abc???) {
case "s":{txt_status = 'Initial Submission';}
case "r":{txt_status = ' Revision';}
case "a":{txt_status = 'Administration Revision';}
case "j":{txt_status = 'Previously Rejected';}
case "p":{txt_status = 'Processed and updated';}
case "d":{txt_status = 'Previously Deleted';}
default:{txt_status = 'Unknown';}
}

/CFSCRIPT
CFOUTPUT#abc#BR#txt_status#/CFOUTPUT

Thank you, in advance, 
Carol



Carol L. Bluestein
Senior Programmer
NYS Office of Real Property
518-486-6335
[EMAIL PROTECTED]
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

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



CF Studio 4.5.2 Error

2001-02-28 Thread Reilly, Jim


When I save a file  (ctrl-s) in CF Studio 4.5.2,
and my cursor is near a " or a #, it automatically
adds another "  or # respectively, next to it.

Does this happen to anyone else?   Fixes..?
 
(this did not happen before I upgraded from 4.5.1)


Tkx,
Jim

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

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



New CF Version Books

2000-11-09 Thread Reilly, Jim


Ben Forta or anyone that knows:

Is Ben writing a new set of books for CF 5.0,
or waiting until CF 6.0?



 
 
Tkx,
Jim
James M. Reilly 
GlobalSpec.com 
350 Jordan Road 
Troy, NY 12180 
mailto:[EMAIL PROTECTED] 
http://www.GlobalSpec.com 
Phone: 518.880.0200  x318 
Fax: 518.880.0250 

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



RE: Need some help here, unknown error SQL 7008N

2000-09-29 Thread Reilly, Jim

James,

REXX is an IBM programming language (runs interpretative, not compiled),
and runs on all IBM OS's like AS400, OS/2, VM, MVS, etc...
REXX is to those OS's as Basic is to DOS, yet has some parsing
power of perl.

Anyway, sound like the datatypes are incorrectly passed from your
SQL statements to the types of the database fields.  (ie: if
ID is numeric remove the ' ' and/or the date fields are Date type,
then also remove the ' ', thus:
'#date#'  becomes  '#date# and
'#form.id#' becomes #form.id#


Hope this helps!


Jim

-Original Message-
From: James Taavon [mailto:[EMAIL PROTECTED]]
Sent: Thursday, September 28, 2000 11:17 AM
To: CF-Talk
Subject: Need some help here, unknown error SQL 7008N


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

I checked to see what the error meant and it said this:

SQL7008N REXX variable "variable" contains inconsistent data. 

 Cause: A variable that contained inconsistent data was passed to REXX. 

 The command cannot be processed. 

 Action: If the variable is an SQLDA, verify that the data and length
fields have been assigned correctly. If it is a REXX variable, verify
that the type of data is appropriate to the command where it is being
used. 

What is a REXX varible anyway?

I checked my data types and lengths and they all check out. What could
be causing this error??? I am using AS/400 on the back-end.


 
cfquery name="NewRequest" datasource="OIMDBADM"
insert into oimdbadm.newreq (time, date, agency, reqtype,
requester, req_email, phone, due_date, title, descrip, id, assigned)
values  ('#time#', '#date#', '#form.agency#', '#form.reqtype#',
'#form.requester#', '#form.req_email#', '#form.phone#',
'#form.due_date#', '#form.title#', '#form.descrip#', '#form.id#',
'#form.assigned#')
/cfquery
--327729A9AA7CC339FC1F4ECE
Content-Type: text/x-vcard; charset=us-ascii;
 name="jtaavon.vcf"
Content-Transfer-Encoding: 7bit
Content-Description: Card for James Taavon
Content-Disposition: attachment;
 filename="jtaavon.vcf"

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

--327729A9AA7CC339FC1F4ECE--


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



OT: CSS

2000-08-24 Thread Reilly, Jim



Anyone have a document/list/URL's of things that "work/don't work"
on NS4+ and IE4+ browsers?

(looking for many as I can get...)


Example:
TABLE { vertical-align : middle; text-align : center; background-color :
green; }

Option  NetscapeIE
==  ===
text-align : center;no  yes

...
..
.
.


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



Custom Tag Calling Page

2000-08-23 Thread Reilly, Jim



Can anyone tell me from with-in a custom tag,
to get the name of the calling .cfm file?

Tkx in advance!
 
 
Tkx,
Jim
James M. Reilly 
GlobalSpec.com 
350 Jordan Road 
Troy, NY 12180 
mailto:[EMAIL PROTECTED] 
http://www.GlobalSpec.com 
Phone: 518.880.0200  x318 
Fax: 518.880.0250 
--
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: Rounding of numbers

2000-07-06 Thread Reilly, Jim


Try:Round(number) 

It returns a number to the closest integer.


Jim


-Original Message-
From: Stewart McGowan [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 06, 2000 12:42 PM
To: '[EMAIL PROTECTED]'
Subject: Rounding of numbers


Sorry for the noddy nature of the question but its 5.30 i've had a tooth out
today and i'm getting no sympathy :)

how do i round a number i've got as a result of a piece of arithmatic?
Thanks as always

Stew

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



RE: What am I doing wrong?

2000-07-03 Thread Reilly, Jim

Lisa,

A semicolon is not needed in a CF SQL statement
and also you really have an SQL UPDATE cmd since
you have a WHERE clause.  So, you either need to
change the INSERT to UPDATE or remove the WHERE 
clause.   Also, remove the ;

Jim

-Original Message-
From: Lisa Greenberg [mailto:[EMAIL PROTECTED]]
Sent: Monday, July 03, 2000 2:05 PM
To: cftalk
Subject: What am I doing wrong?



I am trying to insert data into a table and get the
following errors.  I provided the semicolon, yet I still get
the errors.  What am I doing wrong?

TIA,

Lisa


ODBC Error Code 37000 (Syntax error or access violation)
[ODBC Mircosoft Access Driver] Missing semicolon (;) at end
of SQL statement.

cfquery  name="ptobs" datasource="#dsn#" dbtype="odbc"
  insert into ptobs
   (pi,patno,PSL_ID,currPI,PIreason,pires_ot,dttype,results,
modHAART, intHAART, intreason, fatmaldis, hypergly, gly_pre,

hyperlip, lip_pre, lla_yn, ll_agent, lla_dose,
anti_dyn,anti_d, antid_ot, antid_ds)
values ( '#ptdat.pi#','#variables.patno#',
   #session.PSL_ID#, '#currPI#',
'#attributes.PIreason#',
'#attributes.pires_ot#',
 #CreateODBCDateTime(variables.dttype)#,
'#attributes.results#',
 '#attributes.modHAART#',
 '#attributes.intHAART#',
  '#attributes.intreason#',
 '#attributes.fatmaldis#',
 '#attributes.hypergly#',
 '#attributes.gly_pre#',
 '#attributes.hyperlip#',
  '#attributes.lip_pre#',
  '#attributes.lla_yn#',
  '#attributes.ll_agent#',
  '#attributes.lla_dose#',
 '#attributes.anti_dyn#',
 '#attributes.anti_d#',
 '#attributes.antid_ot#',
 '#attributes.antid_ds#' )
 where   demog.PSL_ID=#session.PSL_ID#
  ;
/cfquery









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



CF_Image AutoResize CF Tag

2000-06-27 Thread Reilly, Jim


I was working with AutoResize CF tag.

After viewing the AutoResize.cfm file I seen these cmds:
 
  cfx_image action="iml"
file="#attributes.imagepath#\#photo#"
commands="
  resize #attributes.thumbsize#
  write #attributes.thumbpath#\#attributes.prefix##photo#"

and
 
  cfx_image action="iml"
file="#attributes.imagepath#\#photo#"
commands="
  resizeif #attributes.maxsize#,-1,#attributes.maxsize#
  write #attributes.imagepath#\#photo#"  

 
I was wondering if anyone could explain the action and commands strings
in both.  More specifically, the resize  resizeif, as well as
the 3 attributes after resize, like the  -1.   What do they mean?

 
Basically, is there any documentation on this CFX_Image tag?
 

Any help would be much appreciated!
 
Tkx,
Jim
 
--
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.



RE: cfx tags w/ java are NOT, I repeat NOT a pain! 8-)

2000-06-20 Thread Reilly, Jim

Larry,

Great!!!
(for you, anyway)  :-)

I tried that before, and now again, after your success,
and it still does not work.  I changed my java code,
re-complied, made sure the reload="always" was there,
the .class file re-compiled to the correct dir,
and it still did not work.  I have the class file
in the Java/classes dir.   I originally had RELOAD="Always",
so I tried your case (of RELOAD) and that still did not work.
Although when the CF server stops and start, it works!

One question, in the CF Admin in the Edit Java CFX Tag 
do you have the '.class' on the Class Name text field.  I have 
Class Name:  HelloColdFusion
Should it be HelloColdFusion.class ?

When I add the .class, my cfm file errors out with this cmd.

Here is my cmd:
CFX_HelloColdFusion NAME="Jim" reload="always"

Any comments / suggestion would be great!


PS.  Here are my Java Settings: (if that helps!)
Java Virtual Machine Path: c:\jrun\jre\bin\classic
Class Path: C:\CFUSION\Java\classes
CFX Jar Path: C:\CFUSION\Java\classes


Thanks!

Jim


-Original Message-
From: Larry Meadors [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 19, 2000 4:40 PM
To: [EMAIL PROTECTED]
Subject: RE: cfx tags w/ java are NOT, I repeat NOT a pain! 8-)


WOO HOO!

Put your compiled class file in the cfusion\java\classes directory.

Register it w/ CFAdmin.

Use this syntax:

 cfx_hi reload="always"

And it'll work! It really works! COOL!

Larry (gleefully going to get a soda ;-)

 [EMAIL PROTECTED] 06/19/00 01:54PM 
 Larry,

 I (and many other per both this and Allaire's Forums )
 have had the same problem and have not found a
 resolution to this yet.  If you find one, definitely
 pass it along!

 I also have tried the 'reload' in the cfx tag, but that
 did not work either.

If any of you ever get java cfx's working, please post how to the list.
There were a couple of c cfx's of mine I was thinking of converting over but
I'm not even going think of wasting the time fooling with it until it's
working properly.

--min



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



RE: cfx tags w/ java are a pain

2000-06-19 Thread Reilly, Jim

Larry,

I (and many other per both this and Allaire's Forums )
have had the same problem and have not found a
resolution to this yet.  If you find one, definitely
pass it along!

I also have tried the 'reload' in the cfx tag, but that
did not work either.

Tkx,
Jim

-Original Message-
From: Larry Meadors [mailto:[EMAIL PROTECTED]]
Sent: Monday, June 19, 2000 12:31 PM
To: [EMAIL PROTECTED]
Subject: cfx tags w/ java are a pain


Am I missing something?

I'm writing my first java cfx tag for CF4.5, and to get an new version after
I compile it I have to restart the cf services.

I know there's a better way. 

The docs talk about "modifying the coldfusion.cfx.class.reload setting of
the config/jvm.init file" but after looking high and low on the web server,
I could find no such animal. Thinking maybe it got moved into the registry,
I searched for coldfusion.cfx.class, but to no avail.

There's talk about a reload attribute too, but it's unclear whether that is
for the tag (i.e., cfx_test reload="always") or where it goes. I haven't
yet tried putting the class in the classes directory yet (I just saw that)
and will try that (with reload="always" in the tag) next. 

If I see anything helpful, I'll pass it along here.

If any one has any helpful hints, I'd sure appreciate them!

Larry


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



Java CFX Setup Help w/ Reload

2000-06-10 Thread Reilly, Jim

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_01BFD186.A6754070
Content-Type: text/plain;
charset="iso-8859-1"

I am playing w/ Java CFX's  and want to modify the
coldfusion.cfx.class.reload setting of the config/jvm.init file as follows:

coldfusion.cfx.class.reload=Always 

so that I can test  re-build my java code, and have the jvm always reload
from my new compiled code.

Can anyone help and/or point me in the right direction?

It may be in the config/jvm.init , but I cannot find that either.

Any help would be much appreciated!

PS.  Let me know if this email came out at HTML code/format.

Tkx,

Jim


--_=_NextPart_001_01BFD186.A6754070
Content-Type: text/html;
charset="iso-8859-1"

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


META content="MSHTML 5.00.2314.1000" name=GENERATOR/HEAD
BODY
PFONT face="Courier New"SPAN class=223081120-08062000I am playing w/ Java 
CFX'snbsp; and want to m/SPANodify the 
CODEcoldfusion.cfx.class.reload/CODE setting /FONTFONT face=Arialof the 
CODEconfig/jvm.init/CODE file as follows:/FONT/P
PFONT face=Arialcoldfusion.cfx.class.reload=CODEAlways/CODE /FONT/P
PFONT face="Courier New" size=2SPAN class=223081120-08062000so that I can 
test amp; re-build my java code, and have /SPAN/FONTFONT 
face="Courier New" size=2SPAN class=223081120-08062000the jvm always reload 
from my new compiled code./SPAN/FONT/P
PFONT face="Courier New" size=2SPAN class=223081120-08062000Can anyone 
help and/or point me in the right direction?/SPAN/FONT/P
PFONT size=2FONT face="Courier New"SPAN class=223081120-08062000It may 
be in /SPAN/FONTFONT face="Courier New"SPAN class=223081120-08062000the 
CODEconfig/jvm.init , /CODE/SPAN/FONT/FONTFONT face=ArialbSPAN 
class=223081120-08062000ut I cannot find that either./SPAN/FONT/P
PFONT face=ArialASPAN class=223081120-08062000ny help would be much 
appreciated!/SPAN/FONT/P
PFONT face=ArialSPAN class=223081120-08062000PS.nbsp; Let me know if this 
email came out at HTML code/format./SPAN/FONT/P
PFONT face=ArialSPAN class=223081120-08062000Tkx,/SPAN/FONT/P
PFONT face=ArialSPAN class=223081120-08062000/SPAN/FONTFONT 
face=ArialSPAN class=223081120-08062000Jim/SPAN/FONT/P/BODY/HTML

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



RE: Training

2000-05-22 Thread Reilly, Jim


I have taken quite a few classes w/ Learning Tree
and they are great!  Teachers are real-lifers...
I have not taken any CF courses from them, but again
the ones I did were great.


Jim

-Original Message-
From: Joel Firestone [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 22, 2000 10:59 AM
To: [EMAIL PROTECTED]
Subject: OT: Training


Everyone:

Was wonderin gif anyone has taken any training classes from Learning Tree.
I'm signing-up for a class, and was just curious if anyone has had
experience
with them, and how it was. I was hoping Fig Leaf would re-open to the CF
Top Gun course or the JavaScript course, but both look to be put on hold.

Thanks.

===
Joel Firestone - Lead Developer
Delmarva Online
http://www.dmv.com/



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



RE: Setting Focus to Field

2000-05-15 Thread Reilly, Jim


The names are case sensitive.
So, if your form is NAMED  "TEST"

then you will need:
body onload="document.TEST.fieldname.focus()"

whereas:
body onload="document.Test.fieldname.focus()"
would NOT work.

Same goes for the fieldname..

Hope this helps!



-Original Message-
From: Perez, Bismark [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 15, 2000 11:27 AM
To: Cf-Talk (E-mail)
Subject: Setting Focus to Field


Hello there,

I was looking in the Allaire tutorials and found a way to set the focus to a
field as soon as the page is loaded, the problem is that it does not work
for me, can somebody tell me what I'm doing wrong...

body onload="document.someform.fieldname.focus()"

TIA
Bismarck Perez


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



RE: Setting Focus to Field

2000-05-15 Thread Reilly, Jim

John,

Create and Call a JS function to handle the
current on load js code as well as the focus call
like: 

HTML

HEAD
TITLE Test onload/TITLE

script language="JavaScript"

!--
function CheckOnLoad()
{   
   your other js code

   document.TEST.fieldname.focus();

   .. any other js code
}


//--
/script

/HEAD


body onload="CheckOnLoad()"

rest of body.

/body
/html


Jim



-Original Message-
From: John Allred [mailto:[EMAIL PROTECTED]]
Sent: Monday, May 15, 2000 2:51 PM
To: [EMAIL PROTECTED]
Subject: Re: Setting Focus to Field


"Reilly, Jim" wrote:
 
 body onload="document.TEST.fieldname.focus()"
 

If I already have an onload in a page, how would I add this one too? I'm
doing some preloading, and I'd like to also set the focus to a form
field.

Thanks,
--John

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



RE: Detect if JS is Enabled

2000-04-10 Thread Reilly, Jim


This will definitely tell you if JS is on.

Although they could have JS on and cookies off,
thus giving you the wrong results.

Basically, not the best check.  

Use the NOSCRIPT ... /NOSCRIPT  tags

Jim Reilly

-Original Message-
From: Nick McClure [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 10, 2000 2:08 PM
To: [EMAIL PROTECTED]
Subject: Re: Detect if JS is Enabled


What I sometimes do is set a cookie using JavaScript and then try to read 
it with CF.

At 11:27 AM 4/10/2000 -0600, you wrote:
This is a multi-part message in MIME format.

--=_NextPart_000_002A_01BFA2DF.C0B8B380
Content-Type: text/plain;
 charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Is there a way to detect (on the server side) if a client browser has =
JavaScript enabled? I'm most concerned about Netscape 4.x. When =
JavaScript is disabled in Netscape, it does more than disable =
JavaScript. It also ignores the positioning of layers and the formating =
of cascading style sheets (I do have cascascading style sheets enable in =
my preferences).

Anybody have any ideas?

Jeff Braunstein
Healthwell.com

--=_NextPart_000_002A_01BFA2DF.C0B8B380
Content-Type: text/html;
 charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
Is there a way to detect (on the = server side)=20 if a client browser has 
JavaScript enabled? I'm most concerned about = Netscape=20 4.x. When 
JavaScript is disabled in Netscape, it does more than disable=20 
JavaScript. It also ignores the positioning of layers and the formating = 
of=20 cascading style sheets (I do have cascascading style sheets enable 
in my = preferences).

Anybody have any ideas?

Jeff Braunstein
Healthwell.com

--=_NextPart_000_002A_01BFA2DF.C0B8B380--

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

--
Nick McClure[EMAIL PROTECTED]
Technical Director  606.245.9656
squareFish Mediawww.squareFish.com


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