RE: CFFILE PDF to Sybase?

2002-09-30 Thread CAROSATI Gerald
Hi there ... Here is an exemple using sql server ... Save page: AddFile.cfm Viewer Page: Viewer.cfm for the save page, I pass a URL variable (ponumber) which contains the ID of the record to save The SQL syntax will obviously have to be modified since I did it for SQL server ... for

Problems with CFGRAPH accuracy

2002-09-30 Thread Rebecca _Becky_ Brewer
Hi all, I'm having this fun problem with a CFGRAPH tag in CF 5 that's driving me a bit crazy this morning. My code is calculating the sales average for the users' state vs. the national sales average for the same time period, and assigning these to local variables named #salesAvg# and

RE: Flash for data views

2002-09-30 Thread Haggerty, Mike
Just to add a point about the learning curve... Actionscript and javascript are very close cousins. Many javascript programmers I know have been able to pick up Actionscript with minimal effort - the main conceptual difference is the time itself is an event in Flash, and you need to account for

RE: Slightly OT: Altering access tables in CF...

2002-09-30 Thread Rick Faircloth
No problem here...CF 4.5.2, Access 2000 Rick -Original Message- From: Randell B Adkins [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 11:02 AM To: CF-Talk Subject: Re: Slightly OT: Altering access tables in CF... Yes [EMAIL PROTECTED] 09/30/02 10:57AM I am getting an

OT Xopus

2002-09-30 Thread Richard Meredith-Hardy
Further to an item on this list about content management a week or two ago, http://xopus.org looks rather clever, but very thin on working examples. Has anyone got a simple working example which saves edited data via CF that I could try? Other comments welcome (this is rather OT so probably

RE: Slightly OT: Altering access tables in CF...

2002-09-30 Thread Yager, Brian T Contractor/Sverdrup
Did you have to do anything special? Here is my SQL Alter table index_tbl add(pic_pos number) I've also tried with number(1) but still doesn't work. Brian -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 11:19 AM To: CF-Talk Subject:

RE: COM help

2002-09-30 Thread Dave Wilson
Brian, Although I've experienced pretty much what you describe, I've never seen the process actually killing the CF Service itself. To fix the problem of inactivity in the excel part of the process on subsequent attempts, use the following: CFSET CFUSION_DISABLE_DBCONNECTIONS(datasourcename,

RE: CFFILE PDF to Sybase?

2002-09-30 Thread CAROSATI Gerald
Sorry here is the AddFile.cfm page: html head titleAppend File/title cfparam name=url.Action type=string default=list cfswitch expression=#url.Action# cfcase value=Open script language=VBScript sub window_onload

RE: CFFILE PDF to Sybase?

2002-09-30 Thread CAROSATI Gerald
And the viewer.cfm page: cfquery name=Attachments_Get datasource=PurchaseTracking PT_Attachments 'GET', 'ID', '#url.ID#' /cfquery cfoutput query=Attachments_Get cfheader name=content-Disposition value=filename=#Attachments_Get.PONumber#.#Attachments_Get.FileExtention# html head

RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Ben Forta
Neil, Sure you will, as soon as Microsoft discounts most of the cost of Office and Word considering what percentage of its features that are actually used, and as soon as MM discounts CF considering 90%+ of usage is 5 tags (hey, we DID discount CF, oops! g) ... I don't think anyone here is

RE: UDF Vs CFC (was RE: So many problems with CFC scopes...)

2002-09-30 Thread S . Isaac Dealey
But, in some cases CFCs might be more appropriate than UDF to encapsulate generic logic : when you need to have an object-oriented logic. Indeed, the advantage of CFCs over UDFs is their ability to have (or simulate) an 'object-oriented/object-based' behaviour. For example, CFC are great to

RE: Ben's J2EE Book, now new course to be offered by MACR

2002-09-30 Thread Kevin Graeme
We're very excited about this class and in the past we've brought in Allaire/MM trainers on-site. Can you tell me who I should be in touch with so that I can arrange for this class being brought in as well? Thanks, Kevin Graeme -Original Message- From: Raymond Camden [mailto:[EMAIL

changing the default administrator directory

2002-09-30 Thread Teel, C. Doug
Hello, Could someone tell me what's required to change the default Coldfusion administrator 4.5/5 location besides changing the directory name. http://xxx..com/CFIDE/administrator/index.cfm http://xxx..com/CFIDE/administrator/index.cfm to something like:

RE: changing the default administrator directory

2002-09-30 Thread Bruce Sorge
You need to also change it in the IIS Admin (assuming that you are using IIS), or the web server administration program of the OS you are using. -Original Message- From: Teel, C. Doug [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 10:29 AM To: CF-Talk Subject: changing the

Re: changing the default administrator directory

2002-09-30 Thread Critter
oi C.!! just rename the directory. works for me. -- Critz Macromedia Certified Advanced ColdFusion Developer CFX_BotMaster Network=Efnet Channel=ColdFusion Blog=http://blog.ctzc.com; Monday, September 30, 2002, 12:28:35 PM, you wrote:

RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Rick Faircloth
I'm not sure by what you mean by see it in your OS, but it would be similar to using, say Excel. Instead of jumping around to different pages to add, update, delete info, you just type directly in the field and it changes, without having to go to an Action page for processing. One screen is all

RE: more cfstoredproc issues ...

2002-09-30 Thread S . Isaac Dealey
Dude... In your cfprocparam tag, you write this: cfprocparam type=in dbvarname=LibraryID You should write: cfprocparam type=in dbvarname=@LibraryID AFAIK, you need the @ symobol. hmmm... I'll try it, but I've got dozens if not hundreds of stored procedure calls in this app, and none of

Re: Slightly OT: Altering access tables in CF...

2002-09-30 Thread S . Isaac Dealey
Back when I worked with Access regularly I used to do it a lot... You might want to forward the particular query and the error to the list. I am getting an error when I try to alter an Access table in CF. Has anyone had any success doing this? Thanks, Brian Yager President - North AL

RE: Slightly OT: Altering access tables in CF...SOLVED

2002-09-30 Thread Yager, Brian T Contractor/Sverdrup
thank you all. Randell showed me the error of my ways. I was using () around the column and type. It works well without them! Brian -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 11:38 AM To: CF-Talk Subject: Re: Slightly OT:

RE: Adding two fields and displaying in a third

2002-09-30 Thread S . Isaac Dealey
At 11:22 AM 9/30/02 -0400, Mosh Teitelbaum wrote: onchange=window.document.ExpenseForm.TotalAmount#Line#.value=eval (window.document.ExpenseForm.Mileage#Line#)+eval(window.document. ExpenseForm.CostOfMeals#Line#); Add .value to the end of the 2 fields you're trying to add, as in:

RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Rick Faircloth
I wouldn't expect many of the Flash SOTD's to not use animation to get recognized as cool. But even Pet Market's use of animation is more functional than eye candy. They move the images into different areas of the screen to make room for new info, not so much to make the app attractive. If

SQL command - data encryption

2002-09-30 Thread Casey C Cook
Hello - I was just looking for confirmation that a command in SQL does not exist that will encrypt data while inserting or updating into one field. I could not find anything in SQL book online. For example: UPDATE my_tableA SET encrypt(password) FROM my_tableB Thanks, Casey Cook

RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Rick Faircloth
Also, I'm trying to say, that in the business world, funky and cool *don't* sell many business apps...functionality and ease of use sell more apps... and that's what many of us see as the strength of Flash now... Rick -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL

PLEASE REMOVE ME FROM LIST

2002-09-30 Thread chappy
This is a multi-part message in MIME format. --=_NextPart_000_0145_01C26880.F11CBC10 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable PLEASE REMOVE ME FROM YOUR MAILING LIST THANKS --=_NextPart_000_0145_01C26880.F11CBC10 Content-Type:

RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Rick Faircloth
Exactly! -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 11:38 AM To: CF-Talk Subject: RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR Actually, I think it makes a lot of sense. I just needed a form

RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Rick Faircloth
Wish I could figure out how to do that... :o( I'm still trying... Rick -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 11:38 AM To: CF-Talk Subject: RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

Browser forgetting form values

2002-09-30 Thread Chad
IE use to remember the values that you would put into a form after submission. It does not do that any more.. or is it the CF MX server? If you enter data into a form and submit it I have a CFTRY/CFCATCH that catches a database error. If you use the browser Back button the data is gone from

QofQ and negative numbers

2002-09-30 Thread Stacy Young
I've got a oracle db query that returns a recordset with an amount column which can sometimes be a negative value. I then have a QofQ to extract a portion of data that uses SUM(amount)...It appears to be ignoring the fact that some amounts are negative and it's giving me a total as if they're all

RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Mark A. Kruger - CFG
Rick, I like that Trio car company ap better than the broadmoor application. Have you seen that one? It does use a little animation for the drill down engine, but it's got a great examples of both the select box component, calendar component and the tree component. -mk -Original

RE: SQL command - data encryption

2002-09-30 Thread Joshua Tipton
hash -Original Message- From: Casey C Cook [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 12:53 PM To: CF-Talk Subject: SQL command - data encryption Hello - I was just looking for confirmation that a command in SQL does not exist that will encrypt data while inserting or

RE: PLEASE REMOVE ME FROM LIST

2002-09-30 Thread Bruce Sorge
At the bottom of the threads is a link called Unsubscribe. http://www.houseoffusion.com/index.cfm?sidebar=lists -Original Message- From: chappy [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 10:58 AM To: CF-Talk Subject: PLEASE REMOVE ME FROM LIST This is a multi-part

RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Ben Forta
I am wrapping an article on just this for next months CFDJ. Also, there will be lots of this type of stuff covered at DevCon next month. --- Ben -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 1:06 PM To: CF-Talk Subject: RE: Flash

RE: COM help

2002-09-30 Thread Brian Ferrigno
Hi Dave, Sorry about being a pest but where exactly do you have to place the code you described below? I placed it after the call to the custom tag that creates the csv file. Does it need to be before or wrap around the call? cf_excel2csv

RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Mike Chambers
i think this is where our disconnect is. I don't see Flash as just an animation tool. I also see it as a development tool to create rich user interfaces, which do not necessarily have to include animation. mike chambers [EMAIL PROTECTED] -Original Message- From: Robertson-Ravo, Neil

RE: Flash for data views : WAS Ben's J2EE Book, now new course to be offered by MACR

2002-09-30 Thread Mike Chambers
i agree. I was thinking more of static views of data. If you need to sort and filter that data, then there are advantages to using flash. mike chambers [EMAIL PROTECTED] -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 10:41 AM

RE: UDF Vs CFC (was RE: So many problems with CFC scopes...)

2002-09-30 Thread Benoit Hediard
Don't you mean www.cflib.org? Yes, sorry (why did i say www.udflib.org...? I don't know, at least it is more clear for the explanation ;). Question: (dunno if anyone has the answer to this) Do CFC's share methods in memory, or does each new component created have its own instances of all the

RE: Slightly OT: Altering access tables in CF...

2002-09-30 Thread Rick Faircloth
OH, I'm sorry, Brian, I misread your statement. I was reading as altering *info* in Access tables, not altering the table itself in the way you're trying to...haven't done that, so I don't know what's possible...sorry. Rick -Original Message- From: Yager, Brian T Contractor/Sverdrup

Re: OT (kinda) Unix/CFFILE ?

2002-09-30 Thread Chris Norloff
CF runs as userid nobody, so any 7xx permissions for the files and the directories would be adequate. If you want people to be able to access the files outside of CF then make them part of a group, and give the group necessary permissions to the files and directories (such as 77x or 75x).

RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Rick Faircloth
Hi, Mark. No, I haven't downloaded and viewed that app, yet. I plan to, and will. Hopefully I can learn something from it. At least it'll probably inspire me to keep struggling! Thanks for the tip! Rick -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent:

RE: Flash for data views : WAS Ben's J2EE Book, now new course to be offered by MACR

2002-09-30 Thread Mike Chambers
Rick, well, we have ton of examples (on DesDev and the DRK) but I believe that you said you do not like to learn via examples. We also have a lot of tutorials on examples on desdev: http://www.macromedia.com/desdev/mx/flash/ http://www.macromedia.com/desdev/mx/coldfusion/ here is what i would

RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Rick Faircloth
Got any scholarships, for independent developers? ;o) Rick -Original Message- From: Ben Forta [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 12:59 PM To: CF-Talk Subject: RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR I am wrapping

RE: QofQ and negative numbers

2002-09-30 Thread Stacy Young
Nevermind! Was a user problem :-) -Original Message- From: Stacy Young [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 12:58 PM To: CF-Talk Subject: QofQ and negative numbers I've got a oracle db query that returns a recordset with an amount column which can sometimes be a

RE: COM help

2002-09-30 Thread Dave Wilson
No problem at all Brian :) I too have the code placed at the end of my COM-related code. I've just noticed, however that you are using the cf_excel2csv tag, which should render the code redundant (although there's no harm in leaving it there). I've pasted some code below for you to look at:

RE: more cfstoredproc issues ...

2002-09-30 Thread Costas Piliotis
I know... I saw there was another response in this thread that suggested that you should use AS in your var declarations... Just adding to that... Funny thing I've noticed though that if you don't get the var name right in cfprocparam, it just goes by the order of the variables. You could use

RE: CFQUERY: All employees who haven't entered data...

2002-09-30 Thread Angel Stewart
Thanks Al! :) That worked nicely Thank you very much *nod* *nod* I was thinking something else though... can't subqueries take the place of all those different joins then, if one wanted to use them for some reason? -Gel -Original Message- From: Everett, Al [mailto:[EMAIL

RE: Uploading zero-length files

2002-09-30 Thread Yager, Brian T Contractor/Sverdrup
What are the other attributes to cgi that can be used? Is ther one for the file name? Is this in any of the CF books out there? Brian -Original Message- From: Greg Luce [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 9:37 AM To: CF-Talk Subject: RE: Uploading zero-length

RE: Flash for data views : WAS Ben's J2EE Book, now new course to be offered by MACR

2002-09-30 Thread Rick Faircloth
Thanks, Mike. I'll check out more of the DesDev and the DRK stuff... The Flash interface doesn't bother me, I do timeline based video editing all the time, so I'm confortable with the timeline. The graphic design is very simple, too. It's the ActionScript that I can't deal with unless I start

RE: COM help - Correction

2002-09-30 Thread Dave Wilson
Brian, Sorry I've screwed up in my advice to you. I've suddenly remembered that my problems were down to attempting to use excel as a datasource, with an insert, then subsequent read of the newly calculated value. This resulted in similar symptons to your problem, whereby it worked first time

RE: changing the default administrator directory

2002-09-30 Thread Teel, C. Doug
Hi Bruce, Thanks so much for the help. If this is changed in IIS can the developers still get to the administrator pages remotely? Thanks, Doug -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 11:34 AM To: CF-Talk Subject: RE:

How to prevent multiple logins?

2002-09-30 Thread Thanh Nguyen
How do I prevent multiple users loggin in a a same time using the same account? I'm using session variables to track auth users. Thanks. Thanh __ Get the mailserver that powers this list at http://www.coolfusion.com

RE: more cfstoredproc issues ...

2002-09-30 Thread S . Isaac Dealey
Actually the names in the dbvarname attribute are completely ignored by the cf-server as far as I or anyone else has been able to determine. They have to be in the same order as they are declared in the database for this reason. I don't know off the top of my head if dbvarname is a required

RE: more cfstoredproc issues ...SOLVED

2002-09-30 Thread S . Isaac Dealey
Never underestimate the power of context highlighting! Which in this case didn't catch the fact that a CFML comment ( !--- ) in the middle of my stored procedure was terminated with an HTML comment... ( -- ) ... sigh... which was the source of the problem... How did I figure this out? I ran this

RE: Problems with CFGRAPH accuracy

2002-09-30 Thread Costas Piliotis
Stupid question rebecca, but I gather when calculating an average, that average doesn't exactly trim to two decimal places does it? Perhaps there is a rounding issue? And if you include a subject, you'd probably get a better response btw... -Original Message- From: Rebecca _Becky_

Re: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Joe Eugene
I am seeing a lot of *FLASH* talk on here.. its kinda disturbing... was wondering if Michael can move all the FLASH talk to another discussion Group (CF-TALK-FLASH) or something like that. Joe - Original Message - From: Robertson-Ravo, Neil (REC) [EMAIL PROTECTED] To: CF-Talk [EMAIL

RE: more cfstoredproc issues ...

2002-09-30 Thread Costas Piliotis
It's kinda funny that way huh? We've found the same thing. But the documentation cites: dbVarName Required for named notation. The parameter name corresponding to the name of the parameter in the stored procedure Wonder how one forces named notation then... Still... I guess my solution

RE: Problems with CFGRAPH accuracy

2002-09-30 Thread Ben Doom
I've not run into this here, but have had similar problems with other (non-CF) programs in the past. At a guess, I'd say that CFGRAPH is truncating the average, but it is being rounded when you display it. I'd calculate the value and store it with the correct number of significant digits in a

Re: How to prevent multiple logins?

2002-09-30 Thread Pete Ruckelshaus
I've done this before. I added a column to the database called lock that was a true/false, plus I had a timestamp field. Once a user logged in, I set the value to true. Logging in checked for this value, and if set, wouldn't allow the user to login. I did an update on the table in the

RE: Flash for data views : WAS Ben's J2EE Book, now new course to be offered by MACR

2002-09-30 Thread Mike Chambers
-Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED]] One of the things that's confusing about how Flash handles data is how it receives it. Does it receive it as a set of variables or does each Result represent a separate variable from CF? I haven't figured out

encode an image into a .cfm inline

2002-09-30 Thread Mark W. Breneman
Does anyone have any ideas on if it is possible to encode an image into a cfm? My guess it that it is impossible... but, thought I would ask. I have a graphic ruler that is included in the bottom of all of my pages via onrequestend.cfm only if a cookie vale is set to active. I develop on

RE: Adding two fields and displaying in a third

2002-09-30 Thread Mosh Teitelbaum
At 11:22 AM 9/30/02 -0400, Mosh Teitelbaum wrote: onchange=window.document.ExpenseForm.TotalAmount#Line#.value=eval (window.document.ExpenseForm.Mileage#Line#)+eval(window.document. ExpenseForm.CostOfMeals#Line#); Add .value to the end of the 2 fields you're trying to add, as in:

Re: encode an image into a .cfm inline

2002-09-30 Thread Gyrus
- Original Message - From: Mark W. Breneman [EMAIL PROTECTED] Does anyone have any ideas on if it is possible to encode an image into a cfm? My guess it that it is impossible... but, thought I would ask. I have a graphic ruler that is included in the bottom of all of my pages via

RE: more cfstoredproc issues ...

2002-09-30 Thread S . Isaac Dealey
Yea, no, it wasn't the solution, though I did figure out what was going on .. too bad neither the context highlighting in CF Studio nor the coldfusion parser cought it the way they should have. Either one would have saved me several hours... It's kinda funny that way huh? We've found the same

Re: encode an image into a .cfm inline

2002-09-30 Thread jon hall
This what you are looking for? img src=image.cfm image.cfm: cfcontent type=image/gif file=c:\imagename.gif -- jon mailto:[EMAIL PROTECTED] Monday, September 30, 2002, 2:49:52 PM, you wrote: MWB Does anyone have any ideas on if it is possible to encode an image into a MWB cfm? My guess it

RE: encode an image into a .cfm inline

2002-09-30 Thread Mark W. Breneman
I guess I did not describe this too well. The Rule is a graphic image (a gif in this case) of a Ruler that helps me relate to people using lower resolutions. Mark W. Breneman -Macromedia Certified ColdFusion Developer -Network / Web Server Administrator Vivid Media [EMAIL PROTECTED]

Re: Using the Verity Engine on non-cf apps

2002-09-30 Thread Zac Spitzer
Bruce Sorge wrote: If you have CFMX and .net apps running on the same server, is it possible to use the K2 Verity engine on the .net apps, or does this require one to purchase and install the K2 product? sounds like you coud expose it via a web service :-) that would be the license

RE: Verity

2002-09-30 Thread John Beynon
Just to rekindle this thread - whilst browsing the CF Functions in Ben's new WACK I came across a couple of function that might help when debugging verity; GetK2ServerDocCount() - number of documents in all verity k2 indexed collections GetK2ServerDocCountLimit() - self explanatory

RE: Adding two fields and displaying in a third

2002-09-30 Thread Thane Sherrington
At 02:49 PM 9/30/02 -0400, Mosh Teitelbaum wrote: Nope, you shouldn't have to. JavaScript is supposed to add 2 values together (via the + operator) if the values can both be resolved to numerics. Otherwise, it appends the values. So long as both of your values are numeric then, it should

Re: inline graphics ?... ruler ?

2002-09-30 Thread S . Isaac Dealey
If it's just for your own benefit, you can put the image on all your workstations and use a local file path in the image source img src=c:\myruler.gif ... If it's for the benefit of lots of folks, I'd say stick with a regular image or html elements with style sheets... You might try something

RE: encode an image into a .cfm inline

2002-09-30 Thread Mark W. Breneman
That is close to what I already have. Let me re-ask the question. Is there a way to not link to a graphic but rather include the raw code of the image? I am looking for a way to not have Ruler.gif in every folder and on every site I work on. (I may work on 20 - 30 sites a year.) What I am

RE: Flash for data views : WAS Ben's J2EE Book, now new course to be offered by MACR

2002-09-30 Thread Rick Faircloth
Thanks, Mike. I can tell I've got a lot to learn... Would you be interested in writing an example of code here that shows how a piece of data, say a name is queried from CF, sent to Flash, the code that Flash uses to receive it and translates it into an ActionScript datatype? Just so I can see

Re: encode an image into a .cfm inline

2002-09-30 Thread Jochem van Dieten
Mark W. Breneman wrote: I guess I could make a ruler with a HTML table... That's what I would do. Assuming your body tag has zero margin and padding, use: div style=width: 50px; float: left; background-color: #f0f0f050/div div style=width: 50px; float: left; background-color: #e0e0e0100/div

Re: encode an image into a .cfm inline

2002-09-30 Thread Jochem van Dieten
Mark W. Breneman wrote: That is close to what I already have. Let me re-ask the question. Is there a way to not link to a graphic but rather include the raw code of the image? Perhaps. I have never tried to make one, but if you start messing with cfcontent and cfheader until you send a

Switching to CFMX

2002-09-30 Thread Rob Rohan
Hi everyone, We are moving to cold fusion MX and are running into some snags. We use fusebox on a rather large application, and are finding that quite a few areas of our site throw errors like the following: cfindex2ecfm1137626797 (Code of a method longer than 65535 bytes) After doing some

RE: encode an image into a .cfm inline

2002-09-30 Thread Mark W. Breneman
Yes, that is the idea. I think I will stick with an easer method like your idea. (customtag to add that image to every directory) Just wanted to see if anyone had done this and if it was as easy as something like: img src=unBase64(KJGAKJGAYSGDABakBdBKadLBcHJLCLATD

Re: encode an image into a .cfm inline

2002-09-30 Thread jon hall
You can use javascript url in the img src and generate an XBM image. http://david.blackledge.com/XBMDrawLibrary.html -- jon mailto:[EMAIL PROTECTED] Monday, September 30, 2002, 3:24:37 PM, you wrote: MWB That is close to what I already have. MWB Let me re-ask the question. Is there a way

Re: Ben's J2EE Book

2002-09-30 Thread Sean A Corfield
On Monday, Sep 30, 2002, at 01:32 US/Pacific, Robertson-Ravo, Neil (REC) wrote: I totally disagree.. getting it 'connected' is the easy part. The actual movement and animation (for which Flash is designed) is the difficult part. Flash MX is designed to allow complex client-server

Re: Ben's J2EE Book, now new course to be offered by MACR

2002-09-30 Thread Sean A Corfield
On Monday, Sep 30, 2002, at 06:29 US/Pacific, Robertson-Ravo, Neil (REC) wrote: anti Flash Remoting - far from it, I just dont see the business benefit (development time = cost) of using say Flash for things which could be developed in normal HTML. The benefit is in the end result: a

OT: ASP help

2002-09-30 Thread Kris Pilles
Anyone know how to generate an HTML file from ASP then save it to diskbasically doing content management with ASP but website lives on a Unix box Flame me if you will but I need an answer and the people on the ASP boards aren't as smart as you guys are Thanks for your help...

RE: Flash for data views : WAS Ben's J2EE Book, now new course t o be offered by MACR

2002-09-30 Thread Ilyinsky, Igor
YES, that is a great analogy. Using flash to present data IS like using IE for viewing Text Documents (sorta), but what's wrong with that? Viewing remote txt documents in IE is in no way inferior to notepad; in fact, I think it's better because you don't need to launch another application, and

Re: Ruler image at bottom of page -- Re: Post Rejected: Re: -- RE: USE A SUBJECT ON THE ORIGINAL POST!

2002-09-30 Thread S . Isaac Dealey
I'm sorry but your post has been rejected due to a missing subject. Please use a descriptive subject when posting. Thank you. Return-Path: [EMAIL PROTECTED] Received: from mail.gocin.com ([209.137.57.9]) by hof001.houseoffusion.com (Post.Office MTA v3.5.3 release 223 ID#

Distributed Mode Trouble

2002-09-30 Thread Michael Ross
I am testing around with Distributed Mode for CFMX but I hit a small bump that I can't figure out I am having some trouble set things up. I have 2 boxes Win2000. On the app server I installed cfmx with the stand alone server. Copied over the wsconfig file ran the connector installation

Re: So many problems with CFC scopes...

2002-09-30 Thread Sean A Corfield
On Sunday, Sep 29, 2002, at 12:06 US/Pacific, Raymond Camden wrote: You mentioned typing the extra reference for CFCs (i.e. myCFC.isEmail(...) as opposed to isEmail() for a UDF). Beyond that There's also the code needed to create the 'myCFC' instance (setting myCFC =

Re: UDF Vs CFC (was RE: So many problems with CFC scopes...)

2002-09-30 Thread Sean A Corfield
On Monday, Sep 30, 2002, at 09:23 US/Pacific, S. Isaac Dealey wrote: Question: (dunno if anyone has the answer to this) Do CFC's share methods in memory, or does each new component created have its own instances of all the functions defined in the cfc which take up their own space in

RE: Reverse PDF tools

2002-09-30 Thread Costas Piliotis
Funny thing is that goole offers the ability to view pdf as html... Wonder if you can borrow their server for that ;) -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 7:44 AM To: CF-Talk Subject: Reverse PDF tools Ok... I know

RE: Switching to CFMX

2002-09-30 Thread Benjamin S. Rogers
* Does cfinclude copy the contents of every included file then compile - regardless of the switch statement? I believe includes still happen dynamically. You can verify this by deleting all the files in the following directory: \CFusionMX\wwwroot\WEB-INF\cfclasses Restart the ColdFusion

Return-Path

2002-09-30 Thread jon hall
Has anyone used the Return-Path header successfully with cfmail? Something isn't working correctly for me. Messages are not bouncing the the return-path email address. Here is my code: cfmail to=#this.to# from=#this.from# subject=#this.subject# server=127.0.0.1 cfmailparam name=Return-Path

Re: Return-Path

2002-09-30 Thread Howie Hamlin
There's no guarantee that the other mail server will use the return-path to bounce the message. Usually, that's the case but not always. I would send a mail to myself and look at the headers of the mail...if the return-path is there then that's all you can do. HTH, -- Howie Hamlin -

RE: Reverse PDF tools

2002-09-30 Thread Ilyinsky, Igor
How about converting the PDF to a Flash Movie? This app has been getting much interest, and mentions on various blogs (Jeremy Allaire, Mike Chambers, John Dowdell, etc) Oh, the site is in German, so grab your dictionary http://latex.edunet.de/test/saktu_probeseiten/ Or you can check out

CFMX and CFFORM

2002-09-30 Thread Bud
Hi all. I've searched the archives and the MACR KB, so if this has been covered, my apologies. I'm trying to set up a site on someone's CFMX server. Pages with CFFORM are generating this line of code in the header: SCRIPT LANGUAGE=JavaScript TYPE=text/javascript

Re: Return-Path

2002-09-30 Thread jon hall
Darn, I had a feeling that was the answer. In your experience how many servers do you think obey the return-path? I do see the header in my test emails... -- jon mailto:[EMAIL PROTECTED] Monday, September 30, 2002, 5:31:41 PM, you wrote: HH There's no guarantee that the other mail server

RE: Switching to CFMX

2002-09-30 Thread Rob Rohan
Thanks Benjamin, I appreciate your response, and I'll check out the xml file - that's a great tip. You will run into this when doing large files or working on a large application http://webforums.macromedia.com/coldfusion/messageview.cfm?catid=3threadid= 385775 The index file I am dealing with

RE: Question regarding the archives...

2002-09-30 Thread Alex Ninan
Thanks Howie, I hope the signature soon changes ;-) -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 26, 2002 11:24 AM To: CF-Talk Subject: Re: Question regarding the archives... Try the new archives - www.houseoffusion.com/cf_lists HTH, --

MX Eating my CFINCLUDES?

2002-09-30 Thread Ian Lurie
Sorry if this is a repeat post, but right now in Dreamweaver MX, if I open a cfm file with CFINCLUDES in it, it replaces them with the actual code and MM:BeginLock translatorClass=MM_SSI type=ssi orig=%3Ccfinclude template=%22../app_globals.cfm%22%3E fileRef=../app_globals.cfm

RE: CFMX and CFFORM

2002-09-30 Thread Justin Hansen
I got around this by adding a 'CFIDE' folder to my project/site folder. Then created virtual directories inside of that to the actual 'scripts' 'debug' directories. If you just add a virtual directory to the 'CFIDE' you are opening the CF Admin pages to your website. It may not be pretty but

Re: Return-Path

2002-09-30 Thread Howie Hamlin
I think most do use it but as for stats, I don't have any. Just be aware that return-path and other things like receipt-to are not guaranteed to work. Regards, Howie - Original Message - From: jon hall [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, September 30, 2002

Re: Question regarding the archives...

2002-09-30 Thread Michael Dinowitz
I've been holding off the sig change due to the limits of the search-ability of the archives. The search does not work on the full body of the message due to the lack of processor power. This will change when I get the other box up as I've been promising for the last month or so. If people are

RE: Switching to CFMX

2002-09-30 Thread Rob Rohan
(a have to agree not my code) -Original Message- From: Benjamin S. Rogers [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 3:32 PM To: CF-Talk Subject: RE: Switching to CFMX Good to know. That explains why I haven't run into it as I tend to nest fuses (I don't actually use

Re: Dot monster redux

2002-09-30 Thread Michael Dinowitz
Like I said, the guy responsible for the problem is taking care of it. :) I'm very happy that Howie has such pride in his product that he'll go in and fix what amounts to a minor issue that hasn't come up in years. This is why I use iMS and why I suggest it to others. Turns out that the little

RE: Switching to CFMX

2002-09-30 Thread Benjamin S. Rogers
Good to know. That explains why I haven't run into it as I tend to nest fuses (I don't actually use Fusebox but something akin to it). I try to keep individual switch statements to between 5 and 10 case statements with no more than 20. Gets to hard to read otherwise. Benjamin S. Rogers

Dot monster redux

2002-09-30 Thread Howie Hamlin
Turns out that the little dot monster was due to our cfx_imsmail tag not acting like a proper client. Email clients, by definition, are supposed to add a dot to the beginning of a line in an email if the line begins with a dot. Our cfx tag was not doing that but this is corrected in the

<    1   2   3   >