Collections Insight

2005-05-04 Thread Robert Orlini
Can someone give me a clear idea of how the Verity Collections work? I have CF 5.0 and have setup a collection that points to a sub-directory such as manuals/windows I want to be able to search that sub-directory. However, when I do a search it does not find the page I want that has the

Save web page

2005-04-25 Thread Robert Orlini
IS there a way to save the content of a web page using cfsavecontent? Here's my script: cfsavecontent variable=intro CFLocation url=http://www.mypage.com; /cfsavecontent cfoutput#intro#/cfoutput Would I be able to search #intro# for certain text? Or is there a better way? Sorry but this is

Scheduled task time mix up?

2005-04-21 Thread Robert Orlini
I'm using CF 5.0 and am running a Scheduled Task. I want it to run every five (5) minutes. In the setup for the task, I have Daily every set to 5 minutes and from set to 12:00:00 and to at: 23:30:00. I setup up a scheduled task log, but see no entries for today. Is my from/to times mixed up

RE: Scheduled task time mix up?

2005-04-21 Thread Robert Orlini
up? I should add that if you want to start it at midnight, you need to use 0:00:00, I believe. Ray Ray Champagne wrote: Well, it is not noon yet here, and if it isn't where you are, either, then you wouldn't see anything, I think. Ray Robert Orlini wrote: I'm using CF 5.0 and am

RE: Scheduled task time mix up?

2005-04-21 Thread Robert Orlini
, with a recurring time of 5 minutes. I don't use the scheduler that much, but I just tried a test on my dev machine (MX, tho) and it worked fine. I don't think anything should be any different for 5.0 Robert Orlini wrote: Thanks Ray. In other words, how would I set the from/to times to reflect

Check for a file in a directory

2005-04-20 Thread Robert Orlini
How would I check for the existence of file in a directory? I'm thinking I use list option in CFDIRECTORY, but I'm a little stuck on where to start with this. I figure I use this statement: cfdirectory directory=#GetDirectoryFromPath(GetTemplatePath())# name=myDirectory and then check for

RE: Check for a file in a directory

2005-04-20 Thread Robert Orlini
Thanks all. I read over the link below, however, I need it to monitor this directory with the use of a form that a user enters the file name so the cfif IsDefined(FORM.yourFile) will not work. How can I have it monitor the directory on its own so-to-speak and then tell me if it finds a certain

RE: Check for a file in a directory

2005-04-20 Thread Robert Orlini
action=#cgi.script_name# input name=filename / input type=submit / /form On 4/20/05, Robert Orlini [EMAIL PROTECTED] wrote: Thanks all. I read over the link below, however, I need it to monitor this directory with the use of a form that a user enters the file name so the cfif IsDefined

RE: Check for a file in a directory

2005-04-20 Thread Robert Orlini
a directory for a specific file, unless you use an event gateway (only in CF7 Enterprise). cheers, barneyb On 4/20/05, Robert Orlini [EMAIL PROTECTED] wrote: Thanks Barney. Sorry I re-read my previous email and realized I may have worded wrong. I don't want a form that submits anything. Just

drop down dilemma

2005-03-30 Thread Robert Orlini
I have a dropdown that I want to pass to vales similar to a URL. The url passes two values: a href=faq.cfm?categoryname=#categoryname#num=#categorynum#/a How do I get the dropdown below to pass both categoryname and categorynum? I tried a hidden field: form action=faq_list2.cfm method=post

RE: drop down dilemma

2005-03-30 Thread Robert Orlini
the category name on the form's action page. But the above should work if you want to avoid doing another query to get the name. - Original Message - From: Robert Orlini [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Wednesday, March 30, 2005 12:45 PM Subject: drop down dilemma

CFOBJECT in the CF Administrator

2005-03-18 Thread Robert Orlini
I'm using a script that Uses COM and requires CFOBJECT be enabled in the CF Administrator in CF version 5. I've looked throughout the admin and can't find where to enable cfobject. It's the script in a previous post found at: http://cflib.org/udf.cfm?ID=105 Any ideas? Or is there something else

