Re: 2006 Turn Around?

2006-01-11 Thread Chris Stoner
Hi Mike,

I live in Cary and am in the market for new position.  I have attached a
text version of my resume for your review.  If you need another format let
me know but I assume that as a recruiter you will most likely reformat it
any way.  If not, just let me know.

Chris Stoner

On 1/11/06, Burchett, Mike [EMAIL PROTECTED] wrote:

 Speaking of more opportunities...I am looking to fill multiple positions
 for
 several dynamic clients here in the Charlotte, NC area.  Aquent is an
 international firm looking to fill positions all over the world however,
 these particular positions happen to be in Charlotte.  I have clients
 looking for solid CF developers on several levels.  If you are interested
 in
 a permanent position in this great city, please contact me at the number
 below.  You can also email me back if you wish.

 Of course it goes without saying, I would really appreciate any referrals
 if
 you happen to know some good CF developers who may not see this email.  I
 have multiple positions to fill so the more response, the better.

 Regards,
 Mike Burchett
 Charlotte-IT Branch Manager
 ___



~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:11:2813
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/11
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:11
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: 2006 Turn Around?

2006-01-11 Thread Chris Stoner
Sorry list members, I just noticed I replied to the list.  I thought I was
in the cfjobs list which replys to the sender and not the list.


~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:11:2815
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/11
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:11
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.11
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Converting ASP class to CFC

2005-12-01 Thread Chris Stoner
There is no reason you cannot do it exactly this way:

cfscript
myTabControl = createObject(component,path.to.TabControl);
myTabControl.TabType = TabTypeDynamic;
myTabControl.TabSelected = DefaultTab;
myTabControl.ControlImagePath = ../tabcontrol/;
myTabControl.ControlScriptPath = ../tabcontrol/;
/cfscript

However, two things you might want to do (best practice):
1.  Move the set up to an init method like you suggested (make sure you
return the this scope in the init)

cfset myTabControl =
createObject(component,path.to.TabControl).init(TabTypeDynamic,DefaultTab,../tabcontrol/,../tabcontrol/)
/

2.  Make the data properties private (use variables scope rather then this
scope inside cfc) and uses accessor methods to change them.

cfset type = myTabControl.getTabType() /
cfset myTabControl.getTabType(TabTypeDynamic) /


On 12/1/05, Robert Everland III [EMAIL PROTECTED] wrote:

 I have a couple questions about doing this.

 How would I emulate this behavior?

 Set MyTabControl = New TabControl
 MyTabControl.TabType = TabTypeDynamic
 MyTabControl.TabSelected = DefaultTab
 MyTabControl.ControlImagePath = ../tabcontrol/
 MyTabControl.ControlScriptPath = ../tabcontrol/

 I am thinking I would need to have an init() function because I don't
 think a cfc can be created like that. I have this. variables in my cfc so
 should I be able to do MyTabControl.whatever as long as there is a this in
 the cfcomponent?




 Bob

 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225842
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Converting ASP class to CFC

2005-12-01 Thread Chris Stoner
No, I meant using the variables scope as that will persist it for the length
of the object as a private property.  My intention was not to limit the
variable to a single method (to protect against race conditions/collisions),
but to encapsulate it within the object in a protected/private state.

Using the this scope (or setting myTabControl.TabType =
TabTypeDynamic)will set a variable to the objects public scope and
persist it for the life
of the object.  Using the variables scope in conjunction with accessor
methods (setXXX and getXXX ) will also persist the variable for the life of
the object, but in a private scope only available from within the object or
by its methods.




On 12/1/05, Russ [EMAIL PROTECTED] wrote:

 You do mean use the var keyword instead of using the variables scope?  The
 variables scope is, I believe, a class wide scope, and the only way to
 limit
 the scope to a single method is to use the var keyword (or arguments
 scope)




~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:225869
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Loop through a structure of structures

2005-10-13 Thread Chris Stoner
On 10/12/05, Andy Mcshane [EMAIL PROTECTED] wrote:

 Thanks, I just realised that before I posted again, God alone knows what I
 thought I was trying to do with it earlier! The 17 recordsets are all
 returned via one stored procedure call within the CFC so there really is
 only DB call, couldn't do it any other way as the data that is returned is
 keyed on a position on screen so I have to get all top row, middle row, etc
 data.

  Without knowing all the details of your problem its possible that what you
are trying to accomplish can be done with the group attribute of cfquery and
one result set.
 If you group your recordsets with in your query with a column that
describes the recordset and order by that group column, you can the use the
cfouput with a group, for example
  LOCATION AGE ID NAME
TOP 22 1 Wibble
TOP 21 2 Wobble
MIDDLE 22 3 Wibble
MIDDLE 21 4 Wobble
MIDDLE 30 5 Woo
BOTTOM 34 6 Wibble
BOTTOM 23 7 Wobble
BOTTOM 33 8 Woo
 cfoutput query=myQuery group=Location
 #Location#BR
 cfoutput
 #Age# #ID# #Name#BR
 /cfoutput
