Re: Dreamweaver - split document

2004-02-25 Thread Calvin Ward
Using F10, you can the Code Inspector as a seperate window showing the same document. You can then dock that window underneat, above or beside your code view and there you are! Thanks, Calvin - Original Message - From: Robertson-Ravo, Neil (RX) To: CF-Talk Sent: Tuesday, February 24,

RE: Dreamweaver - split document

2004-02-25 Thread Robertson-Ravo, Neil (RX)
As I said...its doesnt exist as function.Thats a workaround ;-) _ From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: 25 February 2004 10:36 To: CF-Talk Subject: Re: Dreamweaver - split document Using F10, you can the Code Inspector as a seperate window showing the same document. You can

Is the word type a reserved word in CFMX

2004-02-25 Thread Steven Sharko
Is the word type a reserved word in CFMX? Error Executing Database Query. [MERANT][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement. The error occurred in D:\websites\serviceorders.cfm: line 124 122 : CFPARAM name=form.type

Re: PostgreSQL

2004-02-25 Thread Yves Arsenault
Thanks, I discovered that as well shortly after my post.. Works well so far. Yves On Mon, 23 Feb 2004 16:35:53 -0500, Pete Freitag [EMAIL PROTECTED] wrote: Yves Arsenault wrote: I entered the username and password that I created. I got an error.. (sorry didn't write it down), it couldn't

RE: Is the word type a reserved word in CFMX

2004-02-25 Thread Philip Arnold
From: Steven Sharko Is the word type a reserved word in CFMX? Error Executing Database Query. [MERANT][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement. That's a database error, not a CF error It's a reserved word in

total newbe question

2004-02-25 Thread Steven Sharko
Can you give me an example of how to rewrite this into a CFQUERY? CFINSERT datasource=#application.db# tablename=clntnote formfields=thisdate,subject,note,type,compid At 08:36 AM 2/25/2004, you wrote: From: Steven Sharko Is the word type a reserved word in CFMX? Error Executing

Re: total newbe question

2004-02-25 Thread Massimo Foti
Can you give me an example of how to rewrite this into a CFQUERY? CFINSERT datasource=#application.db# tablename=clntnote formfields=thisdate,subject,note,type,compid A nice place to start with SQL: http://www.w3schools.com/sql/default.asp Massimo Foti

Re: total newbe question

2004-02-25 Thread Steven Sharko
Massimo, You are the Dreamweaver Guru!I can not help if I have never written a insert statement.I was just looking for a quick example using CF.You still write all those tags for MM Dreamweaver.Last time I went to the extension board it did not appear you were still doing that. I was just

RE: total newbe question

2004-02-25 Thread Mark A. Kruger - CFG
basically cfquery datasource=blah insert into clntnote (thisdate,subject,note,type,compid) values ('#form.thisdate#','#form.subject#','#form.note#','#form.type#',#form.compid#) /cfquery You will need to debug it of course. -Mark -Original Message- From: Steven Sharko [mailto:[EMAIL

Re: total newbe question

2004-02-25 Thread Michael Hodgdon
cfquery name=myQuery datasource=#application.db# SELECT thisdate,subject,note,type,compid FROM clntnote /cfquery - Original Message - From: Steven Sharko To: CF-Talk Sent: Wednesday, February 25, 2004 8:53 AM Subject: total newbe question Can you give me an example of how to rewrite

problems accessing variables with components

2004-02-25 Thread Michael Hodgdon
We have built a content site using components.The site tested fine in development, but has been acting peculiar under load.This site is broken down into roughly 12 markets, and each market has it's own content that we deliver to the user.We have a market component that stores all the information

Re: total newbe question

2004-02-25 Thread Massimo Foti
I was just looking for a quick example using CF.You still write all those tags for MM Dreamweaver.Last time I went to the extension board it did not appear you were still doing that. I still develop DW extensions, but most of them are for internal/personal use only. If you would like to check

Re: total newbe question

2004-02-25 Thread Michael Hodgdon
Sorry about that, looked very quickly, skipped by the insert.My query would work for a select. From: Michael Hodgdon To: CF-Talk Sent: Wednesday, February 25, 2004 9:10 AM Subject: Re: total newbe question cfquery name=myQuery datasource=#application.db# SELECT thisdate,subject,note,type,compid

RE: problems accessing variables with components

2004-02-25 Thread Raymond Camden
Are you running CFMX 6 or 6.1? There were some serious issues with CFCs under load in 6 that were fixed in 6.1. Normally these involved queries, not arrays, but if your array is being generated from a query, it could be related. Either way - make sure you have 6.1. [Todays Threads] [This

Re: problems accessing variables with components

2004-02-25 Thread Michael Hodgdon
We are running version6,1,0,63958 - Original Message - From: Raymond Camden To: CF-Talk Sent: Wednesday, February 25, 2004 9:18 AM Subject: RE: problems accessing variables with components Are you running CFMX 6 or 6.1? There were some serious issues with CFCs under load in 6 that

Its amazing!

2004-02-25 Thread Steven Sharko
I just want to say that this is the best talk board in the world.Where else can you get such great minds to share with a newbe like me.Ben Forta, Massimo Foti, Dave Watts, Robert Segal, Ray Camden, Steve Sherman, Jeffery Houser, Nate Weiss, Paul Hastings, Nate Popovich, Micheal Smith (tera

RE: problems accessing variables with components

2004-02-25 Thread Raymond Camden
Can you share the code then? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Is the word type a reserved word in CFMX

2004-02-25 Thread Philip Arnold
122 : CFPARAM name=form.type default=t 123 : CFPARAM name=form.compid default=#gc.id# 124 : CFINSERT datasource=#application.db# tablename=clntnote formfields=thisdate,subject,note,type,compid 125 :/CFIF Something I keep on saying... Don't use CFINSERT, use a CFQUERY and you can control

still having a problem with insert

2004-02-25 Thread Steven Sharko
Error Executing Database Query. [MERANT][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement. The error occurred in D:\websites\serviceorders.cfm: line 127 125 : insert into clntnote (thisdate,subject,note,type,compid) 126 : values

RE: still having a problem with insert

2004-02-25 Thread Dave Watts
Subject: still having a problem with insert Error Executing Database Query. [MERANT][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement. The error occurred in D:\websites\serviceorders.cfm: line 127 125 : insert into

RE: still having a problem with insert

2004-02-25 Thread Marlon Moyer
You need to put single or double quotes (I can't remember which in access) around string data in the query, so #form.note# should become '#form.note#', or for a better solution, use cfqueryparam cf_sql_type=cf_sql_varchar value=#form.note# for this and all other fields. -- marlon And Bobby you

RE: IsDefined(CGI.foo) always returns YES

2004-02-25 Thread Mosh Teitelbaum
No problem, I know how it goes 8^). Thanks for the help though. -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 24, 2004

Re: still having a problem with insert

2004-02-25 Thread stas
Steven, you may need to surrround some of your insert values with single quotes as it seems judging from variable names that they are strings. - Original Message - From: Steven Sharko To: CF-Talk Sent: Wednesday, February 25, 2004 9:37 AM Subject: still having a problem with insert

Re: total newbe question

2004-02-25 Thread Jamie Jackson
On Wed, 25 Feb 2004 08:14:35 -0600, in cf-talk you wrote: basically cfquery datasource=blah insert into clntnote (thisdate,subject,note,type,compid) values ('#form.thisdate#','#form.subject#','#form.note#','#form.type#',#form.compid#) /cfquery You will need to debug it of course. -Mark Now

Re: still having a problem with insert

2004-02-25 Thread cf
like ppl keep saying the word type is a reserved word and WONT work u will have 2 rename that field in your database, no ands, ifs or buts about it. read this, straight from the mothership http://www.macromedia.com/support/ultradev/ts/documents/insert_into.htm Error Executing Database Query.

RE: still having a problem with insert

2004-02-25 Thread Mark A. Kruger - CFG
Steven, You need single quotes around all char data... as in '#form.subject#'. You will need to correctly format the date as well. Try using #createodbcdate(form.thisdate)#for that item.Also - as has been suggested a couple of times - using CFQUERYPARAM would be a good idea - faster, and safer -

RE: still having a problem with insert

2004-02-25 Thread Steven Sharko
I tried that and still got an error. Error Executing Database Query. [MERANT][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Syntax error in INSERT INTO statement. The error occurred in D:\websites\netpacq\serviceorders.cfm: line 127 125 : insert into clntnote

RE: still having a problem with insert

2004-02-25 Thread Mark A. Kruger - CFG
Steven, I would add one more thing. Rather than beat your head agains the wall in CF, get a quick book - the teach yourself SQL in24 hours would do nicely - and use the query analyzer or some other raw tool where you can pass in queries and view results. Take a half a day and learn SELECT ,

RE: IsDefined(CGI.foo) always returns YES

2004-02-25 Thread Mosh Teitelbaum
Well then I'm confused too because running that exact same code, I get the opposite result: using StructKeyExists(), foo exists in CGI using IsDefined(), foo exists in CGI Running ColdFusion 5.0.0.0 Enterprise. Anyone? -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651

Re: still having a problem with insert

2004-02-25 Thread Jamie Jackson
Yup, that's a mess alright. Looks like your form might be screwy as well, or had some html in a field, or something. Check your form, fix your text field values in the sql (wrap them with single quotes). And once you've done that, don't use that SQL :P Instead, use the cfqueryparam version that I

JRun has closed connection

2004-02-25 Thread Critter
oi CF-Talk,!! We'verecently moved a couple of our applications from CF5 to MX. We are randomly, yet repeatedly gettingJRUNerrorsthatsaytherewasaninternalservererror. and JRUN has closed the connection. A refresh of the page, seems to clear the error sometimes any ideas / suggestions?

RE: still having a problem with insert

2004-02-25 Thread Mark A. Kruger - CFG
Steven, yes... if you use createodbcdatetime() or createodbcdate() to massage the variable thisdate into something that looks like {ts '2004-02-25 09:49:00'}Then you must REMOVE the single quotes around that one... also, is the column name really thisdate?Remember the name of the column and the

OT: Radio button check

2004-02-25 Thread Robert Orlini
How do I check whether a certain value is checked off on a radio button? The group name is send. The value I want checked is whether it is sendemail. If it is I want an alert to ask that the subject is required. Thx. Robert O. Here is part of what I have so far: if((form.send.value).checked

Re: problems accessing variables with components

2004-02-25 Thread Michael Hodgdon
Before I dump all this code on you, I would like to mention that all of this logic works in development.In fact, it also works on the production server just fine.However, every 5 or 10 minutes or so we receive an error message stating sthcpinfo.amarkets from the hcp.cfc component cannot be

RE: JRun has closed connection

2004-02-25 Thread Mike Townend
depends on what the server is doing at the time... We get this quite a bit on a site where we are using cfx tags to do image manipulation and pop mail access, it usually happens on the pop mail access... the only thing to do is cycle the server (as it doesnt raise an event in the services panel so

RE: Radio button check

2004-02-25 Thread Plunkett, Matt
-Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 9:56 AM To: CF-Talk Subject: OT: Radio button check How do I check whether a certain value is checked off on a radio button? The group name is send. The value I want checked is whether it

RE: problems accessing variables with components

2004-02-25 Thread Raymond Camden
Please see my comments in the code below. !--- COLDFUSION COMPONENT: hcp.cfc --- cfcomponent displayname=hcp extends=main hint=I contain methods that load and access information for the entire hcp.com application. !--- METHOD: initializeObject() --- cffunction name=initializeObject

RE: still having a problem with insert

2004-02-25 Thread Ian Skinner
A trick I used in the my youth to help me learn: Since you are using Access, use the query builder in Access to build the query, then change the view to SQL view and copy the SQL code from there and paste into your Cold Fusion cfquery... tag.A few simple modifications to incorporate the form

OT: freelancer

2004-02-25 Thread Mark A. Kruger - CFG
cf folks, A friend of mine (a designer) is working on a job site and needs a contractor. It's not the sort of project that we are interested in at the moment :)It's a job site - searches, job candidates and employers... subscription based I believe. I have no idea of the budget or anything else

RE: JRun has closed connection

2004-02-25 Thread Sparrow-Hood, Walter
It seems to be caused by different things for different people.For us, it was the use of getPageContext.forward() although getPageContext.include() works fine. Walt -Original Message- From: Critter [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 9:54 AM To: CF-Talk

Re: problems accessing variables with components

2004-02-25 Thread Michael Hodgdon
Thanks Ray, I have made some additional comments to yours.Hope you get a chance to look again Michael S Hodgdon Web Development Project Manager 617 - 669 - 7183 [EMAIL PROTECTED] - Original Message - From: Raymond Camden To: CF-Talk Sent: Wednesday, February 25, 2004 10:14 AM

RE: Radio button check

2004-02-25 Thread Robert Orlini
Thanks Matt. Your script and a few tweaks from me and everything looks good. Robert O. -Original Message- From: Plunkett, Matt [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 10:10 AM To: CF-Talk Subject: RE: Radio button check -Original Message- From: Robert

RE: still having a problem with insert

2004-02-25 Thread Philip Arnold
From: [EMAIL PROTECTED] like ppl keep saying the word type is a reserved word and WONT work u will have 2 rename that field in your database, no ands, ifs or buts about it. read this, straight from the mothership http://www.macromedia.com/support/ultradev/ts/documents/insert _into.htm

RE: problems accessing variables with components

2004-02-25 Thread Raymond Camden
Please see my comments in the code below. Ditto. [deleted stuff] issues under load. {Michae Hodgdon} - These values are indeed persistant. This information rarely changes, so rather than make constant database hits, we are keeping the aMarkets array in a structure called

CFLocation with a dash of CFHTTP

2004-02-25 Thread Tyler Clendenin
I'm sure someone has wondered this exact same thing, and I'm sure it has been answered but I am going to ask anyway. cflocation is a very useful tag cfhttp is a very useful tag is there any easy way to perform a cflocation like redirect except posting data as if through a form? Tyler Clendenin

stored proc error with MX

2004-02-25 Thread John mccosker
hi, is there some reason why I can't add a date object via a stored proc in MX 6.1. example, cfset offRoadStart = CreateDateTime(Year(now()), month(now()), day(now()), hour(now()), minute(now()), 00) then, !---parameter passed with others, this is the only one giving me the

Re: OT: freelancer

2004-02-25 Thread lmarcus
Sure, Id like to hear more about this project. L Marcus Original message Date: Wed, 25 Feb 2004 09:33:08 -0600 From: Mark A. Kruger - CFG [EMAIL PROTECTED] Subject: OT: freelancer To: CF-Talk [EMAIL PROTECTED] cf folks, A friend of mine (a designer) is working on a job site and needs

RE: stored proc error with MX

2004-02-25 Thread DURETTE, STEVEN J (AIT)
John, Try CFSQLTYPE=CF_SQL_TIMESTAMP Steve -Original Message- From: John mccosker [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 9:57 AM To: CF-Talk Subject: stored proc error with MX hi, is there some reason why I can't add a date object via a stored proc in MX 6.1.

CFMX and CF5 on same server

2004-02-25 Thread Marlon Moyer
Has anyone deployed a server with both CF5 and CFMX on it.I've got a live server with CF5 applications running on them.I haven't tested all the legacy apps on CFMX yet, but mgmt wants to test out a new CFMX app on the server.Any suggestions? Marlon [Todays Threads] [This Message]

Re: OT: freelancer

2004-02-25 Thread Les Mizzell
A friend of mine (a designer) is working on a job site and needs a contractor. It's not the sort of project that we are I've done a jobs site or two. Best example is probably: http://www.dpprofessionals.com/ Would be very interested in this. Thanks for your consideration. -- Les Mizzell

RE: CFMX and CF5 on same server

2004-02-25 Thread Tom Kitta
Run CFMX on a separate box. I am not sure about CF5 and MX on the same box, never tried it, but I bet it would require a lot of hacking around even to attempt it. Running MX on a different server than CF5 is much simpler and less time consuming solution. Use your workstation if you don't have a

Re: stored proc error with MX

2004-02-25 Thread John mccosker
John, Try CFSQLTYPE=CF_SQL_TIMESTAMP Steve -Original Message- From: John mccosker [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 9:57 AM To: CF-Talk Subject: stored proc error with MX hi, is there some reason why I can't add a date object via a stored proc in MX

RE: CFMX and CF5 on same server

2004-02-25 Thread Samuel R. Neff
If you run them on separate ports it will work fine, but I wouldn't suggest it for a production server. Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team -Original Message-

Proper CF Insert of an array

2004-02-25 Thread David Berry
Hello, First I would like to add to a comment that was made today and show my appreciation for the help that you all give so freely.I am new to coldfusion and just reading these e- mails have made me a diehard coldfusion fan. Thanks!now on to my question!! I am new to structures and arrays,

RE: CFLocation with a dash of CFHTTP

2004-02-25 Thread Nathan Strutz
Tyler, Have a look at getPageContext().forward('template.cfm'); This does a server side redirection, actually, it deletes the current page output buffer and starts a new one from the template you specify, as if issuing another request, but form and url variables are available on that next page.

RE: Proper CF Insert of an array

2004-02-25 Thread Tony Weeg
not sure what you want to do...but yes, you can have cfquery code inbetwixt cfloops, to perform inserts/updates/deletes based off of values you get from your loop process. tony -Original Message- From: David Berry [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 11:27 AM

Re: CFMX and CF5 on same server

2004-02-25 Thread Thomas Chiverton
On Wednesday 25 Feb 2004 16:22 pm, Samuel R. Neff wrote: If you run them on separate ports it will work fine, but I wouldn't suggest it for a production server. Why not ? We run legacy CF4.5 and MX6.1 on the same box. Different ports, obviously, but we proxy them both through a common Apache to

cfchart layered data

2004-02-25 Thread Deanna Schneider
Hi All, I think I may be SOL here, but I thought I'd ask. I have a dataset that has %moisture on various dates. There are 4 lines of data. But, date samples vary between the four lines. It seems as though I can't get the chart to layer properly unless all the dates are the same. If they're not, I

CFExecute and environment variables

2004-02-25 Thread Howie Hamlin
I'm trying to call a Perl batch file in a CFML template on a Win server.The batch file works fine from the command line but Perl complains that the path is not set when using CFExecute: You do not have Perl in your PATH. The path to Perl exists from the command line but the path from CFMX looks

Re: Proper CF Insert of an array

2004-02-25 Thread Charlie Griefer
Hi David: First thing I'd like to address is the way way way WAY too many cfoutput tags :) Every time you use a cfoutput, it's like starting a car.A /cfoutput is like shutting the car down. So, for every iteration of your loop, you're starting and stopping the car far too many times just to get

Re: CFExecute and environment variables

2004-02-25 Thread Howie Hamlin
Nevermind - all I needed to do was add the path to the batch file (duh). Regards, Howie - Original Message - From: Howie Hamlin To: CF-Talk Sent: Wednesday, February 25, 2004 11:45 AM Subject: CFExecute and environment variables I'm trying to call a Perl batch file in a CFML template

cfinvoke problem.

2004-02-25 Thread Whittingham, P
Hi All, I am getting an error on a cfinvoke if i change the method from square to squarex,add,sq1 or anything else. I am using cfmx 6.1 Any help would be appreciated. Pat error: === Web service operation squarex with parameters {num1={544},} could not be found. The error occurred in

Re: CFMX and CF5 on same server

2004-02-25 Thread Charlie Griefer
I think Sam was suggesting that the standalone MX server not be deployed as a production server (not necessarily against CF4.5 (or CF5) and MX no the same box).His suggestion echos MM's own recommendations against doing so. MX's standalone server was provided to allow people to test/migrate their

Re: Proper CF Insert of an array

2004-02-25 Thread Jamie Jackson
You'll have to loop over single inserts (one row at a time): cfloop from=1 to=#ArrayLen(Session.Cart.productID)# index=i cfquery ... INSERT INTO yourTable (col1, col2, col3) VALUES ( cfqueryparam value=#session.var1[i]# cfsqltype=CF_SQL_VARCHAR, cfqueryparam value=#session.var2[i]#

RE: cfinvoke problem.

2004-02-25 Thread Raymond Camden
You tried refreshing the WS in CFAdmin/Web Services? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: Proper CF Insert of an array

2004-02-25 Thread Philip Arnold
From: David Berry I am new to structures and arrays, and I need to insert the results of a cfloop on the array into my database. Can you insert a cfloop?Sample array output in below I have removed the table formating code: That's not a problem You can put a CFQUERY pretty much anywhere

OT: CFTicket 2.0 Beta Test

2004-02-25 Thread Cedric Villat
Hey Folks, We just released the first beta of CFTicket 2.0. For those who don't know, CFTicket is a customer support, trouble ticket application. This new version uses CFC's and therefore requires CFMX. We are having an open beta test for anyone who wishes to test. Just download, install, and

RE: IsDefined(CGI.foo) always returns YES

2004-02-25 Thread Andrew Tyrone
I just tested this on CF 5.0 and I get the same result you do, so this behavior was changed sometime after version 5, but I have no idea when. Andy -Original Message- From: Mosh Teitelbaum [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 9:52 AM To: CF-Talk Subject: RE:

RE: News Ticker?

2004-02-25 Thread Matt Robertson
http://www.thejmaker.com/scrollup.html Cheap and loaded with options.The demo is ugly but your implementation doesn't have to be.I use it cuz I can plant it into a table cell rather than giving it an absolute position. Matt Robertson [EMAIL

Re: JRun has closed connection

2004-02-25 Thread adrocknatalk
Crit, It can be a number of issues, usually when JRUN craps out its because the system has crapped out. Next time this happens check your processes and see what the CPU and RAM usage is like. If you are running multiple instances, you may have one too many. -Adam -Original Message-

RE: JRun has closed connection

2004-02-25 Thread Kola Oyedeji
As others have pointed out, it could be a number of issues, I searched through a number of forums and found some people got this message when using COM objects, or when calling getPageContext.forward(). Also this can also appear if CF has just restarted due to reaching x amount of unresponsive

RE: CFMX and CF5 on same server

2004-02-25 Thread Kola Oyedeji
Marlon If you're using IIS, this can be done quite easily by installing cf5, making a note of the dll the cf extensions map to and then installing cfmx. You can set up virtual directories and determine which version of the cf dll. Is used for each directory. Its explained in detail here

RE: Email Headers listing?

2004-02-25 Thread Kola Oyedeji
You should be able to find more information here http://livinginternet.com/e/em_rfc.htm or more specifically here http://www.faqs.org/rfcs/rfc2076.html HTH Kola -Original Message- From: Burns, John [mailto:[EMAIL PROTECTED] Sent: 20 February 2004 20:30 To: CF-Talk

RE: News Ticker?

2004-02-25 Thread Rob
There are some good ones here http://www.dynamicdrive.com/dynamicindex2/index.html rely on _javascript_ I've used this one a couple times and I dig it - it uses xml to populate the ticker so it pretty easy to integrate http://www.dynamicdrive.com/dynamicindex2/xmlticker2.htm On Wed, 2004-02-25

CSS

2004-02-25 Thread Andy Ousterhout
Can someone point me to a site that I can use to learn how to use CSS to design pages to be printed versus for display? Thanks, Andy [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re: bank of america processing

2004-02-25 Thread Butch Zaccheo
Hi Matt... I interface with Bank of America right now... What service are you using??? Inprocess or Redirect? BZaccheo On 2/24/04 2:12 PM, Matt Robertson [EMAIL PROTECTED] wrote: Barney Boisvert wrote: Does the interface involve sending a file to BofA? No, afraid not.Thx anyway.The

Re: OT: freelancer

2004-02-25 Thread hof
Or you can direct him/her to: www.prohire.com Which will do everything he needs already, for about $100.00 a month ;) Pablo -- Original Message -- From: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date:Wed, 25 Feb 2004 10:59:22 -0500 Sure, Id like to

RE: CSS

2004-02-25 Thread d.a.collie
www.alistapart.com glish.com www.csszengarden.com http://www.westciv.com/style_master/house/cookbook/ http://css.maxdesign.com.au/index.htm -- dc -Original Message- From: Andy Ousterhout [mailto:[EMAIL PROTECTED] Sent: 25 February 2004 18:35 To: CF-Talk Subject: CSS Can someone point

ASP page using ColdFusion

2004-02-25 Thread chad
I have a site done entirely in ASP (I am not the developer) and am taking it over to do some work. I know very little asp but am very fluent in ColdFusion. The update I need to make will require the use of graphs. I wanted to incorporate the graphing engine in ColdFusion on my asp page. But I am

RE: CSS

2004-02-25 Thread d.a.collie
Whoops sorry, that was just a list of good css sites I found :-/ Might be some info on the sites anyway... -- dc -Original Message- From: Andy Ousterhout [mailto:[EMAIL PROTECTED] Sent: 25 February 2004 18:35 To: CF-Talk Subject: CSS Can someone point me to a site that I can use to

Re: CFMX and CF5 on same server

2004-02-25 Thread hof
You dont have to necessarily run on separate ports... You can assign different file extensions to process either server.. Like you can have: .cfm to run on CF 5 and .cfml to run on CFMX You can also map .cfc to the MX server, etc... then the same server will run either instance. Pablo

Re: problems accessing variables with components

2004-02-25 Thread Michael Hodgdon
Thanks Ray, I will let you know what we have come up with Michael S Hodgdon Web Development Project Manager 617 - 669 - 7183 [EMAIL PROTECTED] - Original Message - From: Raymond Camden To: CF-Talk Sent: Wednesday, February 25, 2004 10:46 AM Subject: RE: problems accessing variables with

Re: CSS

2004-02-25 Thread Adam Churvis
Plum does this and a whole lot more, and it's a great way to learn advanced CSS techniques.If you want to be on the Private Beta Testers list then contact me offlist. Respectfully, Adam Phillip Churvis Member of Team Macromedia Advanced Intensive ColdFusion MX Training: * ColdFusion MX Master

Re: ASP page using ColdFusion

2004-02-25 Thread Daniel Farmer
why not use an inline frame with the frame contents pointing to your cfm page? - Original Message - From: chad To: CF-Talk Sent: Wednesday, February 25, 2004 1:42 PM Subject: ASP page using ColdFusion I have a site done entirely in ASP (I am not the developer) and am taking it over to

RE: ASP page using ColdFusion

2004-02-25 Thread Scott Wilhelm
Just use an ASP include to include the contents of the CFM page. Scott -Original Message- From: chad [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 1:42 PM To: CF-Talk Subject: ASP page using ColdFusion I have a site done entirely in ASP (I am not the developer) and am

RE: ASP page using ColdFusion

2004-02-25 Thread Barney Boisvert
CFCHART allows you to output the chart to a file.You could do that, and then just reference the file (it's an image or flash movie) from the ASP page. -Original Message- From: chad [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 10:42 AM To: CF-Talk Subject: ASP page

RE: CFMX and CF5 on same server

2004-02-25 Thread Marlon Moyer
Thanks everyone for the help.Luckily, I've talked mgmt into ordering another server a few months in advance of the previous plans so that I can set it up correctly from the get go. -- marlon And Bobby you are right, I am being selfish, but the last time I checked, we don't have a whole lot of

CFMODULE with CFHTMLHEAD?

2004-02-25 Thread rob.stokes
[Apologies if this occurs twice; I've sent it an hour ago but hasn't appeared on the list so I'm presuming it's gone down the blackhole route.] Hi everyone, I'd like to include a _javascript_ validation bunch of functions in the header using CFHTMLHEAD. Problem is, this _javascript_ is called

Include a CFMODULE with CFHTMLHEAD?

2004-02-25 Thread rob.stokes
Hi everyone, I'd like to include a _javascript_ validation bunch of functions in the header using CFHTMLHEAD. Problem is, this _javascript_ is called normally using CFMODULE (Attributes have to set certain JS variables). Is there a way to include the returned contents of the CFMODULE (the

RE: ASP page using ColdFusion

2004-02-25 Thread Samuel R. Neff
If it's an all ASP site then isn't it really better to stick with ASP for the whole site?Mixing ASP and CF seems like it's going to create a maintenance nightmare. If you want to display charts in ASP then you can look into Office Web Components on the low end and many available charting engines

RE: Include a CFMODULE with CFHTMLHEAD?

2004-02-25 Thread Barney Boisvert
cfsavecontent variable=myvar cfmodule . / /cfsavecontent cfhtmlhead text=#myvar# / Cheers, barneyb -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 9:06 AM To: CF-Talk Subject: Include a CFMODULE with CFHTMLHEAD? Hi

Re: CFMODULE with CFHTMLHEAD?

2004-02-25 Thread Steve Nelson
One way to do it is to make cfhtmlhead work the way it should have been originally defined... with an end tag. Here's a work around; copy this code into a file called htmlhead.cfm in your customtags directory: cfswitch _expression_=#thistag.executionmode# cfcase value=start /cfcase cfcase

RE: CSS

2004-02-25 Thread Andy Ousterhout
NP. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 12:49 PM To: CF-Talk Subject: RE: CSS Whoops sorry, that was just a list of good css sites I found :-/ Might be some info on the sites anyway... -- dc -Original Message-

RE: Include a CFMODULE with CFHTMLHEAD?

2004-02-25 Thread rob.stokes
Thanks barney, I'll give it a whirl. -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: 25 February 2004 7:27 pm To: CF-Talk Subject: RE: Include a CFMODULE with CFHTMLHEAD? cfsavecontent variable=myvar cfmodule . / /cfsavecontent cfhtmlhead text=#myvar# /

Re: CFLocation with a dash of CFHTTP

2004-02-25 Thread Tyler Clendenin
This is unfortunatly a bad thing for me because I am using fusebox so I need to beable to change things up from one page to the next.Plus after reading this page: http://www.sys-con.com/coldfusion/article.cfm?id=450 i feel there are too many draw backs associated with this for what I want to use

RE: bank of america processing

2004-02-25 Thread Matt Robertson
Butch, I'm using Redirect. The cfhttp call is erroring out for no apparent reason.Am using CF 6.1. --Matt-- -Original Message- From: Butch Zaccheo [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 10:35 AM To: CF-Talk Subject: Re: bank of america processing Hi Matt...

Re: CFLocation with a dash of CFHTTP

2004-02-25 Thread Rob
If it gets right down to it you can use _javascript_ - unless thats a no-no On Wed, 2004-02-25 at 11:54, Tyler Clendenin wrote: This is unfortunatly a bad thing for me because I am using fusebox so I need to beable to change things up from one page to the next.Plus after reading this page:

RE: CSS

2004-02-25 Thread Sandy Clark
All that is necessary is to use link src="" media=print instead of link src="" media=screen (can also do this with import). What I tend to do is reverse the two when developing for print. so that the print version shows up on the screen.then set them back when I am satisfied. _ From: Andy

RE: CFLocation with a dash of CFHTTP

2004-02-25 Thread Barney Boisvert
If you're using fusebox, then you can probably convert the form fields to URL parameters and CFLOCATION to that URL, because they'll be 'attributes' on the other end either way. Cheers, barneyb -Original Message- From: Rob [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004

Re: bank of america processing

2004-02-25 Thread Butch Zaccheo
I tried cfhttp and ended up going with a regular form post It works ok.. I am actually in the process of upgrading the same site to the SOAP option. Which I¹m told is the best solution... However, I haven¹t been able to get working yet... BZaccheo On 2/25/04 11:54 AM, Matt Robertson [EMAIL

  1   2   >