RE: OT: Image Submit button

2005-03-14 Thread Robert Orlini
=formitemsimg src=/images/next10.gif border=0 Next 10/button -t On Fri, 11 Mar 2005 14:19:39 -0500, Robert Orlini [EMAIL PROTECTED] wrote: I have another problem with a submit button. It works well as input type=submit and moves on to the next ten records, but when I change it to an image

OT: reset button

2005-03-11 Thread Robert Orlini
Is there a way I can use an image for a reset button? For a submit I have: input type=image border=0 src=images/login.gif value=Login name=B1 How different is the coding for the reset button? Thx. Robert O. HWW -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version:

RE: reset button

2005-03-11 Thread Robert Orlini
PROTECTED] Sent: Friday, March 11, 2005 11:17 AM To: CF-Talk Subject: RE: reset button You will have to use some javascript to do the reset. Add in onclick=document.myform.reset() to your button tag. HTH, Jeff Garza -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent

RE: OT: reset button

2005-03-11 Thread Robert Orlini
onclick=this.form.reset(); return false; HTH On Fri, 11 Mar 2005 11:11:51 -0500, Robert Orlini [EMAIL PROTECTED] wrote: Is there a way I can use an image for a reset button? For a submit I have: input type=image border=0 src=images/login.gif value=Login name=B1 How different is the coding

OT: Image Submit button

2005-03-11 Thread Robert Orlini
I have another problem with a submit button. It works well as input type=submit and moves on to the next ten records, but when I change it to an image it seems to just refresh the page but not go to the next records. This works: input type=submit class=formitems value=Next 10 name=submitNext

232

2005-02-08 Thread Robert Orlini
Hello, What does this mean in my CF Server log: Error,2136,02/08/05,01:33:23,,Error number 232 occurred attempting to close connection to web server. Error,2136,02/08/05,01:33:23,,Windows NT error number 232 occurred. Robert O. HWW -- No virus found in this outgoing message. Checked by AVG

RE: 232