/cfoutput


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:220953
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Storyboard Tool

2005-06-03 Thread Chris Stoner
Adalon is a pretty good freeware wireframe tool that can be upgraded
(purchased) to become a very good requirements, mockup and process modeling
tool.

http://www.adalon.net




- Original Message - 
From: Richard Colman [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Friday, June 03, 2005 2:36 PM
Subject: Storyboard Tool


 Does anyone know of tools to rapidly storyboard a sequence of screens
for
 testing purposes.

 Tried:

 Visio - too clunky and hard to use

 Code in HTML without functionality - too slow

 Any recommendations appreciated

 Richard Colman




 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:208562
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Database Normalization Question

2005-04-14 Thread Chris Stoner
The third table allows for a many to many relationship.  So a person can
have more then one position in your example.


- Original Message - 
From: Rick Faircloth [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Thursday, April 14, 2005 2:08 PM
Subject: Database Normalization Question


 Greetings, all...

 Instead of two tables like this:

 Positions (Yes, I like plural table names :o)

Position_ID (Primary Key)
Position_Title
Position_Description
etc

 Employees

Employee_ID (Primary Key)
Position_ID (Relational Key)
Employee_FirstName
Employee_LastName
etc



 I've seen many use examples of three tables, a third table
 which seems to be the way of creating relationships between tables.
 I just typically do it with two tables and what I always thought of as a
 Foreign Key, which may not be the accurate term anyway.  Here's
 a probably poor example of the three table scheme I've seen:

 Positions

Position_ID (Primary Key)
Position_Title
Position_Description
etc

 Employees

Employee_ID (Primary Key)
Employee_FirstName
Employee_LastName
etc

 Employee_Positions

Employee_ID
Position_ID


 It seems like the third table is used to tie the Positions table and
 Employees
 table together, but I don't see the benefit of creating that third table
 when I can just put the Position_ID in the Employees Table...

 This may be a poor example of what I'm talking about.  I can't think of an
 exact example I've seen, but those of you who do this will know, probably,
 what I've referring to.  I thought I've been doing correct normalization.
 Using the third table seems to cause the use of repeated data and more
 tables than the first example...so why is it done?  What am I missing in
 my database design, which, of course, would determine how I have to code
in
 CF
 and SQL...

 Rick




 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202811
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Database Normalization Question

2005-04-14 Thread Chris Stoner
You don't actually need the Employee_Position_ID, just make the primary key
out of both the Position_id and Employee_ID columns, i.e.:

Employee_Positions
Position_ID  [pk][fk]
Employee_ID   [pk][fk]




- Original Message - 
From: Rick Faircloth [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Thursday, April 14, 2005 2:37 PM
Subject: RE: Database Normalization Question


 Thanks, Chris  Jochem...

 Yes, I believe I understand...I've just never run into a situation
 that forced the usage of the third table for me...such as multiple
 positions for single employees...or perhaps I've just worked around
 it.  Now I'll have to figure out how to change my queries to reflect
 the use of this third table...

 I guess I just run regular insert, add, delete queries on the
 Positions and Employees tables, then when the time comes
 to assign a position to an employee, I'd list the employees,
 select one to the get the Employee_ID, then use a drop down
 of Postions to insert the Employee_ID and Position_ID into
 the Employee_Positions table.

 I guess I'd need to add an Employee_Position_ID to the
 third table?  So it would be:

 Employee_Postions

Employee_Position_ID
Position_ID
Employee_ID

 Is this proper perspective?

 Rick


  -Original Message-
  From: Jochem van Dieten [mailto:[EMAIL PROTECTED]
  Sent: Thursday, April 14, 2005 2:25 PM
  To: CF-Talk
  Subject: Re: Database Normalization Question
 
 
  Rick Faircloth wrote:
  
   Positions (Yes, I like plural table names :o)
  
  Position_ID (Primary Key)
  Position_Title
  Position_Description
  etc
  
   Employees
  
  Employee_ID (Primary Key)
  Position_ID (Relational Key)
  Employee_FirstName
  Employee_LastName
  etc
 
  or
 
   Employee_Positions
  
  Employee_ID
  Position_ID
  
  
   It seems like the third table is used to tie the Positions table and
   Employees table together,
 
   This may be a poor example of what I'm talking about.
 
  It is an excellent example. Just answer the following questions
  and it should all become clear :)
 
  How many positions can an employee have in your first example?
  How many positions can an employee have in your second example?
  How many positions can an employee have in your company?
 
  Jochem
 


 

~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:202825
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: You have to laugh - the world is full of half-wits

2005-04-06 Thread Chris Stoner
Good point, this guy is obviously an idiot because the only possible way to
access the Internet is via DSL.


- Original Message - 
From: Mike Kear [EMAIL PROTECTED]
To: CF-Talk cf-talk@houseoffusion.com
Sent: Wednesday, April 06, 2005 10:15 AM
Subject: OT: You have to laugh - the world is full of half-wits


 One of my clients has got me setting up their ADSL broadband and
 getting their internet connections set up for them.   I was talking to
 their ISP today, about when the ADSL line would be operative.

 Oh about 7-10 days.. the guy said.

 I said,   Thats a bit long,  but if that's how long it takes I'll
 have to live with it.   How will I know when the line is active? I
 asked.(I do know already that one way to tell is when the modem
 starts to wink at us.  That's how I'll know, but I was kind of hoping
 I'd get him to agree to calling us or something.)

 He said we'll send you an email to let you know it's working.  I
 swear he said that totally deadpan, not kidding, he was serious about
 it.   I laughed and said you what??

 He said we'll send you an email when it's active to you can set up
 your modem on the line then.

 He was perplexed when I started laughing out loud.  I said  do you
 know what you just said?  Does that seem at all strange to you?

 No.  Why?

 I said Are you related to the Telstra [phone company]  person who
 told me once that if I had a problem with my phone just give him a
 call.

 He sounded puzzled and with what must have been a straight face and
 totally missing my point,  said 'No sir, I have no relatives at
 Telstra at all.

 I swear that's how it went.   He's a half-wit and doesn't even know
 when he's being funny.


 -- 
 Cheers
 Mike Kear
 Windsor, NSW, Australia
 Certified Advanced ColdFusion Developer
 AFP Webworks
 http://afpwebworks.com
 ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month

 

~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:201705
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Convert JavaMail FILETIME=[80CFB6F0:01C51E5F]

2005-03-02 Thread Chris Stoner
Does anyone know how I would convert the following FileTime value to a 
datetime?


~|
Logware (www.logware.us): a new and convenient web-based time tracking 
application. Start tracking and documenting hours spent on a project or with a 
client with Logware today. Try it for free with a 15 day trial account.
http://www.houseoffusion.com/banners/view.cfm?bannerid=67

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:197095
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: Two Selects

2004-12-23 Thread Chris Stoner
You also might want to look at the qForms implementation of this 
concept.  Its pretty easilly implemented.

http://www.pengoworks.com/qforms/docs/examples/n-related_selectboxes.htm


Tim Laureska wrote:

Andy... I'd sure be interested
Tim

-Original Message-
From: Andy Mcshane [mailto:[EMAIL PROTECTED] 
Sent: Thursday, December 23, 2004 12:24 PM
To: CF-Talk
Subject: RE: Two Selects

Slightly OT but I managed to alter the 3 selects and create a 4 selects
related tag if that is of any help to anyone? It was a nightmare to do
and I can't actually remember how I did it but it works great, I had to
alter it to enable a user to select a region, country, division  club,
I am sure it could be useful for other things with a few more changes?


  




~|
Special thanks to the CF Community Suite Silver Sponsor - New Atlanta
http://www.newatlanta.com

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188683
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations  Support: http://www.houseoffusion.com/tiny.cfm/54


Re: looping through checkboxes

2004-08-25 Thread Chris Stoner
Kill the evaluate and reference the form or url scope as a struct:

cfif structKeyExists(form,departments[i])
 ...do crap...
/cfif

Daniel Kessler wrote:

 I'm trying to do a cfloop to go through a set of checkboxes by an
 array of their names and if they're define, then take their value and
 make an appended string.If a variable is missing, it dies on the
 isDefined and also did so with parameterExists with this error
 Parameter 1 of function IsDefined, which is now quot;Center on
 Agingquot;, must be a syntactically valid variable name. The
 value that it complains about is the checkboxes value but I was
 trying to get the variable name in there through the evaluation.

 Here's the code:

 cfset the_dept = 
 cfset departments = listToArray(aging,fmst,knes,dean,pch,studserv)
 cfloop index=ii from=1 to=6
cfif isDefined(evaluate(departments[ii]))
cfset the_dept = #the_dept#|#tmp_dept#
/cfif
 /cfloop

 -- 
 Daniel Kessler

 Department of Public and Community Health
 University of Maryland
 Suite 2387 Valley Drive
 College Park, MD20742-2611
 301-405-2545 Phone
 www.phi.umd.edu

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




Re: OT - Stock App question

2004-01-27 Thread Chris Stoner
Try this, you forgot to specify a name for the query:

cfhttp url="" 
method=GET
name=qStockItems
columns=Symbol,LastTradedPrice,LastTradedDate,LastTradedTime,Change,OpeningPrice,DaysHigh,DaysLow,Volume
textqualifier=''
delimiter=,
firstrowasheaders=no
cfdump var=#qStockItems#

- Original Message - 
From: Eric Creese 
To: CF-Talk 
Sent: Tuesday, January 27, 2004 4:33 PM
Subject: OT - Stock App question

I want to take the following and submit it to a database. how do you take the var values and parse through to insert into a database (SQLServer 2000)

CFHTTP METHOD=GET
URL="" 
COLUMNS=Symbol,Last_Traded_Price,Last_Traded_Date,Last_Traded_Time,Change,O
pening_Price,Days_High,Days_Low,Volume
DELIMITER=,
TEXTQUALIFIER=

cfdump var=#CFHTTP.FileContent#
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




CFLAP Record Limit?

2004-01-08 Thread Chris Stoner
I am accessing our active directory via cfldap and it currently only returns 1000 records at a time.I cannot find anything about cfldap having a 1000 record limitation anywhere and my active directory admin is suggesting the limit is not on his side.Does anyone know if there is a 1000 record limit?(BTW before someone asks I am most definitely not using the maxrows attribute) 

Any help would be great, thanks!
 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: ListFind() weirdness

2003-11-24 Thread Chris Stoner
ListFind(list, value [, delimiters ])

The third argument of ListFind is not starting position but rather it is the lists delimiter.So your 1 and 2 delimited list does have exaclty 1 list item (as there are no 1's or 2's in your number).
- Original Message - 
From: Seth Johnson 
To: CF-Talk 
Sent: Monday, November 24, 2003 4:14 PM
Subject: ListFind() weirdness

OK, so I'm having some weird behavior with ListFind() on CFMX and CF 5.

Here's an example.I create a COMMA DELIMITED list of values, each value
actually consists of 3 groups of numbers separated by an underscore.
ListFind() is not returning the proper result when this list contains a
single value.

cfset lstTemp = 4483_035738_8647
cfoutput
#ListFind(lstTemp, 4483_035738_8647)#br
#ListFind(lstTemp, 4483_035738_8647, 1)#br
#ListFind(lstTemp, 4483_035738_8647, 2)#br
/cfoutput

All of the ListFind()s are returning a value of 1, even though they should
be returning 0.

In this case, the list and the value I'm looking for are one and the same,
so a straight ListFInd() should return an index of 1.However, if I call
ListFind() with a starting position of 1, shouldn't it return 0?It works
fine if the list contains more than one value, but not if it has just one
value.

Any help would be VERY much appreciated.

Seth Petry-Johnson


 [Todays Threads] 
 [This Message] 
 [Subscription] 
 [Fast Unsubscribe] 
 [User Settings]




Re: query output to Excel file

2003-09-04 Thread Chris Stoner
push an ordinary html table as a file with an .xls extention using
cfcontent.


- Original Message - 
From: Petr Kysela [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Sent: Thursday, September 04, 2003 10:45 AM
Subject: query output to Excel file


 What would you say is the best way of creating an Excel file from query
 data?
 I don't need to know how to create a .csv file.

 I've seen solutions through ADO objects, ODBC dsn, custom tags, etc.

 But surely there must be something quick and easy.

 Cheers
 
~|
Archives: http://www.houseoffusion.com/lists.cfm?link=t:4
Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

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


CFMX - System Probes

2002-09-01 Thread Chris Stoner

It seems that CFMX has lost the ability to tie in with a load balancer ( im
using an alteon ace director 4), most importantly restrict access to a
specific server from a server probe.  Am I missing something or is this
true?  Does anyone have a work around?

My only thoughts are to use a probe to call a bat file that turns of the
services to iis  cf.  Any thoughts?

__
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: Using CFSWITCH and CFCASE to evaluate URL parameters

2002-08-19 Thread Chris Stoner

Do you by any chance have cfsetting enablecfoutputonly=yes in your
application.cfm? or above this code anywhere?  That could be causing your
problem here.



-Original Message-
From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]]
Sent: Monday, August 19, 2002 11:53 AM
To: CF-Talk
Subject: Re: Using CFSWITCH and CFCASE to evaluate URL parameters


Hmm.. I copied your code and ran it in a test page and it ran just fine --
page=1 or page=2, it works just fine ...

Is that sample information below or the actual code and links?

Paul Giesenhagen
QuillDesign



 OK, I tried your suggestion, and for some reason, it's not working.  I
don't know if I'm doing something wrong or what, but here is my code:

 cfswitch expression=#URL.page#
 cfcase value=1
 Page ONE
 /cfcase
 cfcase value=2
 Page TWO
 /cfcase
 /cfswitch

 Now, IF I type in the address of http://localhost/myapp/mypage.cfm?page=1
THEN in theory, the words Page ONE should appear, correct?  And, in
contrast, if I change that to http://localhost/myapp/mypage.cfm?page=2 THEN,
the words Page TWO should appear, right?

 So...that's what I'm expecting here, but it doesn't seem to be working,
because I don't get any errors, but nothing is appearing on the loaded page.
What am I missing here?

 Bob
 )))


 -Original Message-
 From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]]
 Sent: Monday, August 19, 2002 11:24 AM
 To: CF-Talk
 Subject: Re: Using CFSWITCH and CFCASE to evaluate URL parameters


 cfparam name=url.parameter default=
 cfswitch expression=#url.parameter#
 cfcase value=parameter1
 /cfcase
 cfcase value=parameter2
 /cfcase
 cfdefaultcase
 /cfdefaultcase
 /cfswitch

 Paul Giesenhagen
 QuillDesign





  Does anyone know how I could use a CFSWITCH and CFCASE tags and
  statements
 to check for and evaluate the presence of and value of a URL parameter?
