RE: Cold Fusion MX Reference Manual

2002-08-09 Thread Benoit Hediard
We have a CF Pro licence with 2 years maintenance subscription. When we received the upgrade info to get CFMX, during the online registration/download process, MM asked us if we wanted to receive for free the CFMX documentation. It arrived something like 1 month later. There is 6 books (with the

RE: CFMX best practices and Imaging Lib

2002-08-09 Thread Benoit Hediard
I probably spend too much time with web designers. ; ) (the >> looks so good in 10px arial font...) -Message d'origine- De : Bonnie E. Betts [mailto:[EMAIL PROTECTED]] Envoyé : vendredi 9 août 2002 06:56 À : CF-Talk Objet : Re: CFMX best practices and Imaging Lib Nice site! I w

Re: Installing CFMX on a drive other than C:

2002-08-09 Thread Todd
Ryan, I have mine running on D: @ home and E: @ work and I've had no problems. ~Todd On Thursday, August 8, 2002, at 01:22 PM, Ryan Kime wrote: > > Has anyone installed ColdFusion MX (Pro or Ent) on a drive other than C? > > Something like D or F? > > > > We are setting up a new webserver and a

RE: cfflush

2002-08-09 Thread Philip Arnold - ASP
> I have this below and want to output "Product X updated!" but > I don't want it to output one per line. I need it to replace > the output and update. Kind of like the loading % on a flash > movie does. OK, for one thing, your OUTPUT variable will never change > http://www.fusionauthority.com

RE: cfhttp

2002-08-09 Thread Philip Arnold - ASP
> on the cfhttp tag for username and password.. is it wanting > a system pasword or a username and password to login to a > cold fusion tag? It's the username and password that would popup in the dialog box when you go to browse the location If the directory isn't secured, then you leave them ou

RE: cfflush

2002-08-09 Thread Raymond Camden
> does nothing > - try just a CFSET > > Next you need to use some DHTML to make a SPAN or DIV and then just > update it's contents with some simple JavaScript > > Looking into innerHTML in JS - then again, this will prolly > only work in > IE as NS has problems with dynamic content - it's poss

RE: CFC's question and the Arguments. (cfproperty vs this)

2002-08-09 Thread Raymond Camden
In some sense - cfproperty does nothing but add metadata to to the CFC. It does NOT auto validate. For example: will not throw an error. In general - all cfproperty does is add metadata to a CFC. However, this can be very powerful. I've written a UDF, for example, that allows me to specify

cflib.org announcement

2002-08-09 Thread Raymond Camden
Just a quick announcement in regards to some changes at cflib.org: *Added new registration system. Right now it just gives access to the udf newsletter subscription and.. *New Rating system. Should be pretty clear what it does. *Tee shirts for sale. Help support m.. um... the site. Yes, help supp

RE: Cold Fusion MX Reference Manual

2002-08-09 Thread Joshua Miller
Really? I called Macromedia yesterday because we didn't ever receive our CD and Manual for CFMX - they said they'd send out the CD but that we'd have to pay for the documentation ... And we had a 2 year subscription as well. Did you have to pay for your documentation? Joshua Miller Web Developme

RE: 500 Internal Server Error

2002-08-09 Thread Bryan F. Hogan
Here is the action page. Very simple just loops the the query records. SELECT * FROMtbl_Members WHERE CategoryID=#FORM.CategoryID# AND DeActivate = 0 AND FirstName <> 'Administrator' ORDER BY BusinessName -Original Message- From: mark brinkworth [

RE: cfflush

2002-08-09 Thread Bryan F. Hogan
Yes, I found the solution yesterday. function UpdateField(ProductID) { FormName.FormField.value=ProductID; } every loop output, just call UpdateField() Thanks -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09,

RE: 500 Internal Server Error

