Re: How can I redirect a user?

2003-01-13 Thread Robert Polickoski
cflocation Robert J. Polickoski Senior Programmer, ISRD Inc. (540) 842-6339 [EMAIL PROTECTED] AIM - RobertJFP -- Original Message -- From: Scott Wilhelm [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Mon, 13 Jan 2003 11:52:04 -0500 I'm setting up

Another Indirect Reference question

2003-01-09 Thread Robert Polickoski
Hello all, I have another indirect reference question... I am inside an instantiated CFC. The CFC has a variable called THIS.subMenuVisibility which is an array to hold 1 of 2 words, either Visible or Invisible. I amtrying to set elements of this array by indirect reference. The code to do

Instantiated component reference

2003-01-02 Thread Robert Polickoski
Hello all, I am trying to set a local variable in an instantiated component from outside the component. It has a reference ID that is assigned by the server using CreateUUID(). However, when I try to reference it, I get the below error. Does anybody have any suggestions? The string

Re: UDF or CFC

2003-01-02 Thread Robert Polickoski
Cedric, Although I am still fairly new to working with CFCs, (as evidenced by some of my recent posts), I think I understand their purpose. CFCs are the CFMX implementation of Object Oriented Programming (OOP). OOP is a way of tieing data and functions together. For instance, you define a

indirect reference

2003-01-01 Thread Robert Polickoski
Hello all, Happy New Year. I hope everyone had a safe and enjoyable holiday. I am trying to set a variable indirectly, i.e., I have a variable that contains the name of the variable I want to set. How do you accomplish this? Thank you in advance. Robert J. Polickoski Senior Programmer,

OT: innerHTML

2002-12-21 Thread Robert Polickoski
All, Thank you for your indulgence. I am trying to dynamically set the options of a select based on the option selected in a previous select. The javascript code for a particular case is thus: for (i=1; iProcess.length; i++) case 8: { for (i=1; iProcess.length; i++) {

RE: CFC Instance Identification

2002-12-17 Thread Robert Polickoski
problem. Paul Kenney [EMAIL PROTECTED] -Original Message- From: Robert Polickoski [mailto:[EMAIL PROTECTED]] Sent: Monday, December 16, 2002 1:35 PM To: CF-Talk Subject: CFC Instance Identification All, Thank you in advance for you patience with my CFC tribulations. I am trying

CFC Instance Identification

2002-12-16 Thread Robert Polickoski
All, Thank you in advance for you patience with my CFC tribulations. I am trying to find a string identifier for an instance of a CFC. The situation is this: I am outputting a list of instantiated objects to which a user has access. In this list, I want to put anchors that will call a

Component Conceptual Conundrum

2002-12-11 Thread Robert Polickoski
All, Thank you for your patience with my current component problems. I will admit, my primary background is in compiled programming environments. I have been able to work in a pure HTML/CGI environment for web apps using ASP with few conceptual issues. But the mixed environment of

Component Conceptual Conundrum - Continued

2002-12-11 Thread Robert Polickoski
-- From: Robert Polickoski [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Wed, 11 Dec 2002 07:59:29 -0500 All, Thank you for your patience with my current component problems. I will admit, my primary background is in compiled programming environments. I have been

Re: CFC output

2002-12-10 Thread Robert Polickoski
Cutter, Here is something that I wrote... cffunction name=GetUserData access=public output=true displayname=Get User Data hint=display the form the user will fill out to provide data about a User !-- This function displays the form to be used to provide data for a User

NonSense Errors

2002-12-10 Thread Robert Polickoski
All, I am getting very confused and very frustrated. Can somebody explain this error to me? Error Occurred While Processing Request Element APP is undefined in REQUEST. The Error Occurred in C:\Program Files\Macromedia\CFusionMX\wwwroot\BuildACourse\User.cfc: line 342 340 :

Re: NonSense Errors

2002-12-10 Thread Robert Polickoski
issue of some sort, but how do I go about debugging? Again, thank you in advance for your help. Robert J. Polickoski Senior Programmer, ISRD Inc. (540) 842-6339 [EMAIL PROTECTED] AIM - RobertJFP -- Original Message -- From: Robert Polickoski [EMAIL

Re: NonSense Errors

2002-12-10 Thread Robert Polickoski
-To: [EMAIL PROTECTED] Date: Tue, 10 Dec 2002 10:15:34 -0600 #application.app# is a structure and not a path to your cfc. You need to have something like home.cfcdirectory.cfcname in you componenet invoke call. Robert Polickoski wrote: All, As part of the debugging of this, I added

Re: NonSense Errors

2002-12-10 Thread Robert Polickoski
defined it as an object and via the debug information, it has methods, you would need to call it via cfobject. BTW, if that's a real db password in your debug info, you might want to change it now. Marlon Robert Polickoski wrote: Marlon, By identifying #APPLICATION.App#, which

Re: Page cannot be displayed .. what specifically does this mean?

2002-11-20 Thread Robert Polickoski
Mike, Based on what you say, and assuming that .htm pages load fine, I would say that you are correct in your assumption that the CF server is not running. I would try to stop and start it from the Services menu under Control Panel/Administrative Tools (or something like that). Robert J.

Re: Generating 'What's Related'

2002-11-11 Thread Robert Polickoski
Jillian, It depends on how the data is tructured in the database, i.e. how do you identify whether or not a tool is used in the removal of an alternator in a 1997 Ford Taurus. This is what relational databases were designed for. But the table structure needs to be set up, or normalized, for

Re: Contribute and Studio Observation

2002-11-11 Thread Robert Polickoski
Not that I am trying to be exclusive or pompous, but when you start allowing people who know nothing about web page design or development to design or develop web pages, you get web pages designed or developed by people who know nothing about the process. I think it is a dangerous trend to

RE: Contribute and Studio Observation

2002-11-11 Thread Robert Polickoski
Well, then shouldn't that be a function of the overall design of the site. If you want user editable content, provide the means within the site for them to do this and store the changeable content in a database or some other mechanism rather than inventing some application that allows users

RE: OT: Section 508 Compliancy

2002-11-08 Thread Robert Polickoski
Maybe this is too obvious to be stated, but the definitive site for information regarding 508 compliance is http://www.section508.gov . Additionally, Macromedia has an extension (actually provided by a third party) that you can download for evaluating and fixing pages regarding accessibility

RE: Studio MX

2002-11-08 Thread Robert Polickoski
I am fairly new to CFML (3 months). You mentioned the rookie use of pound signs. How else do you identify variables? Robert J. Polickoski Senior Programmer, ISRD Inc. (540) 842-6339 [EMAIL PROTECTED] AIM - RobertJFP -- Original Message -- From: Mark

Re: OT: Using Javascript to disable backspace key with exception

2002-11-08 Thread Robert Polickoski
event.fromElement wiil give you the object which generated the event. Test for that being the input you want to allow backspace in and block it in all other cases. Robert J. Polickoski Senior Programmer, ISRD Inc. (540) 842-6339 [EMAIL PROTECTED] AIM - RobertJFP -- Original Message

Re: OT: CSS2 and NetScape

2002-11-07 Thread Robert Polickoski
All, Thank you for your suggestions and input. Taking it all into account, I have been able to develop a CSS sheet that works in both browsers. Robert J. Polickoski Senior Programmer, ISRD Inc. (540) 842-6339 [EMAIL PROTECTED] AIM - RobertJFP -- Original Message

Re: OT: Javascript across windows

2002-11-07 Thread Robert Polickoski
Ben, window.opener is an object reference in the child to the parent. You can use widow.opener.document.all.elementid or window.opener.formname.fieldname to reference objects in the parent. Robert J. Polickoski Senior Programmer, ISRD Inc. (540) 842-6339 [EMAIL PROTECTED] AIM - RobertJFP

Re: OT: CSS2 and NetScape

2002-11-07 Thread Robert Polickoski
kilter quite a bit... Cutter Falcon Knives Robert Polickoski writes: All, Thank you for your suggestions and input. Taking it all into account, I have been able to develop a CSS sheet that works in both browsers. Robert J. Polickoski Senior Programmer, ISRD Inc. (540) 842

OT: CSS2 and NetScape

2002-11-06 Thread Robert Polickoski
All, I apologize for t he off-topic post but I am having a terrible time finding another resource. I have a site on which I am using a CSS2 style sheet (validated) to format the content. IE6 displays it beautifully. NS messes it up copmpletely. I think it is because NS hasn't implemented

Re: OT: CSS2 and NetScape

2002-11-06 Thread Robert Polickoski
Isaac, Yes, I am idealistic and trying to truly separate content from format (maybe I should just use XML LOL). The reason that I suggest that NS isn't implementing position is that it is treating everything as an in-line element. Thank you for the reference and your response. Robert J.

RE: outputting all client vars

2002-11-05 Thread Robert Polickoski
Another way to just see the values for debugging is cfdump var=#CLIENT# the output isn't pretty, but it's there. Robert J. Polickoski Senior Programmer, ISRD Inc. (540) 842-6339 [EMAIL PROTECTED] AIM - RobertJFP -- Original Message -- From: Mark Johnson

Re: OT js question (child window passing back to parent)

2002-10-18 Thread Robert Polickoski
Tim, window.opener is the parent object. You can set any form element from the child window using the Javascript statement window.opener.formname.inputelementname.value = document.formname.fieldname.value; I hope this helps. -- Original Message --

Re: apologies...query display balled up

2002-10-18 Thread Robert Polickoski
Tim, Use the keyword DISTINCT. I am guessing that because record #128 passes both tests, it is getting two result rows. I am not certain, but I think it will do the trick. Take care, -- Original Message -- From: Tim Laureska [EMAIL PROTECTED] Reply-To:

Re: QUestion about Input File and CFFILE

2002-10-08 Thread Robert Polickoski
Brian, Here is the code I am using: script language=JavaScript function parseFileName(theFile) { var start = -1; while (theFile.value.indexOf(\\, start + 1) != -1) { start = theFile.value.indexOf(\\, start + 1); }

Re: Web services question from a beginner

2002-10-08 Thread Robert Polickoski
John, I used DreamWeaverMX's automatic configure capability to get the following code: cfinvoke webservice=http://www.ejseinc.com/WeatherService/Service.asmx?WSDL; method=getDayForcastInfo returnvariable=aDayForcastInfo cfinvokeargument name=day value=enter_value_here/

Re: MX, IE6 and Client Vars

2002-09-25 Thread Robert Polickoski
No, but I am having the problem that I can't get CLIENT variables to persist beyond the page where I set them. And yes, clientmanagement=yes. Is there some undocumented feature/requirement to using CLIENT vars? Thank you. -- Original Message --

cfupdate conundrum

2002-09-24 Thread Robert Polickoski
All, I am running CFMX on WindowsXP Pro with MySQL database. The structure of Document Table: Field,Type,Null,Key,Default,Extra, DocumentIndex,int(11),,PRI,,auto_increment, DocumentID,smallint(6),YES DocumentName,text,YES DocumentFileName,text,YES Author,smallint(4),YES

Re: DATE TAG

2002-09-24 Thread Robert Polickoski
I think you are going to have to write A UDF that uses some cfswitch tags to piece together the output that you would like. cfswitch exprtession=theDay cfcase value=1 cfset dayString = First /cfcase cfcase value=2 cfset dayString = Second /cfcase ... /cfswitch I know it is

RE: cfupdate conundrum

2002-09-24 Thread Robert Polickoski
putting it in a cfquery tag instead and see what happens. -Original Message- From: Robert Polickoski [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 24, 2002 1:27 AM To: CF-Talk Subject: cfupdate conundrum All, I am running CFMX on WindowsXP Pro with MySQL database. The structure

RE: Auto Submit Select Boxes

2002-09-20 Thread Robert Polickoski
Rick. I am pretty sure it is the onchange event that will alow you to take an action when someone selects an option. Then you need to programmaticall do a form.submit(). -- Original Message -- From: Adrian Lynch [EMAIL PROTECTED] Reply-To: [EMAIL

OT? HTML4.0 Reference

2002-09-20 Thread Robert Polickoski
All, For those who need a good HTML reference, this site http://www.htmlhelp.com/distribution/ Has downloadable .hlp files that are great references. -- Respectfully, Robert J. Polickoski, CNA Lead Programmer (540) 842-6339 [EMAIL PROTECTED] AIM: RobertJFP Windows Messenger: RPolickoski --

Re: Recursion

2002-09-13 Thread Robert Polickoski
All, Thank you again for all of your suggestions. As time allows, I will probably play with all of them just to learn how. It is wonderful to have such support. Take care, Robert -- Original Message -- From: S. Isaac Dealey [EMAIL PROTECTED] Reply-To:

Recursion

2002-09-12 Thread Robert Polickoski
Hello all, I wrote this really neat recursive function using the cffunction tag on my development system which is running CFMX on WindowsXP Pro. When I ported to the operational host (third party), I discovered that they were running a previous version of CF (I do not know which) which does

RE: Recursion

2002-09-12 Thread Robert Polickoski
All, Thank you for your responses to my inquiry. As it turns out, the CFSCRIPT option is not viable because the point of the recursion was querying a database for records that represented subordinate records which might have subordinate records of their own. The cfmodule seems to take

RE: cfchart labelformat=date

2002-09-10 Thread Robert Polickoski
Tobin QA Engineer macromedia.com 617 219 2000 [EMAIL PROTECTED] -Original Message- From: Robert Polickoski [mailto:[EMAIL PROTECTED]] Sent: Saturday, September 07, 2002 2:14 AM To: CF-Talk Subject: Re: cfchart labelformat=date Hello all, I am curious. I have seen numerous responses

Re: cfchart labelformat=date

2002-09-06 Thread Robert Polickoski
for another way of doing this? OR have I found a bug? Some feedback would be helpful. Thank you, Robert -- Original Message -- From: Robert Polickoski [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Thu, 5 Sep 2002 12:28:26 +0600 Hello all, I am

RE: cfchart labelformat=date

2002-09-06 Thread Robert Polickoski
2000 [EMAIL PROTECTED] -Original Message- From: Robert Polickoski [mailto:[EMAIL PROTECTED]] Sent: Saturday, September 07, 2002 2:14 AM To: CF-Talk Subject: Re: cfchart labelformat=date Hello all, I am curious. I have seen numerous responses on just about every post but mine, which I

cfchart labelformat=date

2002-09-04 Thread Robert Polickoski
Hello all, I am running CFMX on WindowsXP Pro using the CF built in web server. I have a problem with label formatting in a chart. I am trying to produce a Gantt Chart. I want my Y axis labels to be dates within a specified range. I have set them to the range and the labelformat attribute

cfchart labelformat=date

2002-09-02 Thread Robert Polickoski
Hello all, I am using ColdFusionMX with the built in web server on a WindowsXP Pro system for development. I am trying to produce a Gantt Chart. cfset StartDate = CreateDate(2002, 1, 1) cfset EndDate = CreateDate(2002, 12, 31) cfset NoWeeks = DateDiff(w, StartDate,