I'm having trouble figuring out what to use for the expression parameter of
the cfswitch tag, to tell it to look at the URL, and for a specific
parameter.
 
  Also, an a different note, is there any way to force the update of the
 address line, or even just the URL using the CFLOCATION tag?  I can get
the cflocation tag to work, so that I can update the location *correctly*.
Meaning, I can use cflocation to change the URL, and then evaluate what the
URL is, and prove that by using cfoutput, but it seems like there are times
when the actual URL that appears in the address line doesn't always reflect
the updated URL that's being evaluated.  I hope that makes sense.  Sorry if
it's confusing.
 
  Any ideas or help would be greatly appreciated.  Thanks in advance.
 
  ::YEX::
 



__
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



RE: Conditional Query loop

2002-05-10 Thread Chris Stoner

why don't you just use the group attribute in cfoutput?




-Original Message-
From: Smith, Daron [PA] [mailto:[EMAIL PROTECTED]]
Sent: Friday, May 10, 2002 2:48 PM
To: CF-Talk
Subject: Conditional Query loop


Is it possible to loop over a query until a condition is met?  Specifically,
I am returning search results, if a certain category exists i want to
display a title, if no records for that category exist I do not want to
display the title.  However I only want to display the title one time if the
records exist.  Looping over the query will display the title the number of
times that the condition exists in the recordset, but a conditional query
doesn't appear to allow a query to loop over.