2002-08-09 Thread John Beynon
Are you using IE? If you turn off friendly error messages you might get more of a clue as to the root of the problem, Jb. -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] Sent: 09 August 2002 14:22 To: CF-Talk Subject: RE: 500 Internal Server Error Here is the action

RE: cfflush

2002-08-09 Thread Bryan F. Hogan
Yes, thanks. cfparam was left over from some testing trying to make it work with cf. Solution was like you said simple js. Thanks -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09, 2002 8:38 AM To: CF-Talk Subject: RE: cfflush > does nothing >

RE: cflib.org announcement

2002-08-09 Thread Mark A. Kruger - CFG
Ray, Yes, Case statements can save a boatload of time in a query. Also "Isnull( )" if an ratecount is null as in: select ISNULL(tblUDFs.Ratecount,0) It would return a 0 if the field was null. It's amazing when I look at my early CF how much time and effort I now save by adding some simple

RE: 500 Internal Server Error

2002-08-09 Thread Bryan F. Hogan
IE yes, error return is "An error has been logged." did not find anything in the event viewer. Don't know where else to look. But what is funny is that it only happens on some of the select options. -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09, 2

SQL Help

2002-08-09 Thread JLH All Turbo
How can I structure a query and it's output to pull all the records out that have a certain field = something and have them grouped by another field... And then in the output put a header for each group? In a DB with baseballs and footballs and different locations for the balls. Pull all balls

CFMX Installation Problems

2002-08-09 Thread Joshua Miller
Hello, I downloaded the 30 day trial of CFMX and tried to install it on a test server with CF5 running. The first thing that happened was it installed and completed, but every .cfm page I loaded said "The requested module could not be found". So I uninstalled/reinstalled CFMX - same problem. So,

Re: SQL Help

2002-08-09 Thread Matthew Walker
Make sure you are ordering by LocationName, then #LocationName# #Ball# Is that what you mean?? - Original Message - From: "JLH All Turbo" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, August 10, 2002 1:36 AM Subject: SQL Help > How can I

RE: SQL Help

2002-08-09 Thread Pascal Peters
SELECT location, ball FROM table ORDER BY location, ball #qTest.location# #qTest.ball# -Original Message- From: JLH All Turbo [mailto:[EMAIL PROTECTED]] Sent: vrijdag 9 augustus 2002 15:36 To: CF-Talk Subject: SQL Help How can I structure a query

RE: Cold Fusion MX Reference Manual

2002-08-09 Thread Benoit Hediard
Here is the email "Subscription Fulfillment Information" I have received when I have asked to get the CFMX upgrade. You should get it for free as a subscription holder. "Thank you. Your request is being processed. As a subscription holder, you are also entitled to receive the CD and Documentatio

Re: SQL Help

2002-08-09 Thread JLH All Turbo
Actually let me show you SELECT dbo.listings.address1, dbo.listings.city, dbo.listings.address1, dbo.listings.zip, dbo.listings.year_built, dbo.listings.sq_feet, dbo.listings.bedrooms, dbo.listings.bathrooms, dbo.listings.lot_size, dbo.listings.price, dbo.listings.short_description, dbo.list

Array Help?

2002-08-09 Thread Kris Pilles
I need some help with 2-dimensional arrays. Basically I want to have an array that dynamically adds and removes information about my active sites sessions. I understans how to get all the data, what I do not understand is how to Increacse the X in my array: array[x][1] Array[x][2] Array[x][3]

Re: SQL Help

2002-08-09 Thread JLH All Turbo
Woops, I didn't mean to post that query in there. Hehe. Sorry, disregard it. J - Original Message - From: "JLH All Turbo" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, August 09, 2002 9:49 AM Subject: Re: SQL Help > Actually let me show you > > SELECT dbo.li

RE: CFMX best practices and Imaging Lib

2002-08-09 Thread James Johnson
I agree. This is a great concept and looks like a lot of great information. I just can't read the screen easily enough. *** James Johnson SMB-Studios Innovative Online Learning for Spirit, Mind and Body www.smb-studios.com [EMAIL PROTECTED] -Original