2005-02-08 Thread Robert Orlini
Thanks all... -Original Message- From: Paul Vernon [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 08, 2005 11:21 AM To: CF-Talk Subject: RE: 232 On CF 5 and below, 232 errors are generally to do with timeouts or clients hitting their stop button in the browser... You may want to

OT SQL date/time default

2005-01-27 Thread Robert Orlini
I have a form that if the date field is blank SQL automatically inserts the date of 1/1/1900 and then this displays. How can I have it leave this field blank? The column is set as datetime in design view. Thx. Robert O. ~|

RE: OT SQL date/time default

2005-01-27 Thread Robert Orlini
the default as null in the table description? -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA C code. C code run. Run code run. Please! - Cynthia Dunning ...-Original Message- ...From: Robert Orlini [mailto:[EMAIL PROTECTED] ...Sent: Thursday, January

RE: OT SQL date/time default

2005-01-27 Thread Robert Orlini
if the Default Value of the field is set. Else you can insert a NULL to the field based on the INSERT query -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Thursday, January 27, 2005 12:03 PM To: CF-Talk Subject: OT SQL date/time default I have a form

RE: OT SQL date/time default

2005-01-27 Thread Robert Orlini
- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Thursday, January 27, 2005 12:37 PM To: CF-Talk Subject: RE: OT SQL date/time default Randy default is now (null) and allow nulls is checked, but when filed is blank and submitted 1/1/1900 is inserted. -Original Message- From: Adkins

RE: OT SQL date/time default

2005-01-27 Thread Robert Orlini
or a char|varchar field? PS you should change your other inserts to queryparams as well. -- Ian Skinner Web Programmer BloodSource www.BloodSource.org Sacramento, CA C code. C code run. Run code run. Please! - Cynthia Dunning ...-Original Message- ...From: Robert Orlini [mailto

OT: JavaScript onSubmit

2005-01-26 Thread Robert Orlini
I have a JavaScript question. How can I combine these two validation scripts? I need it to do a return confirm and also a validation to make sure the proper field is selected. I'm trying to combine the onSubmit of onsubmit=return checkUserInputs(this); and onSubmit=return verify. SEE BELOW CODE

OT: Problems w/printing in IE

2005-01-10 Thread Robert Orlini
Anyone out there having problems with printing in IE (6.0) or Outlook 2000? When I try to re-install IE from Microsoft it crashes. A Windows File Protection pop-up appears later. Also Norton has some Office files in Quarantine it can fix with the latest definitions. Thanks. Robert O. HWW

SOT: Javascript or CF in drop-down

2005-01-05 Thread Robert Orlini
In the example below, how would I use Javascript or CF informing a user to please make a selection as opposed to clicking SUBMIT on the title View Available Reports? Thanks as always. form method=post action=test.cfm select name=date optionView Available Reports/option /select input

Extract year from date field

2004-12-31 Thread Robert Orlini
How do I extract the year from a date field such as 2005-10-12? I'm using datepart in the Query as: datepart(yy,report_date), but when I try to output it as: cfoutput query=populatedropdown #datepart(, populatedropdown.report_date)# /cfoutput it gives an form field not found error.

RE: Extract year from date field

2004-12-31 Thread Robert Orlini
Thanks Jochem. How would I extract the year from 2005-10-12 please? -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Friday, December 31, 2004 10:47 AM To: CF-Talk Subject: Re: Extract year from date field Robert Orlini wrote: How do I extract the year from

RE: Extract year from date field

2004-12-31 Thread Robert Orlini
date field On Fri, 31 Dec 2004 10:43:43 -0500, Robert Orlini [EMAIL PROTECTED] wrote: How do I extract the year from a date field such as 2005-10-12? cfquery name=populatedropdown datasource=test select distinct(datepart(m,report_date)) as month from report where datepart(yy,report_date

RE: Extract year from date field

2004-12-31 Thread Robert Orlini
Thanks -Original Message- From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Friday, December 31, 2004 1:51 PM To: CF-Talk Subject: Re: Extract year from date field How do I extract the year from a date field such as 2005-10-12? cfquery name=populatedropdown datasource=test select

Check for next year

2004-12-30 Thread Robert Orlini
I have a popup that will display one month in advance. The issue I have is that users can view January, but the display still reads January 2004. I have the month and year formatted below. How can I check and/or display the year 2005? The dateformat below does not take that in consideration.

RE: Check for next year

2004-12-30 Thread Robert Orlini
() in monthAsString() if you want to display the name of the month rather than the month as a number. Ben Rogers http://www.c4.net v.508.240.0051 f.508.240.0057 -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Thursday, December 30, 2004 11:53 AM To: CF-Talk Subject

CFHTTP

2004-12-29 Thread Robert Orlini
I have this code using cfhttp below. When it does not connect I want it to display some text reading Connection lost. I have throwOnError set to yes. What do I have to add to the code below to get it to do this? Thanks. Robert O. HWW CFhttp method=get url=http://myurl/stats.cfm; resolveurl =

cf 5.0

2004-12-21 Thread Robert Orlini
How do I stop/restart CF 5.0 server? Robert O. ~| Special thanks to the CF Community Suite Silver Sponsor - CFDynamics http://www.cfdynamics.com Message: http://www.houseoffusion.com/lists.cfm/link=i:4:188429 Archives:

number of logins

2004-12-14 Thread Robert Orlini
The query below does not search the form.login value correctly. I tried either isdefined or just checking with a NEQ to , but it does not display logins greater than a value I submit. I checked the logic on the bottom of the page (see below) and it seems correct. I even added a trim, but still

RE: number of logins

2004-12-14 Thread Robert Orlini
it be: And LOGIN #FORM.LOGIN# Drop the single quotes -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 14, 2004 12:06 PM To: CF-Talk Subject: number of logins The query below does not search the form.login value correctly. I tried either isdefined or just

RE: number of logins

2004-12-14 Thread Robert Orlini
or numeric type? If it is String, then by using the symbol indicates That you are doing a numeric comparative.. What does LOGIN field contain? What is the user entering as form.login? -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 14, 2004 1:07 PM To: CF

dynamic table union?

2004-12-03 Thread Robert Orlini
Is there a way to do a dynamic Union of tables. I a drop-down I would like to have the ability to search one table or have the option of searching ALL the tables. I was think of having a count or maybe an array to keep track of the amount of tables and then loop them. The code I have now

RE: CFDIRECTORY question

2004-12-02 Thread Robert Orlini
should be able to find the differences between the two. M!ke -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 01, 2004 2:42 PM To: CF-Talk Subject: CFDIRECTORY question I have this cfdirectory code (see below) that I want to read a list

CFFile or CFDirectory?

2004-12-02 Thread Robert Orlini
I'm using cfdirectory successfully to list the directory names and then list them in a drop-down menu. Now after a user selects the directory name I would like it to load a specific file in that directory. Is that done with cffile or again using cfdirectory in some other way? Thanks as

CFDIRECTORY question

2004-12-01 Thread Robert Orlini
I have this cfdirectory code (see below) that I want to read a list of directory names and then insert into a table. However, this script will be running each time a user accesses drop-down list. I want to list the current directories and any new directory names that have been added. At this

get directory name

2004-11-24 Thread Robert Orlini
Using CFFile or another tag, is there a way to get the name of directories? I have a folder with directory names I need to use in a drop-down list. For example, in this directory: d:\wwwroot\trials\science the name I would need to isolate would be science. Thanks. Robert O. HWW

RE: get directory name

2004-11-24 Thread Robert Orlini
, Robert Orlini [EMAIL PROTECTED] wrote: Using CFFile or another tag, is there a way to get the name of directories? I have a folder with directory names I need to use in a drop-down list. For example, in this directory: d:\wwwroot\trials\science the name I would need to isolate would

RE: get directory name - one more thing

2004-11-24 Thread Robert Orlini
works fine Ian thank you. One more thing please: How can I add each directory name into a table using a cfquery? I have this: CFQUERY name=get datasource=marketing INSERT INTO directories (name) VALUES ('#mydirectory.name#') /CFQUERY But it adds just the first entry. I guess your gonna say use

RE: get directory name - one more thing

2004-11-24 Thread Robert Orlini
=NameOfDirCall I suppose you could use cfloop query= too. On Wed, 24 Nov 2004 13:27:49 -0500, Robert Orlini [EMAIL PROTECTED] wrote: works fine Ian thank you. One more thing please: How can I add each directory name into a table using a cfquery? I have this: CFQUERY name=get datasource=marketing

RE: get directory name - one more thing

2004-11-24 Thread Robert Orlini
... insert into table values(#dirlist.name#) /cfquery /cfloop On Wed, 24 Nov 2004 13:41:30 -0500, Robert Orlini [EMAIL PROTECTED] wrote: Sorry I may have not specified this correctly. I need to put each dir name into a table -Original Message- From: Greg Morphis [mailto:[EMAIL

Find first letter

2004-11-15 Thread Robert Orlini
I need to output a list of names alphabetically via the field employee_lname (last name). What's the code that can check the first letter of the field employee_lname? Thanks. Robert O. HWW ~| Special thanks to the CF

len

2004-11-05 Thread Robert Orlini
I have this query: CFQUERY datasource=wilsoncart name=compare Select from data Where len(order#) = '5' order by order# /CFQUERY I get an error on the ( It works in SQL Query Analyzer though. What can I use to get the length of that string which is numeric? Thx Robert O.

RE: len

2004-11-05 Thread Robert Orlini
Thanks all. -Original Message- From: Robert Orlini Sent: Friday, November 05, 2004 1:52 PM To: CF-Talk Subject: len I have this query: CFQUERY datasource=wilsoncart name=compare Select from data Where len(order#) = '5' order by order# /CFQUERY I get an error on the ( It works in SQL

mod command to alter row color

2004-11-02 Thread Robert Orlini
I know this is an easy one, but can't find the right code. How do I have CF alternate color for each row of a table? Anyone have the code please? Thanks. Robert O. ~| Purchase from House of Fusion, a Macromedia Authorized

RE: mod command to alter row color

2004-11-02 Thread Robert Orlini
command to alter row color put this in your tr tag cfif query.CurrentRow MOD 2 EQ 0bgcolor=##00cfelsebgcolor=##f/cfif it think that's right. On Tue, 2 Nov 2004 13:24:19 -0500, Robert Orlini [EMAIL PROTECTED] wrote: I know this is an easy one, but can't find the right code. How do

Mozilla or Linux

2004-10-26 Thread Robert Orlini
seems to be w/the session variables. Anyone know of problems with Mozilla or Linux w/CF coding or sessions? Robert Orlini HWW ~| Purchase from House of Fusion, a Macromedia Authorized Affiliate and support the CF community. http

RE: Mozilla or Linux

2004-10-26 Thread Robert Orlini
Works fine on Mozilla/Firefox in Windows...I don't have any different cookies settings that I am aware of... -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 26, 2004 1:31 PM To: CF-Talk Subject: Re: Mozilla or Linux Robert Orlini wrote: My

cfinclude or cflocation

2004-10-12 Thread Robert Orlini
I have a slight problem. I need to include code from one page into another. I tried cfinclude but it won't allow a logical path using http:\\... CFlocation sends me right to the url bypassing the page. I need something similar to what is found in html using an insert to put in a portion of

RE: cfinclude or cflocation

2004-10-12 Thread Robert Orlini
Thanks Dave. cfhttp was what I needed. Robert O. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 12, 2004 2:34 PM To: CF-Talk Subject: RE: cfinclude or cflocation I have a slight problem. I need to include code from one page into another. I

Variable session is undefined in CFMX

2004-09-29 Thread Robert Orlini
Hello, I have CFMX 6.1 on one server and CF 5 on another. Both run the same CF program I created, however, on the one running CFMX I get a variable session is undefined on the login.cfm page that I don't get on the login.cfm page on the machine running CF 5. The code (in brief) for the exact

RE: Variable session is undefined in CFMX

2004-09-29 Thread Robert Orlini
Damien, This is the line in my application.cfm file: CFApplication name=check sessionmanagement=Yes sessiontimeout=#createTimeSpan(0,0,15,0)# Robert O. -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 29, 2004 11:11 AM To: CF-Talk

SOT: cf tree menu

2004-08-16 Thread Robert Orlini
Is there a CF tree menu I could download or see a link somewhere? Doesn't have to be a tree menu specifically; I need to expand a links on a page as opposed to using bookmarks. Thanks. Robert O. HWW [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

MySQL on Linux

2004-08-09 Thread Robert Orlini
Anyone can tell me how to setup/start MySQL on Linux Enterprise. I can't seem to find where to begin. Thanks. Robert O. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: MySQL on Linux (OT)

2004-08-09 Thread Robert Orlini
Thanks Rick, Jochem, Sorry for the OT subject on this. Will check other references as well. Robert O. -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Monday, August 09, 2004 8:18 AM To: CF-Talk Subject: Re: MySQL on Linux (OT) Robert Orlini wrote: Anyone can

trim numbers

2004-08-05 Thread Robert Orlini
I need to trim numbers from a price. For example, I want the price displayed as $120 not $120.00 as it is now. Is the code for this using LTRIM? I need it to count how many characters then trim the last three so that $50.00 would look like $50 the same as $120.00 would look like $120. Robert O.

RE: trim numbers

2004-08-05 Thread Robert Orlini
Thanks it did... -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED] Sent: Thursday, August 05, 2004 12:25 PM To: CF-Talk Subject: RE: trim numbers I usually use the following: replace(dollarformat(number), .00, , All) hope this helps Duane _ From: Robert Orlini

CF on Linux

2004-08-03 Thread Robert Orlini
Anyone out there running CFMX on Linux? How do I get it to recognize the .cfm extension? The cfm pages show but seem not to be running thru CF. Is there something in the Apache setup? Where's that file? Thx. Robert O. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe]

RE: CF on Linux

2004-08-03 Thread Robert Orlini
:36 AM To: CF-Talk Subject: Re: CF on Linux On Tuesday 03 Aug 2004 14:27 pm, Robert Orlini wrote: Anyone out there running CFMX on Linux? Plenty of folks. How do I get it to recognize the .cfm extension? The cfm pages show but seem not to be running thru CF. Is there something in the Apache

RE: CF on Linux

2004-08-03 Thread Robert Orlini
directory for cfmx-connectors-run.sh. It is a shell script that will install the connector between apache and cfmx. Good luck. Doug Robert Orlini wrote: Thanks for the quick reply Thomas. During the install CF mentioned something about a C++ module(?). Is that it? If so, where do I find

RE: CF on Linux

2004-08-03 Thread Robert Orlini
configure your web server using the scripts in /cf_root//bin/connectors, as appropriate. /cfdocs Hope this helps. Doug Robert Orlini wrote: Doug, Looked and could not see that file. I saw cfmx.init.sh, but not the one you emailed. Where can I get it? RO -Original Message- From: Doug

SOT: Checked/unchecked input boxes

2004-07-30 Thread Robert Orlini
How do I send via a CFIF IsDefined(form.update.x) in my code instructing CF to Update a field when a input box is unchecked as well as checked. Its working when its checked (input type=checkbox name=itemstatus value=received checked), but how do I send a NR when its unchecked? Robert O. [Todays

CF on Linux

2004-07-30 Thread Robert Orlini
OK. I installed RedHat ES server. Do I need a cd that is CF for Linux? Can the regular CFMX installation you use for Windows work? I'm sorry but I'm very new to Lunix. Thx. Robert O. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and

RE: CF on Linux

2004-07-30 Thread Robert Orlini
, 2004 2:56 PM To: CF-Talk Subject: RE: CF on Linux The same CF works, but the installer is different. You can grab a downloadable installer off of the Macromedia web site. --- Ben _ From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 2004 2:46 PM To: CF-Talk Subject: CF

RE: Formatting output for printing question

2004-07-30 Thread Robert Orlini
Does the tag work with CF 5.0 as well as CFMX? -Original Message- From: Larry Lyons [mailto:[EMAIL PROTECTED] Sent: Friday, July 30, 2004 3:51 PM To: CF-Talk Subject: Re: Formatting output for printing question Hi Tom, Thank you for the link and info. I have a more specific question

CF on Linux

2004-07-29 Thread Robert Orlini
Sorry I'm not too Linux savvy But does Cold Fusion work on Linux Enterprise server edition? No workaround for MS SQL either I guess(?) Robert O. HWW [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: CF on Linux

2004-07-29 Thread Robert Orlini
MM system requirements stating differently. Doug Robert Orlini wrote: Sorry I'm not too Linux savvy But does Cold Fusion work on Linux Enterprise server edition? No workaround for MS SQL either I guess(?) Robert O. HWW _ [Todays Threads] [This Message] [Subscription] [Fast

OT: js pop-up

2004-07-23 Thread Robert Orlini
I get an error on a _javascript_ pop-up code. Something about Expected ) Its either a ) or } I'm not sure. I'm not that good with _javascript_. Any ideas on the code below please? Thx. script LANGUAGE=_javascript_ var newWindow; var firsttime=0; function PopWindow(url) { if (firsttime==0) {

RE: OT: js pop-up

2004-07-23 Thread Robert Orlini
) is wrong window.open(bob) is right. --Ben Robert Orlini wrote: I get an error on a _javascript_ pop-up code. Something about Expected ) Its either a ) or } I'm not sure. I'm not that good with _javascript_. Any ideas on the code below please? Thx. script LANGUAGE=_javascript_ var

increase session time

2004-07-21 Thread Robert Orlini
I'm getting into the programming of CF OK. I work with sessions but am a bit confused on its setup. In the application.cfm file I have this: CFApplication name=check sessionmanagement=Yes sessiontimeout=#createTimeSpan(0,0,45,0)# It should timeout at 45 minutes but it seems shorter than that. Is

RE: OT: JavaScript window

2004-07-20 Thread Robert Orlini
Thanks Ian. One question. Using either code does not allow the popup to stay active. It immediately closes and then tries to refresh the page that spawned it. The update.gif is the image button on the popup page. Once I click that then it performs the update and should close and reload the

RE: OT: JavaScript window

2004-07-20 Thread Robert Orlini
Ian, Never mind. A few tweaks and all is well. Thanks again and thanks all who contributed. Robert O. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Monday, July 19, 2004 7:09 PM To: CF-Talk Subject: RE: OT: _javascript_ window If po3.cfm is the window that

OT: JS number check

2004-07-20 Thread Robert Orlini
; iinputStr.length; i++) { var charVal = inputStr.substring(i, i+1); if(charVal 0 || charVal 9 || (charVal.value== || charVal.value ==,)) { alert (Please make sure your + field + entry are numbers only); return false; } } return true; Robert Orlini HW ¿ [Todays Threads] [This Message

OT: JavaScript window

2004-07-19 Thread Robert Orlini
This was touched on before slightly. I have a pop-up that upon closing I would like to refresh a certain page. The code I have is this: input type=image src="" name=update value=update width=56 height=23 > What do I add to the onclick to refresh the page: po3.cfm as the pop-up closes? Or is

RE: JavaScript window

2004-07-19 Thread Robert Orlini
Thanks Pascal -Original Message- From: Pascal Peters [mailto:[EMAIL PROTECTED] Sent: Monday, July 19, 2004 1:37 PM To: CF-Talk Subject: RE: _javascript_ window window.opener.location.reload(true); window.close(); Pascal -Original Message- From: Robert Orlini [mailto:[EMAIL

outputting variable

2004-07-13 Thread Robert Orlini
I have a form where the from variable is incremented dynamically if there is more than one occurrence of the same field. The input name looks like this: name=qty#i#. The #i# is a number that increments according to how many fields are needed. In this instance, if I have more than one item,

RE: outputting variable

2004-07-13 Thread Robert Orlini
[mailto:[EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 9:27 AM To: CF-Talk Subject: RE: outputting variable #trim(form[qty i])# Don't use evaluate if you don't have to. -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: 13 July 2004 15:05 To: CF-Talk Subject

RE: outputting variable

2004-07-13 Thread Robert Orlini
Subject: RE: outputting variable That's because I doesn't exist. Show us the code of the action page Pascal -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: 13 July 2004 15:35 To: CF-Talk Subject: RE: outputting variable Thanks All, but... On each example I

SOT: keyword 'Where' error

2004-07-09 Thread Robert Orlini
Is there a problem with this Insert? I get an Incorrect syntax near the keyword 'Where' error. I added single quotes around #cnumber# and still get the error. CFQUERY name=additem datasource=purchaseorders INSERT INTO itemsordered (cnumber, line, qty, item, priceeach, totalprice ) VALUES

RE: SOT: keyword 'Where' error

2004-07-09 Thread Robert Orlini
specify a where clause in an insert. If you are updating a row then use update not insert. Doug Robert Orlini wrote: Is there a problem with this Insert? I get an Incorrect syntax near the keyword 'Where' error. I added single quotes around #cnumber# and still get the error. CFQUERY name=additem

OT - DHTML tab folder

2004-07-08 Thread Robert Orlini
Anyone know where I can get some snippet(s) of a DHTML tabbed document/text viewer? I found two on dynamic drive but not quite what I wanted Robert O. HWW [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: OT - DHTML tab folder

2004-07-08 Thread Robert Orlini
Yes please. Let me know. Robert O. -Original Message- From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Thursday, July 08, 2004 10:00 AM To: CF-Talk Subject: Re: OT - DHTML tab folder I'll be releasing a whole set of things like this as custom tags in the next week or two, want to do

OT: JavaScript history and refresh

2004-06-29 Thread Robert Orlini
Is it possible to go back one page with JS history and also refresh the page as well? I have this script: Script Language = _javascript_ alert (Item Deleted); window.history.go(-1); /script It goes back fine after prompting the user, but I would like it to refresh the same page it goes back

OT: JavaScript - Return Confirm

2004-06-22 Thread Robert Orlini
I'm trying to use _javascript_ to issue a popup confirm before it goes to a page. I'm using the return confirm function below which I used in a onSubmit. I'm kinda new to JS. Can I use the return confirm like an alert? It doesn't stop to confirm. Does someone have a better way? Thanks. CFIF

RE: OT: JavaScript - Return Confirm

2004-06-22 Thread Robert Orlini
Thanks. -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 22, 2004 1:12 PM To: CF-Talk Subject: Re: OT: _javascript_ - Return Confirm Robert Orlini wrote: I'm trying to use _javascript_ to issue a popup confirm before it goes to a page. I'm using

RE: SQL query style (WAS: SQL search query)

2004-06-16 Thread Robert Orlini
Since I started this thread and am thankful for the help, my query works with just one flaw: it displays duplicate records. I've tried the SQL in two ways: SELECTDISTINCT p.ponumber, i.item, p.invoicenumber, p.vendor, p.cnumber, i.cnumber, p.state, p.podate FROM purchaseorders p JOIN

OT: SQL search query

2004-06-15 Thread Robert Orlini
I'm still new to SQL. I want to search two tables from a form. The search below does not give me any errors, but neither does it generate any hits even though I enter the correct items to look for. How do I edit the SQL to make it search info in both the purchaseorders and/or itemsordered tables?

drop-down list problem

2004-06-14 Thread Robert Orlini
I have a dynamic dropdown list that gets a statecode from a table and then compares to what is sent via form tag. It displays the state in the tag as selected along with other states that can be chosen in the dropdown. Its all OK, except it displays all the states twice. Any help with the code

RE: drop-down list problem

2004-06-14 Thread Robert Orlini
The table had doubles and I did not bother to look. Thanks. RO -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: Monday, June 14, 2004 11:31 AM To: CF-Talk Subject: Re: drop-down list problem On Mon, 14 Jun 2004 11:22:36 -0400, Robert Orlini wrote: I have

SOT: JavaScript confirm delete

2004-06-14 Thread Robert Orlini
Anyone have or know where I can get some _javascript_ code that uses a _javascript_ confirm box to ask the user if they want to delete? Is there a CF way to do it? Thanks. Robert O. at HWW [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: JavaScript confirm delete

2004-06-14 Thread Robert Orlini
cfm - deleteConfirm.cfm - deleteAction.cfm -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message----- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Monday, June 14, 2004 3:04 PM To: CF-Talk Subject: SOT: _jav

chars not accepted in SQL?

2004-06-11 Thread Robert Orlini
Is there a code/way to make SQL accept these characters. The ITEM column is setup as a CHAR field. Should it be VARCHAR? Thanks as always. Robert Orlini [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: chars not accepted in SQL?

2004-06-11 Thread Robert Orlini
To: CF-Talk Subject: Re: chars not accepted in SQL? On Fri, 11 Jun 2004 09:36:26 -0400, Robert Orlini wrote: I get this error when I click SUBMIT in a form where I have an apostrophe in a name such as John's in the input field: ODBC Error Code = 37000 (Syntax error or access violation

RE: chars not accepted in SQL?

2004-06-11 Thread Robert Orlini
insert? -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Friday, June 11, 2004 10:17 AM To: CF-Talk Subject: Re: chars not accepted in SQL? On Friday 11 Jun 2004 15:07 pm, Robert Orlini wrote: CFQUERYPARAM go into the Insert? The sample code I got below confused

  1   2   3   4   5   >