Thanks for any help,

Daron J. Smith
Web Developer
PSEA

[EMAIL PROTECTED]
717-255-7141
1-800-944-PSEA (7732) x 7141
Please note new email address (old one with 'mail' will soon expire)


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

__
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



RE: Macromedia Folks: What are you thinking?

2002-05-07 Thread Chris Stoner

Christine,

I won't try to talk for everyone here however, as a developer who spends
more time in code then in the look and feel part of a web page, I an see why
everyone is getting a little rude here.  We as Cold Fusion developers have
enjoyed a relationship with Allaire that made us feel as if we were
extremely valued, because we were. We were the primary (or at least
influencers to the primary) source of revenue for allaire. Now, Allaire is
no more.  Macromedia has come in and apparently shifted that view.  No
longer are the coders paramount but rather the desktop publishers/graphic
artist types.  Now you (Macromedia) drop our favorite tool, replace it with
something that is more geared to the WSYIWYG-S editor types and we are left
in the cold.

On top of that, in this thread alone, your replies have been more like get
used to it rather then let us see what we can do to fix this situation.
We are not used to that.  Hell, if I were to imply that to my customers, I
would be fired.  Which brings me to my point.  It appears at first glance
that the old group of developers are no longer your customer, we are just
leftovers.  You are hitting people in their sense of security even if it is
only perception and saying or doing nothing to make us feel different.