RE: Array Help?

2002-08-09 Thread Raymond Camden
You don't have to do anything to increase x. If you want to find the current length of Array, just use arraylen(). This code will add a new array to the end of the existing array: CF let's you populate arrays without populating every entity. So you can (b

RE: Array Help?

2002-08-09 Thread Kris Pilles
Whats the advantage of using a structure of arrays?? Initially I had my session infon in a structure. I was just tracking how many people were currently active on the site. But now, I want to expand on that and capture CFId, Remote ADDR, Remote Host, browser etc... Eventually I want to try and

RE: Array Help?

2002-08-09 Thread Kris Pilles
ere is my code. What your saying is that I put an array inside of the structure??? How would I get the data out if I did that??? Application.UsersInfo = StructNew(); user_cfid = Evaluate(CFID); user_info = Now(); user_Host = CGI.Remote_host; user_Addr = CGI.Remote_Addr; User_Br

RE: Array Help?

2002-08-09 Thread Kris Pilles
Also Since im asking 1000 questions... Should I just be dropping this data into a table instead of storing it in memory??? I don't want to eat up all the ram on the server ya know??? -Original Message- From: Kris Pilles Sent: Friday, August 09, 2002 10:16 AM To: CF-Talk Subject:

RE: SQL Help

2002-08-09 Thread Pascal Peters
You need to change the ORDER BY: ORDER BY dbo.listings.location_id, dbo.styles.style_name, dbo.listings.id ASC And then you can group the CFOUTPUT #qTest.location_name# #qTest.style_name# #qTest.address1#

RE: Array Help?

2002-08-09 Thread Raymond Camden
> Whats the advantage of using a structure of arrays?? It may or may not be an advantage. When deciding what type of data structure to use, you should always consider what your needs are. Ie, how do you plan on storing and using the data. In general, I don't often use 2d arrays because normally i

RE: CFMX best practices and Imaging Lib

2002-08-09 Thread Benoit Hediard
I have changed my CSS.. the font are now 1px bigger. (even if the >> doesn't look nice in a 11px Arial font... ;) The main font also have a darker color, so it should be OK for printing. Thanks for your comments. Ben http://www.benorama.com -Message d'origine- De : James Johnson [

RE: Array Help?

2002-08-09 Thread Raymond Camden
Hmm, lot's of things here, I'll comment in code. > How would I get the data out if I did that??? If you are completely new to structures, your best bet is to read the docs. For a quickie... #x.name# or #x["name"]# > > > > > Application.UsersInfo = StructNew(); > > > First, if you

RE: Array Help?

2002-08-09 Thread Raymond Camden
> Also Since im asking 1000 questions... Should I just be dropping > this data into a table instead of storing it in memory??? I > don't want > to eat up all the ram on the server ya know??? > I would say it depends on your site usage. Storing some user info in the application scope is n

RE: CFMX Installation Problems

2002-08-09 Thread Dave Watts
> I downloaded the 30 day trial of CFMX and tried to install > it on a test server with CF5 running. The first thing that > happened was it installed and completed, but every .cfm > page I loaded said "The requested module could not be found". > So I uninstalled/reinstalled CFMX - same problem

OT: JavaScript Help - PLEASE!

2002-08-09 Thread Christian Abad
Folks: I'm in a bit of a quandary here, and was hoping that some if the brilliant minds on this list could offer some insight. Problem: We have hundreds of pages that (unfortunately) refer to a form by document.form[0]. We are now attempting to add a form to the top of the page, thus making it

RE: Array Help?

2002-08-09 Thread Everett, Al
> If you are completely new to structures, your best bet is to read the > docs. For a quickie... I found CFDUMP (or CF_DUMP or CFA_DUMP) invaluable in visualizing the "structure" of structures. Until I had that tool I never really grokked structures at all. ___

RE: Array Help?

2002-08-09 Thread Raymond Camden
> > If you are completely new to structures, your best bet is > to read the > > docs. For a quickie... > > I found CFDUMP (or CF_DUMP or CFA_DUMP) invaluable in visualizing the > "structure" of structures. Until I had that tool I never > really grokked > structures at all. Sorry for the noise,

Re: OT: JavaScript Help - PLEASE!

2002-08-09 Thread Critter
oi Christian!! might be..dunno..I'd just do a global search and replace in studio. and rename it [1] -- Critz Macromedia Certified Advanced ColdFusion Developer Friday, August 9, 2002, 10:32:03 AM, you wrote: CA> Folks: CA> I'm in a bit of a

RE: Array Help?

2002-08-09 Thread Kris Pilles
Thanks for all your help... -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09, 2002 10:49 AM To: CF-Talk Subject: RE: Array Help? > > If you are completely new to structures, your best bet is > to read the > > docs. For a quickie... > > I foun

OT: Javascript Operator

2002-08-09 Thread James Taavon
What is would be the Javascript equivalent to this CFIF statement. I am checkig for valid form entry and I want to do it client side and not server side. "> __ Get the mailserver that powers this list at http://www.coolfusio

RE: JavaScript Help - PLEASE!

2002-08-09 Thread Philip Arnold - ASP
> I'm in a bit of a quandary here, and was hoping that some if > the brilliant minds on this list could offer some insight. > Questions: > Is there any way to "spoof" the DOM into thinking that the > first form on the page is document.form[100]? (Can you > override how the DOM indexes objects in

RE: Javascript Operator

2002-08-09 Thread Chris Lofback
Remember that JavaScript is case sensitive so you might try something like this: if ( (document.MyForm.MyField.value.toLowerCase().indexOf(' language="') != -1) || (document.MyForm.MyField.value.toLowerCase().indexOf('<

Re: OT: JavaScript Help - PLEASE!

2002-08-09 Thread S . Isaac Dealey
I would probably use a multi-file RegularExpression replacement in ColdFusion studio ... be very careful tho... and replace all the references to document.form[0] with document.myformname and give form[0] the name it needs... the regex I'm sure will only be necessary for adding the form name, beca

ODBC Browser that can use RDS?

2002-08-09 Thread jon hall
Anyone know of a tool other than studio that can connect to an ODBC datasource over rds and do adhoc queries? -- jon mailto:[EMAIL PROTECTED] __ Signup for the Fusion Authority news alert and keep up with the latest news

post form variables to another action with cfhttp?

2002-08-09 Thread Tyler Silcox
Can I post form variables to another action page with CFHTTP and have the user relocated to that action page at the same time? I'd rather not user JavaScript to submit the form if I don't have to and from what I know about cfhttp, it keeps the user on the originating server... Tyler Silcox em

Re: Array Help?

2002-08-09 Thread Joe Eugene
"Don't forget your cflocks if you aren't on cfmx." Does this mean, you dont need CFLOCKS in CFMX? if so... does Pre- CFMX code with CFLocks add overhead to CFMX CFAS? Joe - Original Message - From: "Raymond Camden" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, Augu

RE: Array Help?

2002-08-09 Thread Raymond Camden
If you are on CFMX, you no longer need locks for server stability. You still need cflock for _logical_ reasons. For example: Should be locked so that the value is set correctly when incremented. === Raymond Camden, ColdFusion

CF4 Java Applet Problems

2002-08-09 Thread Edwards Robert (air0rae)
> I need independent confirmation of this. > > We have ColdFusion 4.0 running on our web servers. I installed the latest > Java Virtual Machine from Sun on my PC. When I run a web page with a cold > fusion java applet in it (CFGRID) I get an error. If I disable the Sun > Java VM in Internet Ex

RE: post form variables to another action with cfhttp?

2002-08-09 Thread Philip Arnold - ASP
> Can I post form variables to another action page with CFHTTP > and have the user relocated to that action page at the same > time? I'd rather not user JavaScript to submit the form if I > don't have to and from what I know about cfhttp, it keeps the > user on the originating server... I think

CFMX and client Varibales Cont. Testers Wanted!

2002-08-09 Thread Brook Davies
I reported the other day that I am receiving a lot of datasource errors when using largish client variables and a MSSQL7.0 variable repository under CFMX. No issues with the EXACT same config under CF4.5. If some one running MX could try this within an application that has client variables ena

Re: post form variables to another action with cfhttp?

2002-08-09 Thread Tyler Silcox
that's about what I thunk...i'm just going to post the return from my cfhttp on the page with #cfhttp.FileContent#, and then let the user wander from there...thanks-> Tyler Silcox email | [EMAIL PROTECTED] - Original Message - From: "Philip Arnold - ASP" <[EMAIL PROTECTED]> To: "CF-Talk"

Anyone have a copy of c++filt for Solaris I can use for debugging

2002-08-09 Thread Shawn Kernes
Macromedia says on their site that they will provide it on request, but I cant get anyone on the phone who knows what the hell I am talking about... see article http://www.macromedia.com/v1/handlers/index.cfm?ID=17754&method=full -Shawn _

Re: CFMX and client Varibales Cont. Testers Wanted!

2002-08-09 Thread Brook Davies
This got cut out of my last message: Setting client variable myTestVar.. At 10:03 AM 09/08/02 -0700, you wrote: >I reported the other day that I am receiving a lot of datasource errors >when using largish client variables and a MSSQL7.0 variable repository >under CFMX. No issues with the EX

Re: CFMX and client Varibales Cont. Testers Wanted!

2002-08-09 Thread Brian Scandale
Please Define Largish... At 10:03 AM 8/9/02, you wrote: >I reported the other day that I am receiving a lot of datasource errors >when using largish client variables and a MSSQL7.0 variable repository >under CFMX. No issues with the EXACT same config under CF4.5. > >If some one running MX could

CFXML

2002-08-09 Thread Cody
Maybe someone can help me with this one. I'm using CFXML to create an XML document to store in a database. The problem is, it keeps turning my apos; back into " ' ". For example: #XMLFormat(quote)# The xmlformat will turn the quote into "I can't use cfxml." but when I use the ToS

Certified CFMX Developer

2002-08-09 Thread Bryan F. Hogan
I noticed that on vue.com they are offering CF MX Developer, what's the difference between this and Certified CFMX Developer? __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and relat

OT: Adobe Acrobat install error

2002-08-09 Thread Bryan Stevenson
Hey All, Well I'm on my way to generating dynamic PDFs, but first I have to get Adobe Acrobat 5 to install on Win2K Professional SP3 so I can make a PDF to add stuff to. When I try and run the setup.exe I get "Setup.exe is not a valid Win 32 application". I say phooey to that nonsense. All I c

ColdFusion Server restarts on bad query syntax

2002-08-09 Thread Tracy Bost
ColdFusion 5 with latest odbc driver from microsoft , Sql Server 2000.. I noticed when the syntax is incorrect when querying a table such as a date/time or no ' ' for a string field, the coldfusion server restarts everytime, and the users get the typical "Request canceled or ignored by serv

Re: CFMX and client Varibales Cont. Testers Wanted!

2002-08-09 Thread Brian Scandale
Ahhh... so that is largish. An idea... set up a datasource for the repository as ODBC Socket... instead of as SQL Server. I have had problems using the SQLserver JDBC driver. Let me know how this test goes. Very curious as I am suddenly facing spurious Client.Variable losses after switching t

Query Help?

2002-08-09 Thread Kris Pilles
I need to write some SQL that says Delete from session where Last is 1 minute ago Delete >From Session Where Last < __ ??? __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www

RE: Adobe Acrobat install error

2002-08-09 Thread Dave Watts
> Well I'm on my way to generating dynamic PDFs, but first I > have to get Adobe Acrobat 5 to install on Win2K Professional > SP3 so I can make a PDF to add stuff to. > > When I try and run the setup.exe I get "Setup.exe is not a > valid Win 32 application". I say phooey to that nonsense. > >

RE: Certified CFMX Developer

2002-08-09 Thread Dave Watts
> I noticed that on vue.com they are offering CF MX Developer, > what's the difference between this and Certified CFMX Developer? There's no difference; Vue is the official certification provider for Macromedia certifications. That is, you go to Vue to take your certification exam. Dave Watts,

Speaking of: Certified CFMX Developer

2002-08-09 Thread Vernon Viehe
If you would like to take the ColdFusion MX Beta Certification exam, please sign up at: http://www.donath.com/mmbeta. You will receive a 40% off voucher to take the finalized certification exam. The voucher will be sent to the e-mail address you provide. The ColdFusion MX beta certification

RE: Certified CFMX Developer

2002-08-09 Thread Bryan F. Hogan
Thanks, I just thought that it was weird that they worded it differently than they normally do. -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09, 2002 1:40 PM To: CF-Talk Subject: RE: Certified CFMX Developer > I noticed that on vue.com they are off

RE: ODBC Browser that can use RDS?

2002-08-09 Thread Dave Watts
> Anyone know of a tool other than studio that can connect > to an ODBC datasource over rds and do adhoc queries? The RDS interface isn't publicly documented anywhere, to the best of my knowledge, so there probably aren't any such tools generally available. I could be wrong about that, but I hav

Access Question

2002-08-09 Thread Corey Yiap
I'm doing a project the has INSERT INTO, UPDATE and DELETE forms. My question is when I do my INSERT INTO or UPDATE, not all of my table form fields get inserted or updated. I can't figured out the glitch, sometimes it's fine and other times it would miss a couple of fields. How can I make sure

Re: Access Question

2002-08-09 Thread jon hall
Some questions. Which CF version? Can we see the queries? Code good, theory unproductive ;) Are the fields that get missed consistent? Are you able to reproduce the error, and if so what does the query look like in the debug? -- jon mailto:[EMAIL PROTECTED] Friday, August 9, 2002, 1:48:00 PM

RE: CFMX WACK

2002-08-09 Thread Ben Forta
Nope, that is not it (thankfully). The actual one is a lot less tacky, but a bit brighter. :-) --- Ben -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 06, 2002 2:11 PM To: CF-Talk Subject: RE: CFMX WACK I agree, but that is the same cover I h

RE: CFMX WACK

2002-08-09 Thread Smith, Matthew P -CONT(DYN)
>>Flash Fusion. Where is that? Is it a mailing list or a site? I'm starting to get my feet wet with flash. Thanks >>-Original Message- >>From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] >>Sent: Wednesday, August 07, 2002 10:10 AM >>To: CF-Talk >>Subject: Re: CFMX WACK >> >>No, the b

RE: Query Help?

2002-08-09 Thread Cantrell, Adam
WHERE last < #DateAdd("n", "-1", now())# Adam. > -Original Message- > From: Kris Pilles [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 09, 2002 12:12 PM > To: CF-Talk > Subject: Query Help? > > > I need to write some SQL that says > Delete from session where Last is 1 minute ago >

RE: CFMX WACK

2002-08-09 Thread Neil Robertson-Ravo =TMM=
Thanks Ben :-) that’s a relief...!!! -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent: 09 August 2002 19:05 To: CF-Talk Subject: RE: CFMX WACK Nope, that is not it (thankfully). The actual one is a lot less tacky, but a bit brighter. :-) --- Ben -O

RE: CFMX WACK

2002-08-09 Thread Neil Robertson-Ravo =TMM=
Just be careful you don’t drown :-) -Original Message- From: Smith, Matthew P -CONT(DYN) [mailto:[EMAIL PROTECTED]] Sent: 09 August 2002 19:13 To: CF-Talk Subject: RE: CFMX WACK >>Flash Fusion. Where is that? Is it a mailing list or a site? I'm starting to get my feet wet with

RE: CFMX WACK

2002-08-09 Thread todd
yeah... It's the FlashCFM.com mailing list. http://www.flashcfm.com/mailing_list.cfm ~Todd On Fri, 9 Aug 2002, Smith, Matthew P -CONT(DYN) wrote: > >>Flash Fusion. > Where is that? > > Is it a mailing list or a site? > > I'm starting to get my feet wet with flash. > > Thanks > > > >>-

RE: Access Question

2002-08-09 Thread Corey Yiap
I'm using CFMX. My query is pretty simple and . The fields missed are pretty consistent, but there were no error. It just doesn't write/show in the database. I got the confirm page that it was successfully updated or inserted every time. corey -Original Message- From: jon hall [mailt

Re: Access Question

2002-08-09 Thread JLH All Turbo
with cfupdate, you have to name the form fields the same as the table fields. if they aren't spelled exactly the same, cfupdate won't work. try using cfquery instead ... more flexibility.. and WHOA! you might learn something.:-) j - Original Message - From: "Corey Yiap" <[EMAIL PROTECTE

RE: Access Question

2002-08-09 Thread Neil Robertson-Ravo =TMM=
Yep, CFUPDATE is one of those tags you really shouldn’t use :-) -Original Message- From: JLH All Turbo [mailto:[EMAIL PROTECTED]] Sent: 09 August 2002 19:38 To: CF-Talk Subject: Re: Access Question with cfupdate, you have to name the form fields the same as the table fields. if they

CFMX on Mac OS X - The "Ugly Install" is now available

2002-08-09 Thread Dick Applebaum
For those of you who are interested, Part 3 of the series on CFMX on Mac OS X is available at the O'Reilly site. This is the meat of the port of CFMX to Mac OS X (What Jesse Noller called the "Ugly Install"

CFMX and client variables

2002-08-09 Thread Brook Davies
Can somebody/anybody please try this on a CFMX installation within an application which is defined to use a MSSQL7.0 datasource for client variables storage. If some one can confirm that this works for them, then I can continue to look for other reasons other than a MX related issue. Settin

Large file uploads

2002-08-09 Thread chris.alvarado
How is everyone dealing with large file uploads? I have a page where a user can use the standard browse > upload functionality on a lot of sites. Behind the scenes I am just using the cffile tag etc. However, over a certain file size (seems to be about 10MB) there seems to be a huge bottleneck.

Re: RE-REPOST: Limiting Printing

2002-08-09 Thread Bryan Stevenson
Does the Flash print function simply send the file/movie to the client's printer or does it do more than that? Thanks Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] ---

Long raw and coldfusion

2002-08-09 Thread Douglas Brown
Does anyone have an example of pulling long raw data from an oracle database GT 64k. I imagine having to loop through the chunk size until reaching the end. Douglas Brown Email: [EMAIL PROTECTED] __ This list and all House of

Redirection after login

2002-08-09 Thread Paul Giesenhagen
Got a question for you folks. If I try to access this page: http://www.domain.com/page.cfm?param1=value1¶m2=value2¶m3=value3 And I have a check on that page that sees if a user is logged in, and if they are, no problem display the page, if they aren't, I want to redirect them to a login.cfm pa

RE: Redirection after login

2002-08-09 Thread Tangorre, Michael
Try using the cgi.http_referer variable to obtain the page the user came from... then cflocate (or if using MX, use server side redirect) them to that page once logged in. hth, mike -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09, 2002 3:10

RE: Redirection after login

2002-08-09 Thread Shawn Grover
One way is to grab the CGI.HTTP_REFERER and CGI.QUERY_STRING values on the login page, and submit it with the Username/password. If the validation works, then do a redirction to the required page - if the required page isn't known, then just redirect to the default home page. And let the user na

Re: CFMX and client Varibales Cont. Testers Wanted!

2002-08-09 Thread Brian Scandale
Hey Brook, Had no problem with a 28K file... set the Client variable and then displayed it much later down the page. I'm running CFMX Win2K SQLServer2K and using ODBC socket connection to the ClientVariable store. try ODBC socket and let me know how it goes... I also am chasing some client va

RE: Adobe Acrobat install error

2002-08-09 Thread Turetsky, Seth
While on the subject, does anyone have any docs/sites on creating pdf's on the fly using CF, I read about PDFLIB, is that a standard way to do so? -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09, 2002 1:38 PM To: CF-Talk Subject: RE: Adobe Acrobat i

RE: Adobe Acrobat install error

2002-08-09 Thread John Beynon
That error usually results from a corrupt download - did you use the same install on the WinME box? Jb. -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] Sent: 09 August 2002 18:14 To: CF-Talk Subject: OT: Adobe Acrobat install error Hey All, Well I'm on my way to g

