RE: cfprocparam / dbvarname issue?

2002-10-22 Thread Ken Wilson
FWIW, whoever wrote the Code Analyzer for CFMX knows it. Here's the text of what it tells you when it encounters dbvarname: ### Dbvarname Info The DBVARNAME attribute for CFPROCPARAM is ignored in ColdFusion MX. How to Fix If your application is dependent on name/value CFPROCPARAM entries,

RE: ArcIMS

2002-10-22 Thread Hugo Ahlenius
Try: http://support.esri.com or http://forums.esri.com There are full documentation and good forums there. You should start with firing up the ArcIMS administrator to see what services are running, and what AXL files they are using (XML map definitions) -- you need a password to get in there,

RE: MX + ArcIMS

2002-10-22 Thread Hugo Ahlenius
See my other post. The ArcIMS administrator has both a web-interface and is also a stand-alone java application. I have had problems with the web-interface, so I haven't used (or installed) that in a long time -- I don't remember the URL/path for that (check the docs?). The java application could

Re: check/uncheck checkboxes

2002-10-22 Thread Stephen Moretti
Just make the image look like a checkbox, but I think the code I gave you will pretty much work with a check box too. Stephen - Original Message - From: Robertson-Ravo, Neil (REC) [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, October 21, 2002 5:28 PM Subject: RE:

RE: repost: CF MX Debug option screws up javascript

2002-10-22 Thread D. Delcomminette INGECOM
Yes right, it improves things in some way as soon as you use manually the debug this page option. I cannot use the floating debug pane, because my app main page is a frameset and activation the floating debug page also has some interference with the frameset. Dominique -Original

RE: WDDX/XML

2002-10-22 Thread Thomas Chiverton
item would hold quantity, position 2 would hold price etc. (i.e. 2^5|5^10 You don't want to do that :-0 Store a unique session ID in the client, and use that as a lookup into a server side list of products and prices, either in session. or the database itself. Tom Chiverton You don't have to

RE: Checkbox Value

2002-10-22 Thread Ben Koshy
You can't use an CFIF statement inside a CFINPUT Try this: cfif userinfo.worh EQ 1 cfinput type=checkbox name=worh value=1 checked cfelse cfinput type=checkbox name=worh value=1 /cfif Or switch to a normal input type= -Original Message- From: Jillian Carroll

Newbie Question on Looping

2002-10-22 Thread Hawkes, Keith A CIV
I've recently taken a position to webify things and Cold Fusion is the tool de jour. I'm having trouble with an aspect and I'm sure someone here has been through this before. It's a common personnel db with a common objective - I need to do a morning roster with five different types of status.

RE: Newbie Question on Looping

2002-10-22 Thread Adrian Lynch
Your code, we nd ya code -Original Message- From: Hawkes, Keith A CIV [mailto:KAHawkes;rroads.med.navy.mil] Sent: 22 October 2002 12:30 To: CF-Talk Subject: Newbie Question on Looping I've recently taken a position to webify things and Cold Fusion is the tool de jour. I'm

Re: Newbie Question on Looping

2002-10-22 Thread Stephen Moretti
Keith, I've recently taken a position to webify things and Cold Fusion is the tool de jour. I'm having trouble with an aspect and I'm sure someone here has been through this before. It's a common personnel db with a common objective - I need to do a morning roster with five different types

Re: CFX_GIFGD Help

2002-10-22 Thread Richard Meredith-Hardy
You should really be using CFX_IMAGE which is the newer incarnation of CFX_GIFGD. Much more powerful and thread-safe. I believe the latest version is 1.4 Can't tell you where you can get it at the moment, but I dare say someone on this list can. Mark Smeets wrote: Hello All, Does

Re: Oracle 8 Native Drivers Failing

2002-10-22 Thread David Hannum
The TNSNames.ora file is fine. Oracle, Merrant and Microsoft ODBC all connect and run, the 7.3 Native Drivers connect and run, SQL Plus connects and runs. The Oracle 8 Native Drivers fail verification. Dave - Original Message - From: Catherine Taylor [EMAIL PROTECTED] To: CF-Talk

RE: Newbie Question on Looping

2002-10-22 Thread Steve Green
My guess would be your not recieving/acting on whats passed from the checkboxs correctly .. They only pass to the action page if ticked .. otherwise nothing appears. SteG. -Original Message- From: Hawkes, Keith A CIV [mailto:KAHawkes;rroads.med.navy.mil] Sent: 22 October 2002 12:30 To:

Re: Oracle 8 Native Drivers Failing

2002-10-22 Thread Cathy Taylor
Try creating a test page doing a basic query using the datasource set up to connect using 8i. It will give you a more detailed error than the verification in the administrator. That might help you pinpoint it. - Original Message - From: David Hannum [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: cfcomponents with instance data

2002-10-22 Thread Raymond Camden
You could simply have the CFC store information in the database. In your application.cfm, do: cfset myCFC = createObject(component,foo) cfset myCFC.load(client.urltoken) The load function would hit the database and retrieve information for the client. You could then add a store function to save

ActivePDF Hosts?

2002-10-22 Thread Jeffry Houser
This is a bit off topic, but.. Are there any existing hosts (preferably CF) that offer ActivePDF products as part of the hosting package? Thanks! -- Jeffry Houser | mailto:jeff;farcryfly.com DotComIt, Putting you on the web AIM: Reboog711 | Phone: 1-203-379-0773 -- My CFMX Book:

Calling Oracle stroed procedure

2002-10-22 Thread Kris Pilles
I was hoping someone is calling oracle stroed procedures via coldfusion out there??? I need to do this as part of an app we've been wrokgin on all week but I just read in Cfdocs that it does nto return record sets in the traditional sense??? I just need to call an oracel stored prcedure... and

RE: ArcIMS

2002-10-22 Thread jlangevin
Here is a link to the install doc for ArcIMS. Not everything you're looking for, but might help get a feel for the app. http://arconline.esri.com/arconline/documentation/ims_/Installing_ArcIMS_Windows pdf You can buy a copy of the user manual on their site. It's about $30.

RE: Calling Oracle stroed procedure

2002-10-22 Thread Plunkett, Matt
Yes, you can. If you're using PL/SQL, just make sure you define your procedure's output as OUT variables. Recordsets should be defined as REF CURSOR. Then use cfstoredproc to run the procedure. cfstoredproc procedure=mypackage.myproc datasource=#datasource#

RE: Newbie Question on Looping

2002-10-22 Thread Mike Brunt
Keith, without seeing what you have I'll take a guess. What you need to do is loop over your insert/update query once for every check box selected. So surround your insert/update query with something like this (checkbox.id: is your checkbox name substitute yours) - cfloop index = ListElement

Re: Calling Oracle stroed procedure

2002-10-22 Thread DDB Lists
Anyone got this working on cfmx? I ran some tests with the cfmx natve driver for oracle but that one kept complaining about the CF_SQL_REFCURSOR being an invalid type or something to that effect. - Original Message - From: Plunkett, Matt [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED]

Free way to scan into Coldfusion

2002-10-22 Thread Kris Pilles
Are there any free tags or ways to scan images directly into my apps... I saw active scan but the client does not want to spend an extra 200 to buy it... go figure.. Kris Pilles Website Manager Western Suffolk BOCES 507 Deer Park Rd., Building C Phone: 631-549-4900 x 267 E-mail: [EMAIL

Multiple updates on a single submit

2002-10-22 Thread Kennerly, Rick H CIV
a bit intimidated by the level of discourse on this list, but here goes. (You should start a CF-Talk_Training_Wheels for guys like me.) Anyway, just getting started with CF and one thing I never see are examples of multiple record updates into a database with a single submit button. What

RE: Multiple updates on a single submit

2002-10-22 Thread Everett, Al
Something similar to this was discussed yesterday. Check out http://www.houseoffusion.com/cf_lists/index.cfm?method=messagesthreadid=179 60forumid=4refresh=0 -Original Message- From: Kennerly, Rick H CIV [mailto:RHKennerly;rroads.med.navy.mil] Sent: Tuesday, October 22, 2002 11:05 AM

RE: Free way to scan into Coldfusion

2002-10-22 Thread Rick Faircloth
I missed the info on active scan... Can you give me a link? TIA, Rick -Original Message- From: Kris Pilles [mailto:kpilles;wsboces.org] Sent: Tuesday, October 22, 2002 10:03 AM To: CF-Talk Subject: Free way to scan into Coldfusion Are there any free tags or ways to scan images

RE: Free way to scan into Coldfusion

2002-10-22 Thread Kris Pilles
http://www.cfdev.com/activescan/executive.cfm Costs 200 bucks -Original Message- From: Rick Faircloth [mailto:Rick;GoLibertyOnline.com] Sent: Tuesday, October 22, 2002 10:31 AM To: CF-Talk Subject: RE: Free way to scan into Coldfusion I missed the info on active scan... Can you give

RE: Multiple updates on a single submit

2002-10-22 Thread Mark A. Kruger - CFG
Rick, There's lots of ways to do this. Each approach has it's own strengths and weaknesses. Here's one: On the form using radio, create a separate form name for each employee using a label and the PK from the table (let say it's a column named employeeID): input type=radio

RE: Free way to scan into Coldfusion

2002-10-22 Thread Carlisle, Eric
How good are you with TWAIN and C++? :-) (I'm always entertained when I remember what TWAIN stands for). -Original Message- From: Kris Pilles [mailto:kpilles;wsboces.org] Sent: Tuesday, October 22, 2002 10:03 AM To: CF-Talk Subject: Free way to scan into Coldfusion Are there any free

RE: Free way to scan into Coldfusion

2002-10-22 Thread Kris Pilles
Well if I was confident in my abilities with C++ I would just write my own connection lol Twain doesn't seem to bad but I guess I could always use one of those free ASP versions... Hate mixing ASP and CF but I don't want to reinvent the wheel either... KP -Original Message- From:

Re: Oracle Error no descriptor for this position

2002-10-22 Thread Tony Schreiber
I was just about to post this myself when I noticed the thread. I have this same issue. Win2k/CF5 - Win2k/Oracle 8.0.5 Happens fairly frequently. Much too often basically, but only on larger queries. I also get Timeout while trying to obtain Oracle statement lock. Just started researching

Re: Multiple updates on a single submit

2002-10-22 Thread Valerie L. Criswell
If I'm understanding you , there are actually two ways of doing this. If you're certain that your data won't contain any commas, the easiest way is to build the form by looping over each queried item. Each item in the form will have the same name (ie employeeID, attendanceStatusID). This will

Re: Shopping Carts PayPal IPN

2002-10-22 Thread Tony Schreiber
I added Paypal (with IPN) to an existing shopping cart. You don't need to use Paypal's cart to use IPN. You don't need a shopping cart at all to use IPN - it's just a method by which PayPal informs you that a payment has been made. Howdy, This is directed to anyone who has used PayPal with

SOT: How do I stop DreamweaverMX adding a / to the front of all my links?

2002-10-22 Thread James Smith
How do I stop DreamweaverMX adding a / to the front of all my links? It is VERY annoying when you have for example. frame name=nav scrolling=NO noresize src=nav.htm And when you save the file Dreamweaver changes this to frame name=nav scrolling=NO noresize src=/nav.htm for you. This creates

CF to excel formatting questions

2002-10-22 Thread Janine Jakim
I'm using the basic call to excel (as explained by BF in his book) because I do know that all my users have excel. My questions: 1. Can you add an excel toolbar- I want the users to be able to sort the information on any of the columns. 2. Is there any way to get it so that the headings can

Using Distinct with other fields in one query

2002-10-22 Thread Ben Densmore
Can someone tell me if there is a way to use the Distinct keyword to grab one distinct field but also grab other fields? I am using the Distinct keyword to only get one email address from our database if there are duplicates, but I also need the customerID and name but it's doing a distinct

RE: How do I stop DreamweaverMX adding a / to the front of all my links?

2002-10-22 Thread Robertson-Ravo, Neil (REC)
have you declared a site? what build of DW are you using? -Original Message- From: James Smith [mailto:cftalk;calmtechnology.co.uk] Sent: 22 October 2002 16:13 To: CF-Talk Subject: SOT: How do I stop DreamweaverMX adding a / to the front of all my links? How do I stop DreamweaverMX

Next/Last record

2002-10-22 Thread Thane Sherrington
I know I saw this somewhere, but I can't find it. I want to create a form with fields filled in from a database have a next and last button that moves forward or back one record repectively. How would I do this? T ~|

Re: CF to excel formatting questions

2002-10-22 Thread Thane Sherrington
At 11:13 AM 22/10/02 -0400, Janine Jakim wrote: I'm using the basic call to excel (as explained by BF in his book) because I do know that all my users have excel. My questions: 1. Can you add an excel toolbar- I want the users to be able to sort the information on any of the columns. 2. Is

RE: Next/Last record

2002-10-22 Thread Dave Wilson
Use the record viewer wizard in cf studio and then customize from there. -Original Message- From: Thane Sherrington [mailto:tsherr;auracom.com] Sent: 22 October 2002 16:23 To: CF-Talk Subject: Next/Last record I know I saw this somewhere, but I can't find it. I want to create a form

RE: Next/Last record

2002-10-22 Thread Jillian Carroll
You can DL it here... this code works REALLY well! http://www.webtricks.com/sourcecode/coldfusion.cfm -Original Message- From: Thane Sherrington [mailto:tsherr;auracom.com] Sent: Tuesday, October 22, 2002 9:23 AM To: CF-Talk Subject: Next/Last record I know I saw this somewhere, but I

Re: WDDX/XML

2002-10-22 Thread Bryan Stevenson
Well it wouldn't be a persistent cookie, so I'd say most folks would have a hard time reading/changing itbut good point ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED]

RE: BROWSER DETECT HELP

2002-10-22 Thread Mosh Teitelbaum
Rebecca Joy Sherman wrote: Does anyone know some simple code for browser,flash,activex,windows media, and real player detection? Please help! You can do this with a combination of CF and JavaScript code or you can go with a third party utility like BrowserHawk (www.browserhawk.com). If you

RE: WDDX/XML

2002-10-22 Thread Robertson-Ravo, Neil (REC)
you could encrypt if there is a worry... -Original Message- From: Bryan Stevenson [mailto:bryan;electricedgesystems.com] Sent: 22 October 2002 16:39 To: CF-Talk Subject: Re: WDDX/XML Well it wouldn't be a persistent cookie, so I'd say most folks would have a hard time reading/changing

RE: Free way to scan into Coldfusion

2002-10-22 Thread Rob Rohan
If no one every reinvented the wheel, our cars would have big stone wheels on them. -Original Message- From: Kris Pilles [mailto:kpilles;wsboces.org] Sent: Tuesday, October 22, 2002 7:56 AM To: CF-Talk Subject: RE: Free way to scan into Coldfusion Well if I was confident in my abilities

Regex Help

2002-10-22 Thread Chris Alvarado
Hello all, A bit unfamiliar with anything somewhat tricky using regular expressions. So any help with this would be very much appreciated. I have a set of text that I would like to replace with another set. I have a string of text example: ---Test--- Abc 123 Easy ---Test--- I need to not

SOLVED: Re: WDDX/XML

2002-10-22 Thread Bryan Stevenson
Well at least someone from our CFUG provided some code samples as opposed to pointing out flaws without solutions (except Neil that mentioned encryption...thanks Neil and have a nice day) ;-) Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. t.

Re: How do I stop DreamweaverMX adding a / to the front of all my links?

2002-10-22 Thread Owen Leonard
How do I stop DreamweaverMX adding a / to the front of all my links? Isn't there a checkbox in the object palette where you can tell Dreamweaver whether or not to make links root-relative? It's been a while since my demo expired... -- Owen

RE: Free way to scan into Coldfusion

2002-10-22 Thread Kris Pilles
Lol... You know what I meant~! -Original Message- From: Rob Rohan [mailto:rob;cardinalweb.com] Sent: Tuesday, October 22, 2002 11:43 AM To: CF-Talk Subject: RE: Free way to scan into Coldfusion If no one every reinvented the wheel, our cars would have big stone wheels on them.

RE: SOLVED: Re: WDDX/XML

2002-10-22 Thread Robertson-Ravo, Neil (REC)
no probs, stick with the list, there are some excellent resources here! -Original Message- From: Bryan Stevenson [mailto:bryan;electricedgesystems.com] Sent: 22 October 2002 16:48 To: CF-Talk Subject: SOLVED: Re: WDDX/XML Well at least someone from our CFUG provided some code samples as

RE: Regex Help

2002-10-22 Thread Ben Doom
Perhaps something like this: newstring = Join the CF-RegEx list for Happy Fun RegEx Help in a Bottle.; content = rereplace(content, '---Test---.*---Test---', newstring); This assumes that the test string appears only once in the text. If it appears multiple times, it gets a bit more complicated

Re: SOLVED: Re: WDDX/XML

2002-10-22 Thread Bryan Stevenson
hehe..thanks for the pep talk Neil...I've been here quite a while..and I miss the days of free flowing knowledge from friendly folks. Lately I must say it's been 85% whining so the real tech stuff just gets lost. That said I'm not going anywhereat least the OT posts IMHO are a source of

RE: How do I stop DreamweaverMX adding a / to the front of all my links?

2002-10-22 Thread Vernon Viehe
It's in the open/save dialog. So, click the yellow folder/path button for any picture, link, or anything else where you have to go into the Windows open/save dialog to choose the file, and rechoose the same file, but change the drop-down to relative to document instead of Site root. This

Re: Regex Help

2002-10-22 Thread Gyrus
- Original Message - From: Chris Alvarado [EMAIL PROTECTED] ---Test--- Abc 123 Easy ---Test--- I need to not only replace the Abc 123 Easy text, but also replace both the beginning ---Test--- and the ending ---Test-- but nothing prior to the beginning and nothing after the ending

Apache 2.0.4x connector

2002-10-22 Thread Vernon Viehe
Hey CF Apache 2.0.4x users, I've got an update on what we're doing for the ever changing magic number on Apache 2.0.4x: We will be releasing the source code to the connector so that one can recompile when needed for Apache 2.0.4x releases. The schedule is not finalized, but it will be in via

RE: Apache 2.0.4x connector

2002-10-22 Thread Stacy Young
Excellent Vernon thanks! -Original Message- From: Vernon Viehe [mailto:vviehe;macromedia.com] Sent: Tuesday, October 22, 2002 12:10 PM To: CF-Talk Subject: Apache 2.0.4x connector Hey CF Apache 2.0.4x users, I've got an update on what we're doing for the ever changing magic number on

RE: CF to excel formatting questions

2002-10-22 Thread Kola Oyedeji
Thane What exactly are web queries? Thanks Kola -Original Message- From: Thane Sherrington [mailto:tsherr;auracom.com] Sent: 22 October 2002 16:24 To: CF-Talk Subject: Re: CF to excel formatting questions At 11:13 AM 22/10/02 -0400, Janine Jakim wrote: I'm using the basic call

CFMX question for Ben and Debbie

2002-10-22 Thread Adrian Lynch
Any news on the release of the CFMX study guide and the CD version of CFMX Developers Edition? Cheers Adrian Lynch Thoughtbubble Ltd -- United Kingdom http://www.thoughtbubble.net Ph: +44 (0) 20 7387 8890 -- The information in this email and in any

Read from database and insert into string

2002-10-22 Thread FlashGuy
Hi, I need to read from my database the field strVar. I have 500+ entries. I need to read every line from the database, grab the contents of that field and put all the data into a variable called results. They must all be comma delimited. cfquery name=GetEnv datasource=database-name

RE: Read from database and insert into string

2002-10-22 Thread Adrian Lynch
cfquery name=GetEnv datasource=database-name dbtype=ODBC SELECT strVar,strDestination FROMusers /cfquery cfset myString = ListAppend(myString, GetEnv.strVar, ,) Ade -Original Message- From: FlashGuy [mailto:flashmx;rogers.com] Sent: 22 October 2002 17:33 To:

RE: Read from database and insert into string

2002-10-22 Thread Collin Tobin
Look into ValueList()... Collin Tobin QA Engineer 617 219 2000 [EMAIL PROTECTED] Macromedia® What the web can be.(tm) -Original Message- From: FlashGuy [mailto:flashmx;rogers.com] Sent: Tuesday, October 22, 2002 12:33 PM To: CF-Talk Subject: Read from database and insert into string

RE: Read from database and insert into string

2002-10-22 Thread Mosh Teitelbaum
Look into the ValueList() function, which takes a query.column and converts it into a comma-delimited list/string. If you want each list item to be quoted, than use the QuotedValueList() function. So, your code would look like: cfquery name=GetEnv datasource=database-name dbtype=ODBC

RE: Read from database and insert into string

2002-10-22 Thread Adrian Lynch
Opps, forgot the cfoutput query=GetEnv cfquery name=GetEnv datasource=database-name dbtype=ODBC SELECT strVar,strDestination FROMusers /cfquery cfoutput query=GetEnv cfset myString = ListAppend(myString, GetEnv.strVar, ,) /cfoutput Ade -Original

Possible MX Change (is that better sean? :)

2002-10-22 Thread Rob Rohan
W2k_jdk1.4.1_IIS5_THX1138 If you have a cfmail and are using something like: CFMAIL ... CFIF attributes.HTML eq 1CFMAILPARAM NAME=Content-Type VALUE=text/html/CFIF ...message... /CFMAIL to reuse the same code but flip between html and plain text - it doesn't seem to change the

RE: Read from database and insert into string

2002-10-22 Thread Ben Forta
Easy, use the ValueList() function ... CFSET results=ValueList(GetEnv, strVar) --- Ben -Original Message- From: FlashGuy [mailto:flashmx;rogers.com] Sent: Tuesday, October 22, 2002 12:33 PM To: CF-Talk Subject: Read from database and insert into string Hi, I need to read from my

Re: Oracle Error no descriptor for this position

2002-10-22 Thread Chris Norloff
No, no progress on no descriptor - we're looking at a number of things. It's intermittent, showing up only occasionally when when the server is under load testing. And I keep getting more number 1 priorities. sheesh. The Oracle statement lock problem sounds like Oracle needs more connections

Re: Read from database and insert into string

2002-10-22 Thread Tim Painter
Use ValueList() e.g cfset myList = ValueList(GetEnv.strVar) - Original Message - From: FlashGuy [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 22, 2002 12:33 PM Subject: Read from database and insert into string Hi, I need to read from my database the field

How do I Configure ColdFusionMX's Internal Web Server?

2002-10-22 Thread Troy Simpson
When ColdFusionMX is installed, the option to use a packaged Internal Web Server if provided. I have installed the internal web server and now I want to restrict it to listen only on localhost(127.0.0.1). Anyone know how to do this? Any information on how to configure this internal web server?

RE: CF to excel formatting questions

2002-10-22 Thread Thane Sherrington
At 05:25 PM 10/22/02 +0100, Kola Oyedeji wrote: Thane What exactly are web queries? A web query is created in Excel and allow Excel to read and import data from a webpage. E-mail me offlist if you want more info. T ~|

Sending multi-part messgaes with CFMAIl and CFMX

2002-10-22 Thread Brook Davies
In regards to this thread. I have script that works in pre-CFMX for sending multi-part messages but not in CFMX. Can any one point me in the right direction for sending multi-part messages with CFMX. -Brook At 09:41 AM 22/10/02 -0700, you wrote: W2k_jdk1.4.1_IIS5_THX1138 If you have a cfmail

RE: cfcomponents with instance data

2002-10-22 Thread Brook Davies
Wow, smart idea! So, this would essentially store the instance data with client var record. Does this imply that any time an instance variable is set within the CFC, it would also need to saved to the DB? Is there a big performance hit from loading the CFC on every page instead of just once and

RE: Sending multi-part messgaes with CFMAIl and CFMX

2002-10-22 Thread Robert Everland
I made a tag, but it's pay, cheap though. http://www.reactivevision.com/index.cfm?fuseaction=software.start cf_emaileveryone even have an option so you can send to people with aol mail. Robert Everland III Web Developer Extraordinaire Dixon Ticonderoga Company http://www.dixonusa.com

Re: cfprocparam / dbvarname issue?

2002-10-22 Thread Sean A Corfield
Thanx for cross-referencing that. So it sounds like a doc bug in that it is not clearly documented in CFMX that dbvarname is ignored (the docs seem to indicate named value pairs still work). On Tuesday, Oct 22, 2002, at 00:41 US/Pacific, Ken Wilson wrote: FWIW, whoever wrote the Code Analyzer

Re: File meta data lib (was: Re: counting # of characters in file)

2002-10-22 Thread Sean A Corfield
On Monday, Oct 21, 2002, at 09:31 US/Pacific, Jesse Houwing wrote: I had already altered them to Variables._File. Is that the same btw? I'm lost here. Blame it on the lack of coffee :) variables._file puts it in (the caller's) page scope. var _file puts it in the function's local scope

Re: repost: CF MX Debug option screws up javascript

2002-10-22 Thread Sean A Corfield
On Tuesday, Oct 22, 2002, at 01:30 US/Pacific, D. Delcomminette INGECOM wrote: Yes right, it improves things in some way as soon as you use manually the debug this page option. I cannot use the floating debug pane, because my app main page is a frameset and activation the floating debug

Re: SOT: How do I stop DreamweaverMX adding a / to the front of all my links?

2002-10-22 Thread Sean A Corfield
On Tuesday, Oct 22, 2002, at 08:13 US/Pacific, James Smith wrote: How do I stop DreamweaverMX adding a / to the front of all my links? This is a setting in the site definition: absolute vs relative links. Hmm, I can't find it now. Well, it used to be a setting in DW4 but it seems that DWMX

RE: CFMX question for Ben and Debbie

2002-10-22 Thread Vernon Viehe
Hey Adrian, The CF MX Developer Study Guide by Macromedia Press will be available in December 2002. The Evaluation Kit is now available from the online store, for those who want a CD instead of downloading the trials. It contains all of the MX product trials (and the CFMX Trial/Developer's

OT: Dreamweaver and not cfm file extension

2002-10-22 Thread Brook Davies
Does any one know how to set up DreamWeaver to use non cfm file extensions and still have access to the CF wizards and helpers etc Brook ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: CFIndex for Verity quit working - Needs Attention by Macromedia!

2002-10-22 Thread Richard Meredith-Hardy
I had a problem something like this with a verity collection based on a DB with about 50,000 records which occasionally falls over after about 10,000 alterations (despite daily optimizations). A CFINDEX action = PURGE followed by a CFINDEX action = REFRESH usually fixes it but once or twice I

RE: CFMX question for Ben and Debbie

2002-10-22 Thread Adrian Lynch
Nice one Vernon, December is miles away, any chance of getting it out earlier, just for me :OD I was hoping there would be a free trial/developers edition that you guys would be sending out on CD. Ade -Original Message- From: Vernon Viehe [mailto:vviehe;macromedia.com] Sent: 22 October

RE: Dreamweaver and not cfm file extension

2002-10-22 Thread Dan Phillips
I believe if you define the site as using CF as the server engine, these will show up. I'm pretty sure there is also an option in the view menu to specify what objects you want to see. I'm still a Newbie to this version of DW so I'm not for certain. -Original Message- From: Brook Davies

RE: SOT: How do I stop DreamweaverMX adding a / to the front of all my links?

2002-10-22 Thread Vernon Viehe
Uhmm, bless Sean, but... How do I stop DreamweaverMX adding a / to the front of all my links? This is a setting in the site definition: It's in the open/save dialog box, when you link to an asset (page, pic, swf, whatever). The setting is sticky. On a related subject, how do you have

RE: How do I configure ColdFusionMX's internal web server?

2002-10-22 Thread Dave Watts
When ColdFusionMX is installed, the option to use a packaged Internal Web Server if provided. I have installed the internal web server and now I want to restrict it to listen only on localhost(127.0.0.1). Anyone know how to do this? Any information on how to configure this internal

Multiple Records Update Issue

2002-10-22 Thread Hawkes, Keith A CIV
Date: Tue, 22 Oct 2002 11:31:57 +0100 From: Adrian Lynch [EMAIL PROTECTED] Subject: RE: Newbie Question on Looping Message-ID: [EMAIL PROTECTED] Your code, we nd ya code My apologies, I thought that might have been presumptuous - there I go thinking again! Here it is: cfset

RE: CF to excel formatting questions

2002-10-22 Thread Steve Drucker
If all of your users have Excel, then you might look into using the Microsoft Office web components. Web components allow you to embed an activeX excel control on a web page -- inheriting the basic Excel functionality. It's really the ultimate CFGRID replacement. Information can be passed to

Re: cfprocparam / dbvarname issue?

2002-10-22 Thread S . Isaac Dealey
Well... the doc's and the MX analyzer seem to indicate that it did work at one point in time, but it never has. How to Fix: If your application id dependant on nam/value cfprocparam entries -- but it's not possible for an application to be dependant on them. Prior version exhibit the same behavior

RE: How do I configure ColdFusionMX's internal web server?

2002-10-22 Thread Nick McClure
On top of this, is it possible to have MX Installed in both stand alone and as part of IIS? ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: CF to excel formatting questions

2002-10-22 Thread Brook Davies
Is it just me or does CFGRID actually suck? I just did a search on google for Microsoft Office web components, the results are scary. http://www.google.ca/search?hl=enie=UTF-8oe=UTF-8q=%22Microsoft+Office+we b+components%22meta= -Brook At 02:07 PM 22/10/02 -0400, you wrote: If all of your

Re: Oracle Error no descriptor for this position

2002-10-22 Thread Deanna Schneider
I've been trying to trudge through my memory about this one, since I used to get it and don't anymore. I think it was this issue: There was one app where I was using translate() in a query. I updated all the data to do what the translate was doing, and haven't had a problem since. You wouldn't

Known CFMX issues under consideration for upcoming Updater releas e

2002-10-22 Thread Vernon Viehe
TechNote 23464 provides a summary of some of the known issues with Macromedia ColdFusion MX. Fixes for these issues are currently being investigated for potential inclusion in an upcoming release of the ColdFusion MX Updater. Inclusion or exclusion in this list does not guarantee inclusion or

Re: Using Distinct with other fields in one query

2002-10-22 Thread Deanna Schneider
If all you really want is a list of distinct emails and the names that go with them, you can do this: Select Email,CustomerID,Name From SomeTable ORDER BY EMAIL cfoutput query=yourquery group=email p #email#:br cfoutput#customerid# - #name#br/cfoutput /p /cfoutput Deanna Schneider Interactive

CFMX Problem...

2002-10-22 Thread Gary W. Sullivan II
Hi everyone. I've been running CFMX on my development server for about 4 months now, and everything seemed to be happy until now. I've been noticing page generation errors in certain subfolders, and this is really scaring me because I am supposed to move our production server to CFMX next week

RE: How do I configure ColdFusionMX's internal web server?

2002-10-22 Thread Dave Watts
On top of this, is it possible to have MX Installed in both stand alone and as part of IIS? Yes, it's possible, and running on my laptop that way right now. You can either install CF as standalone, then manually configure the IIS connector, or (I imagine - I haven't tested this, but am pretty

Re: Known CFMX issues under consideration for upcoming Updater releas e

2002-10-22 Thread Marius Milosav
Is this list the final cut for the next updater? I haven't seen any mention for the null problem throw once in a while by CFMX server, http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3threadid= 410762highlight_key=ykeyword1=null Connection reset by peer, error

RE: CFMX Problem...

2002-10-22 Thread Dave Watts
I've been running CFMX on my development server for about 4 months now, and everything seemed to be happy until now. I've been noticing page generation errors in certain subfolders, and this is really scaring me because I am supposed to move our production server to CFMX next week :-(

RE: CFMX Problem...

2002-10-22 Thread Vernon Viehe
I saw something very similar to this recently discussed on CF Guru... Stacy, does this ring any bells for you? Vernon Viehe ColdFusion Community Manager Macromedia, Inc. -- Macromedia Certified Professional CF blog at http://vvmx.blogspot.com -Original

OT: Community Suite Information and Registration Now up at CF-Community.com!

2002-10-22 Thread Judith Dinowitz
You might have heard about the Community Suite -- the ColdFusion Programmer's home away from home (Walt Disney Dolphin, October 27 - 30, Room 7110). Perhaps, you think, I'll drop by and see what the fuss is all about. Well, you can find out more about the Suite -- and register ahead of time --

CFMX Issues/Bugs Database?

2002-10-22 Thread Joe Eugene
Vernon, I understand that you and MM team have been working on issues with CFMX. I was wondering.. if you can post current issues/bugs with CFMX and bugs status on MM site? Something like what sun has on Java.. check it out.. i really like this.. it makes a developers day..

Re: Sending multi-part messgaes with CFMAIl and CFMX

2002-10-22 Thread Sam Farmer
This should work for html and plain text. cfscript variables.boundary=Replace(CreateUUID(), -, , 'all'); variables.contenttype=multipart/alternative; boundary=#boundary#; /cfscript cfmail to=#variables.emailTo# from=#getEmailInfo.emailFrom# subject=#getEmailInfo.emailSubject# cfmailparam

RE: Known CFMX issues under consideration for upcoming Updater re leas e

2002-10-22 Thread Vernon Viehe
Hey Maurius, Let me highlight some of the text that preceeds the list, and try to elaborate a bit: This TechNote provides a summary of *some* of the known issues with Macromedia ColdFusion MX. Fixes for *these* issues are currently being investigated for *potential* inclusion in an upcoming

RE: Community Suite Information and Registration Now up at CF-Community.com!

2002-10-22 Thread Bryan F. Hogan
Do you need to also register for DevCon to attend cf-community? Bryan F. Hogan Director of Internet Development Macromedia Certified ColdFusion MX Developer Digital Bay Media, Inc. 1-877-72DIGITAL

  1   2   >