We are discussing details on an IDE, which by itself is somewhat benign, but
if you look at the overall attitude (and perceived direction) of Macromedia,
you should be able to easily see why we are getting a bit worried and/or
frustrated with the situation.



  C H R I S  S T O N E R

  time warner cable
  tampa bay division
[EMAIL PROTECTED]


-Original Message-
From: Christine Lawson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 07, 2002 10:15 AM
To: CF-Talk
Subject: RE: Macromedia Folks: What are you thinking?


Hi Everyone,
I know Mike Chambers and Nathan Stanford already pointed this out, but Neil
is not a Macromedia employee. He's a Team Macromedia member, but not an
employee, and his views are his own - not Macromedia's. Anyhow, I've been
using CF Studio for a long time, I'm also one of the CF'ers Vernon spoke to
yesterday and we went through the differences between CF Studio and
Dreamweaver MX. I know a number of people on this list from the Allaire days
and I (and everyone else at Macromedia) value *all* of your feedback. I know
Vernon already pointed out the wishform, and yup, I'm going to point it out
again :) http://www.macromedia.com/support/email/wishform?6213=6 PLEASE post
your feedback, it really can help develop future versions of our products...
However, I'm also going to go through each and every one of these messages
and make my own summary of your wants/needs/opinions so your feedback is
organized and clear. If I find something that can be done in Dreamweaver,
I'll be sure to post with the steps. In the meantime I have one request:
please, please, please, can we be polite when we post? I know the majority
of people have been but Michael Dinowitz has been nice enough to host this
list for us - we're all in the same boat here let's please respect one
another's opinions.