Re: Adobe Acrobat install error

2002-08-09 Thread Bryan Stevenson
I've looked into: -CF_PDF (free) -CF_PDFFormFiller (free) -CF_PDFConnect 3.0 (commercial) So far I have only tested the CF_PDFConnect tag because they provide an online demo. It looks like CF_PDFFormFiller dos the same thing, but for free. I can't test it though because I need Acrobat to create

RE: CFMX and client variables

2002-08-09 Thread Dan Haley
WinXP, SQL Server MSDE, CFMX ... did fine with a 31k file. Did you set up the table for the client variables storage yourself? Or did you let the CF admin page do it? I let the admin page do it and here is the DDL for the CDATA table ... maybe you can verify that the table is set up correctly?

Re: Adobe Acrobat install error

2002-08-09 Thread Bryan Stevenson
yup Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com

RE: Adobe Acrobat install error

2002-08-09 Thread John Beynon
Try turning off AntiVirus software... -Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED]] Sent: 09 August 2002 20:53 To: CF-Talk Subject: Re: Adobe Acrobat install error yup Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc

Re: Adobe Acrobat install error

2002-08-09 Thread Bryan Stevenson
Thanks...but no go Bryan Stevenson B.Comm. VP & Director of E-Commerce Development Electric Edge Systems Group Inc. t. 250.920.8830 e. [EMAIL PROTECTED] - Macromedia Associate Partner www.macromedia.com -

RE: Adobe Acrobat install error

2002-08-09 Thread Kwang Suh
There's a free PDF generator custom tag called CF_HTML2PDF3 on the dev exchange. Works quite well. > -Original Message- > From: Turetsky, Seth [mailto:[EMAIL PROTECTED]] > Sent: Friday, August 09, 2002 1:32 PM > To: CF-Talk > Subject: RE: Adobe Acrobat install error > > > While on the su

RE: Long raw and coldfusion

2002-08-09 Thread Dan Haley
Using a long column in an 8.1.6 database, native drivers, CF 4.5, no problem doing this using a standard select field from table. I tested it with a quick table and read in an 88k file and inserted that, then read it back out again. Do you have the 'enable retrieval of long text' checked in the

Javascript woes...

2002-08-09 Thread Kevin Langevin
Hi all- I know that everyone steals their Javascripts from like one guy somewhere on the Internet (he's a busy guy, that Javascript programmer) so I'm wondering if he's on the list. I have this form that I need to be able to type in a text box, and have the form submit onkeyup, but when the form

Re: Javascript woes...

2002-08-09 Thread Brian Scandale
I use this script to put the cursor into the First Form Window... I suspect you can modify it to suit your needs.