I hope this helps, now I'm on to organizing your feedback...

Christine Lawson
Macromedia Technical Support


-Original Message-
From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 07, 2002 9:01 AM
To: CF-Talk
Subject: RE: Macromedia Folks: What are you thinking?


*** you wrote *
OK so now we're being told by MM what is and is NOT good practice, dont seem
right to me lol
we should be able to access files directly with RDS/FTp
of course mistakes happen but you'll have people making mistakes with this
style of doing it too.
Did you get alot of people yelling at MM saying OHHH because i was able to
access files directly with RDS i fubared my whole site
and i'm going to sue MM?? No they said damnit i goofed and fixed it.
**

Somewhat ironic as well - considering the amount of time I have to take on a
regular basis hand editing DW files so they conform to our coding
standards - sometimes I can't believe all the crap DW puts in the files my
content people save to the site. But (sigh), I guess I'm just a careless RDS
users (LOL).




__
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



RE: Macromedia Folks: What are you thinking?

2002-05-07 Thread Chris Stoner

I was not making an accusation, but rather saying it could easily be
perceived that way (note my use of the words
appears,perception,percieved). I'm sorry if the message Came across
differently but I try to limit my use of smiley's.  Also, I was using your
as more of a Macromedia grouping and apparently didn't make that clear,
therefore, I would like to apologize to Christine for that.  I do however
feel my message was valid.

 -- chris stoner







-Original Message-
From: Nathan Stanford [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 07, 2002 11:59 AM
To: CF-Talk
Subject: RE: Macromedia Folks: What are you thinking?


My question for you Chris is can you Quote where Christine has said anything
like... Get used to it?  If your going to throw in an accusations please
give a quoted example or two?

Thanks,
Nathan


 On top of that, in this thread alone, your replies have been more like
get
 used to it

-Original Message-
From: Chris Stoner [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 07, 2002 10:30 AM
To: CF-Talk
Subject: RE: Macromedia Folks: What are you thinking?


Christine,

I won't try to talk for everyone here however, as a developer who spends
more time in code then in the look and feel part of a web page, I an see why
everyone is getting a little rude here.  We as Cold Fusion developers have
enjoyed a relationship with Allaire that made us feel as if we were
extremely valued, because we were. We were the primary (or at least
influencers to the primary) source of revenue for allaire. Now, Allaire is
no more.  Macromedia has come in and apparently shifted that view.  No
longer are the coders paramount but rather the desktop publishers/graphic
artist types.  Now you (Macromedia) drop our favorite tool, replace it with
something that is more geared to the WSYIWYG-S editor types and we are left
in the cold.

On top of that, in this thread alone, your replies have been more like get
used to it rather then let us see what we can do to fix this situation.
We are not used to that.  Hell, if I were to imply that to my customers, I
would be fired.  Which brings me to my point.  It appears at first glance
that the old group of developers are no longer your customer, we are just
leftovers.  You are hitting people in their sense of security even if it is
only perception and saying or doing nothing to make us feel different.

We are discussing details on an IDE, which by itself is somewhat benign, but
if you look at the overall attitude (and perceived direction) of Macromedia,
you should be able to easily see why we are getting a bit worried and/or
frustrated with the situation.



  C H R I S  S T O N E R

  time warner cable
  tampa bay division
[EMAIL PROTECTED]


-Original Message-
From: Christine Lawson [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 07, 2002 10:15 AM
To: CF-Talk
Subject: RE: Macromedia Folks: What are you thinking?


Hi Everyone,
I know Mike Chambers and Nathan Stanford already pointed this out, but Neil
is not a Macromedia employee. He's a Team Macromedia member, but not an
employee, and his views are his own - not Macromedia's. Anyhow, I've been
using CF Studio for a long time, I'm also one of the CF'ers Vernon spoke to
yesterday and we went through the differences between CF Studio and
Dreamweaver MX. I know a number of people on this list from the Allaire days
and I (and everyone else at Macromedia) value *all* of your feedback. I know
Vernon already pointed out the wishform, and yup, I'm going to point it out
again :) http://www.macromedia.com/support/email/wishform?6213=6 PLEASE post
your feedback, it really can help develop future versions of our products...
However, I'm also going to go through each and every one of these messages
and make my own summary of your wants/needs/opinions so your feedback is
organized and clear. If I find something that can be done in Dreamweaver,
I'll be sure to post with the steps. In the meantime I have one request:
please, please, please, can we be polite when we post? I know the majority
of people have been but Michael Dinowitz has been nice enough to host this
list for us - we're all in the same boat here let's please respect one
another's opinions.

I hope this helps, now I'm on to organizing your feedback...

Christine Lawson
Macromedia Technical Support


-Original Message-
From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, May 07, 2002 9:01 AM
To: CF-Talk
Subject: RE: Macromedia Folks: What are you thinking?


*** you wrote *
OK so now we're being told by MM what is and is NOT good practice, dont seem
right to me lol
we should be able to access files directly with RDS/FTp
of course mistakes happen but you'll have people making mistakes with this
style of doing it too.
Did you get alot of people yelling at MM saying OHHH because i was able to
access files directly with RDS i fubared my whole site
and i'm going to sue MM?? No they said damnit i goofed

RE: Studio/DWMX comparisons

2002-05-07 Thread Chris Stoner

Neil,

Does the Sitespring integration go beyond that of a task list like the
current add on? If so, how?  I am investigating getting Sitespring for my
group and this looks advantageous.



Sitespring Integration (one heck of an addition, if only the panel was
dockable)



__
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



RE:

2001-07-12 Thread Chris Stoner

Craig,

You are setting defaults values for email, location, url etc. Vars to a
value of nothing
cfparam name=Email default=
cfparam name=Location default=
cfparam name=URL default=
cfparam name=Section default=
cfparam name=Contribute default=
cfparam name=Comments default=

And then setting the names of your fields to those values I (or so it seems
you are trying to but even there you seem to have forgotten the cfoutputs).

input type=text size=25 name=#Name#brbr
input type=text size=25 name=#Email#brbr
input type=text size=25 name=#Location#brbr
input type=text size=25 name=#URL#brbr
input type=text size=25 name=#Section#brbr
input type=text size=25 name=#Contribute#brbr
input type=text size=25 name=#Comments#

So what's happening is when you submit, your field names are being passed as
#Name# (because of the lack of cfoutput, if they were in cfouputs your field
names would all be empty). I'm sure you can imagine why you wouldn't want a
var with the name #Name# passed to cold fusion.


What you need to do is set the names of your fields to the actual variable
you want passed. And if you want to pre-populate the value of the fields,
use the value attribute.

CFOUTPUT
input type=text size=25 name=Name Value=#Name#brbr
input type=text size=25 name=Email Value=#Email#brbr
input type=text size=25 name=Location Value=#Location#brbr
input type=text size=25 name=URL Value=#URL#brbr
input type=text size=25 name=Section Value=#Section#brbr
input type=text size=25 name=Contribute
Value=#Contribute#brbr
input type=text size=25 name=Comments Value=#Comments#
/CFOUTPUT



That should just about do it for you.

-- Chris Stoner




-Original Message-
From: Craig Kiessling [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 12, 2001 4:40 PM
To: CF-Talk
Subject: RE:


Hi Kevin,

Thanks for responding. Here is the original question:
Hello folks,
I am fairly new in the CF arena, and am in need of some simple help here.
I have an Access database (pretty small), and a form on a template, to add
an entry into a Guestbook.
I would like for the database to updated with the new information, then the
form is submitted and takes them to the View the Guestbook page, which
should now show their new entry.Any help would be surely appreciated!
Sincerely,
Craig S. Kiessling ---Code Below
I am doing something wrong, but can not figure out what. Here is what Ihave:
(First on template)cfparam name=Name default=
cfparam name=Email default=cfparam name=Location default=
cfparam name=URL default=cfparam name=Section default=
cfparam name=Contribute default=
cfparam name=Comments default=
-html code-
cfform action=guest.cfm method=post
input type=text size=25 name=#Name#brbr
input type=text size=25 name=#Email#brbr
input type=text size=25 name=#Location#brbr
input type=text size=25 name=#URL#brbr
input type=text size=25 name=#Section#brbr
input type=text size=25 name=#Contribute#brbr
input type=text size=25 name=#Comments#brbr
input type=submit name=submit value=submit
/cfform
cfif isdefined(Form.Submit)
cfquery datasource=Northwind
INSERT into Guestbook(Name,Email,Location,URL,Section,Contribute,Comments)
Values('#Name#','#Email#','#Location#','#URL#','#Section#','#Contribute#','#
Comments#')
/cfquery
/cfif
--more html code
From: Kevin Mansel [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: CF-Talk [EMAIL PROTECTED]
Subject: RE:
Date: Thu, 12 Jul 2001 13:20:43 -0700

what is your question Craig?

~
Kevin Mansel
Senior Web Developer
Fox Communications
[EMAIL PROTECTED]
DL : 425-649-1321
C : 425-346-7221



-Original Message-
From: Craig Kiessling [mailto:[EMAIL PROTECTED]]
Sent: Thursday, July 12, 2001 1:20 PM
To: CF-Talk
Subject: RE:


Why is it that no one will even attempt to answer my question? It is way
lower level than that of the other questions being posted - c'mon folks.
some help me out.

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



Acceptable Response Times - Scalability

2001-06-22 Thread Chris Stoner

Can anyone point me to any documentation that details acceptable response
times on web applications?  What are the industry standards on how long a
database applications page should take?

-- Chris


~~
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: Grouping Problem

2001-04-06 Thread Chris Stoner

You might be better served by doing something like this


CFQUERY Name="queryName"
SELECT DATEPART(day, DateColumn) AS 'GroupDate',
 DateColumn,
OtherColumns
ORDER BY DateColumn
/CFQUERY


CFOUTPUT Query="queryName" Group="GroupDate"
#GroupDate#
CFOUTPUT
#OtherColumns#
    /CFOUTPUT
/CFOUTPUT


-- Chris Stoner

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Friday, April 06, 2001 3:07 PM
To: CF-Talk
Subject: Grouping Problem


I'm sure at least one of you people have had this problem, and i'm pulling
my hair out of here

I have a field which has a date/time value.

ie :  4/3/2001 12:00:00 PM

now there are tons of records for each day, but with different times.

I am trying to output a list of the past 10 days.  Grouped by the Day only,
not the time.

I've tried to actually format the date field in my [group] functions in the
cfoutput like this...

cfoutput query="information" group="DateFormat("#information.Date#",
"m/d/")#"

but this gives me an error saying that the information in the query does not
match within the loop

Can someone help me on this one?  I feel as though there is a really simple
answer, though i am clearly not seeing it

Thanks.

Kevin

~
Kevin Mansel
Web Developer
Fox Communications
[EMAIL PROTECTED]
DL : 425-649-1321
C : 425-346-7221
~~
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: Capturing a NT User ID

2001-03-14 Thread Chris Stoner

If you are running NDS Enabled office with Novell you can use an active x
component in IE to view the novell login information (and more). There is
also a netscape plugin that ties into Novell NDS to do the same thing which
is fine for a controlled environement (Intranet).

-- Chris Stoner



-Original Message-
From: Michael Ross [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 14, 2001 11:09 AM
To: CF-Talk
Subject: RE: Capturing a NT User ID


Getting the Novell login on its own with using nt security would be very
nice to get...!!

 [EMAIL PROTECTED] 03/14/01 10:45AM 
If this is an intranet, you'll have to turn off anonymous access and give
access to Domain Users.  IE will automatically submit the user's username to
the webserver (this is a default install).  Don't know about Netscape?  The
variable to look at is CGI.AUTH_USER.  If this is on an external website,
then things get much more complicated

HTH

Jeff Garza
Web Developer/Webmaster
Spectrum Astro, Inc.
480.892.8200

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



-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
Sent: Wednesday, March 14, 2001 8:18 AM
To: CF-Talk
Subject: Capturing a NT User ID



Is there a simple way to capture the NT user ID for each user that submits
a form? We use Novell Netware (my client version is 4.80) on NT.

Gina Shillitani
[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



Indexing Query and Files at a same time

2001-01-23 Thread Chris Stoner

I have a publication system that catalogs files and assigns versions to them
in the database and stores there location and some title/descriptive
information in a directory.  I know you can index the fiels in a director or
index a query but can I index the query information and the file at the same
time so they are part of the same search later?

-- Chris Stoner


~~
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: Allaire Certified Web Developer Exam

2001-01-11 Thread Chris Stoner

I would agree, the brainbench test was much more difficult then the Allaire
Certification.


-- Chris Stoner


- Original Message -
From: "Todd Ashworth" [EMAIL PROTECTED]
To: "CF-Talk" [EMAIL PROTECTED]
Sent: Thursday, January 11, 2001 12:16 PM
Subject: Re: Allaire Certified Web Developer Exam


 I've heard that if you can pass the CF test at www.brainbench.com with at
 least a 4.0 out of 5.0, you should be OK for the Allaire test.

 Todd Ashworth

 - Original Message -
 From: "Guy J. McDowell" [EMAIL PROTECTED]
 To: "CF-Talk" [EMAIL PROTECTED]
 Sent: Thursday, January 11, 2001 11:48 AM
 Subject: Allaire Certified Web Developer Exam


 | Has anyone done this exam? (Allaire Certified Web Developer Exam)
 | I went through the study guide on alliare.com a few days ago, but I
 | don't see any sample questions or references to standards i.e. W3C
 | HTML 4 standards, etc.
 | I'm certain I could pass the test anyway, but I would like to be able
 | to better gage what I might need to brush up on.
 | The study guide suggests a really broad curriculum to be tested.
 |
 | TIA,
 | Yours In Conservation,
 |
 | Guy J. McDowell,
 | Webmaster
 | The Ontario Federation of Anglers  Hunters
 | E-mail: [EMAIL PROTECTED]
 | Phone: (705) 748-6324 ext. 262
 | www.OFAH.org




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