RE: SQL Text question from a beginner

2002-09-30 Thread Michael Kear
My understanding of TEXT type fields is that there is only 16 bytes stored in the database, because the rest of the field's contents are stored elsewhere. And the 16 bytes are only a pointer to it. A TEXT field in SQl can hold up to 2,147,483,647 characters and cannot be used as variables or

RE: SQL Text question from a beginner

2002-09-30 Thread John Munyan
Thanks, you are a mind reader! -Original Message- From: Brian Scandale [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 12:09 AM To: CF-Talk Subject: RE: SQL Text question from a beginner Don't forget that there are limitations on how much text a user can cut and paste into

RE: SQL Text question from a beginner

2002-09-30 Thread Brian Scandale
Don't forget that there are limitations on how much text a user can cut and paste into a textbox or textarea field in a form. I believe that the limitations are browser dependant... around 8K for IE5+ I seem to remember. At 11:47 PM 9/30/02, you wrote: >The TEXT datatype should be as easy to

RE: CF Mail Problem..

2002-09-30 Thread Joel Nath
Hi Srimanta, try something like... Select * FROM Products WHERE product id=#Form.productid# Productid: #Get_Products.productid# Details: #Get_Products.details# Model : #Get_Products.modelno# hth joel -Original Message- From: Srimant

Re: CF Mail Problem..

2002-09-30 Thread Srimanta
Hi Sabir Many Thanks Mate.. It Works S.. - Original Message - From: "Ryan Sabir" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, October 01, 2002 6:25 PM Subject: RE: CF Mail Problem.. > Thats how CFMAIL is supposed to work when you pass a query to it. > > What you

RE: SQL Text question from a beginner

2002-09-30 Thread Ryan Sabir
The TEXT datatype should be as easy to use as the VARCHAR datatype you were using earlier... simply change the type of the field to TEXT and suddenly it will hold as much text as you want. --- Ryan Sabir Newgency Pty Ltd 2a Broughton St Paddington 2021 Sydney, Australia Ph (0

RE: SQL Text question from a beginner

2002-09-30 Thread John Munyan
I took a look on msdn and books online and haven't been able to make much sense of the situation. It appears that one can't define their own data type and accessing this data is less than intuitive. Anyone out there figured out a way to retrieve a couple of pages of data from ms sql? Or accompl

RE: CF Mail Problem..

2002-09-30 Thread Ryan Sabir
Thats how CFMAIL is supposed to work when you pass a query to it. What you should do is use a inside your CFMAIL content section to output the data you need in the table. bye! --- Ryan Sabir Newgency Pty Ltd 2a Broughton St Paddington 2021 Sydney, Australia Ph (02) 9331 21

RE: SQL Text question from a beginner

2002-09-30 Thread Mosh Teitelbaum
A whopping 16 characters? 8^) Actually, according to my SQL Server reference, the TEXT datatype can store 2,147,483,647 bytes. -- Mosh Teitelbaum evoch, LLC Tel: (301) 625-9191 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ > -Original Message- > From: Tony Wee

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

2002-09-30 Thread S . Isaac Dealey
> 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 o

CF Mail Problem..

2002-09-30 Thread Srimanta
Hello Forum, Need Help. I am trying to send data generated by a query using CFMAIL tag to a recepient whose email is obtained from a Form. However Instead of including and sending only one email containing all the rows returned by the query to the email address obtained from the Form in the pr

RE: Help please!! - Adding Email Alert functionality to a site

2002-09-30 Thread Parker, Kevin
Check CF Dev Exchange for Infinite List Server - simple yet great product ** Kevin Parker Web Services Manager WorkCover Corporation [EMAIL PROTECTED] www.workcover.com p: 08 82332548 f: 08 82332000 m: 0418 806 166 ** -Original Message- From: John Innit [mailto:[EMA

Help please!! - Adding Email Alert functionality to a site

2002-09-30 Thread John Innit
We've been asked to add email alert functionality to a clients web site. The client is a recruitment company and wants to maintain a list of prospective candidates that can be automatically alerted when the company has new job openings. The clients wants to be able to manually add / remove na

Re: Using Java nulls in CF?

2002-09-30 Thread jon hall
For anyone wondering...with smaller files it really doesn't matter, but with a 2.3MB IIS logfile, the Java ReadLine method is about 30-40 percent faster than the old standby looping over the file as a string using chr(10) as a delimiter. -- jon mailto:[EMAIL PROTECTED] Monday, September 30, 2

RE: SQL Text question from a beginner

2002-09-30 Thread Tony Weeg
look at the datatype of "text" it holds 16 bytes of data, i believe. hth tony -Original Message- From: John Munyan [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 01, 2002 12:04 AM To: CF-Talk Subject: SQL Text question from a beginner I am new to web development (if I can call wha

SQL Text question from a beginner

2002-09-30 Thread John Munyan
I am new to web development (if I can call what I am doing web development) and have a sql question and was hoping someone could point me in the right direction. I have put together this data driven website and found access to be insufficient to hold as much text as I wished in a description fiel

Re: Using Java nulls in CF?

2002-09-30 Thread jon hall
Actually I didn't even think of using isDefined(), and I think you answered my question without knowing it :). All I really wanted to do was use java's readLine() method, but readLine returns a null when the last line has been read. So I stuck isDefined() in there an voila! It worked. fr = crea

RE: Switching to CFMX

2002-09-30 Thread Nat Papovich
Unfortunately though, Rob's really long index doesn't appear to use Fusebox 3's "core file", which I assume, is the "complex machinery" you mention, Sean. In pre-FB3, there is very little to no machinery used, so long cfswitch statements are the result of the poor design of whoever wrote unfortuna

Re: OT: ASP help

2002-09-30 Thread Samuel R. Neff
Set up a CF server and then use CFHTTP to download the content from the ASP server and then CFFILE to save it to disk. Can even use free CF Developer edition for this. ASP equivalent would be using WinHttp.WinHttpRequest and Scripting.FileSystemObject. Also remember you have to fix your links.

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 20:09 US/Pacific, Rob Brooks-Bilson wrote: > I did some performance testing recently too see if it was faster to > CFINCLUDE a UDF library containing 50 UDFs, or instantiate a CFC with > the > same 50 CFCs as methods. The results were that the CFINCLUDE was > substant

RE: Reverse PDF tools

2002-09-30 Thread Eric Dawson
Acrobat 5 has a Save as RTF feature. I have been told the OCR in acrobat is really good. So it could be a very useful feature. You may want to check out acrobuddies.com or planetpdf.com or other PDF related sites for some tricks and techniques, there may also be some export plugins as well.

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

2002-09-30 Thread Rob Brooks-Bilson
Sorry, jumping in late here... I did some performance testing recently too see if it was faster to CFINCLUDE a UDF library containing 50 UDFs, or instantiate a CFC with the same 50 CFCs as methods. The results were that the CFINCLUDE was substantially faster on initial page load and all subsequ

Re: encode an image into a .cfm "inline

2002-09-30 Thread Samuel R. Neff
Mark, As a previous poster said, you can send a Multipart-MIME message that includes the HTML page and the image, in Base64 encoding. I don't know if this works with all browsers, but I'm pretty sure it works with IE. I've used it for sending "Web Archives" (MS term for Multipart-MIME) document

Re: Using Java nulls in CF?

2002-09-30 Thread Sean A Corfield
On Monday, Sep 30, 2002, at 19:20 US/Pacific, jon hall wrote: > Is it possible to to a Java null in CF? Searching the archives I saw > it mentioned that it's a huge pain in the ass...I guess that means > it's not impossible :) It is possible to create a Java null in a CF variable (with some

Question regarding the archives...

2002-09-30 Thread Judith Dinowitz
Please do! Judith __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-t

Using Java nulls in CF?

2002-09-30 Thread jon hall
Is it possible to to a Java null in CF? Searching the archives I saw it mentioned that it's a huge pain in the ass...I guess that means it's not impossible :) -- jon mailto:[EMAIL PROTECTED] __ Structure your ColdFusi

RE: Reverse PDF tools

2002-09-30 Thread Parker, Kevin
I remember having a look at this quite some time ago - go to Google and do a search on pdftohtml (one word). ** Kevin Parker Web Services Manager WorkCover Corporation [EMAIL PROTECTED] www.workcover.com p: 08 82332548 f: 08 82332000 m: 0418 806 166 ** -Original Message

RE: CFMX and CFFORM

2002-09-30 Thread Bud
On 9/30/02, Justin Hansen penned: >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 y

RE: CFMX / MSSQL

2002-09-30 Thread CF-DEV
Don't I feel like a total A$$ In the HELP it stated to put LOCAL within the parathesis. Such as: (local) Not True.. It is the standard: localhost Thanks everyone!! -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 9:09 PM To: CF-Talk

Re: CFMX / MSSQL

2002-09-30 Thread Dick Applebaum
This is weird -- I'll try sending direct Dick On Monday, September 30, 2002, at 06:03 PM, Dick Applebaum wrote: > I am having trouble posting the setups below -- copy pasted > > > > __ This list and all House of Fusion resourc

Re: CFMX / MSSQL

2002-09-30 Thread Dick Applebaum
I am having trouble posting the setups below -- copy pasted __ Your ad could be here. Monies from ads go to support these lists and provide more resources for the community. http://www.fusionauthority.com/ads.cfm FAQ: http://w

Re: CFMX / MSSQL

2002-09-30 Thread Dick Applebaum
That says the driver is specified OK & is loaded. The problem is with the URL, UserID or Password. You might want to download ViennaSQL (quick & easy) and play around with your connections with it -- it's easier than with CFMX & when you get it workin, you cancopy paste the results to CFMX Ad

Re: CFMX / MSSQL

2002-09-30 Thread Dick Applebaum
On Monday, September 30, 2002, at 05:51 PM, Dick Applebaum wrote: > On Monday, September 30, 2002, at 05:24 PM, CF-DEV wrote: > >> I have CF MX installed and SQL 7. >> >> I created the database along with in the >> Control Panel, I created the ODBC connection >> to the DB with a DSN name of: myDB

RE: CFMX / MSSQL

2002-09-30 Thread Brian Scandale
FYI there is a virus going around that targets MSSQL machines with account sa set with no password... More Info here: http://vil.nai.com/vil/content/v_99499.htm At 05:48 PM 9/30/02, you wrote: >I am using the local dbo account of "sa" >no password. > >It will not authenicate in CF MX Admin. >T

Query of Queries Error

2002-09-30 Thread Sam Farmer
Hi, I have a query of queries that has been working fine until today when I started getting the following error: Query Of Queries runtime error. Unsupported Numeric type conversion in Query of Queries. Thats the extent of the error message provided! The columns seem to match up exactly on data

RE: CFMX / MSSQL

2002-09-30 Thread CF-DEV
This is the error: Connection verification failed for data source: Mindkeeper_SQL []java.sql.SQLException: SQLException occurred in JDBCPool while attempting to connect, please check your username, password, URL, and other connectivity info. The root cause was that: java.sql.SQLException: SQLExce

Re: CFMX / MSSQL

2002-09-30 Thread Dick Applebaum
On Monday, September 30, 2002, at 05:24 PM, CF-DEV wrote: > I have CF MX installed and SQL 7. > > I created the database along with in the > Control Panel, I created the ODBC connection > to the DB with a DSN name of: myDB > > Now in CF it will not connect. > I have SQL 7 set to TCP/IP in the Cli

RE: CFMX / MSSQL

2002-09-30 Thread CF-DEV
I am using the local dbo account of "sa" no password. It will not authenicate in CF MX Admin. The drivers are those in CF MX. -Original Message- From: Brook [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 8:54 PM To: CF-Talk Subject: Re: CFMX / MSSQL What type of drivers

Re: CFMX / MSSQL

2002-09-30 Thread Brook
What type of drivers are you using? The ODBC Socket Connection should work. If you want to use the Sql Server Driver, you need to have mixed mode authentication on your SQL Server. You need to setup a sql server login, with a username an password. Then use this username and password to connect

RE: Reverse PDF tools

2002-09-30 Thread Whiterod, David (PLNSA)
Mark, Try http://www.pdftoall.com/ pdf to text, html,csv, bmp, jpg, png, converter I have not used this s/w but they do have a COM component that may allow automation. cheers David -Original Message- From: Mark A. Kruger - CFG [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 1 October 2002

CFMX / MSSQL

2002-09-30 Thread CF-DEV
I have CF MX installed and SQL 7. I created the database along with in the Control Panel, I created the ODBC connection to the DB with a DSN name of: myDB Now in CF it will not connect. I have SQL 7 set to TCP/IP in the Client Network Utility. I have no PWD associated since this is used as my

RE: Fusebox and CFMX was RE: Switching to CFMX

2002-09-30 Thread Rob Rohan
I hope I did not give the impression that I dislike fusebox - because I like fusebox. I am by default a Java programmer, and fusebox added a tasty OO flavor to CF. It does appear the MX will now natively do most of what fusebox set out to do - which is the main reason for our switch. In conclusio

Fusebox and CFMX was RE: Switching to CFMX

2002-09-30 Thread Mike Brunt
Sean, thanks for all your informative and very helpful posts. I started using CF in 1996 and Fusebox opened up all sorts of great things to pre CFMX ColdFusion. I know there are many luminaries who dislike Fusebox no doubt for good reason within their own well-structured company's/worlds, people

Re: MX Eating my CFINCLUDES?

2002-09-30 Thread Sean A Corfield
I checked with the DW team and they referred me to this Tech Note: http://www.macromedia.com/support/dreamweaver/ts/documents/ translator_code.htm Hope that helps? On Monday, Sep 30, 2002, at 15:06 US/Pacific, Ian Lurie wrote: > Sorry if this is a repeat post, but right now in Dreamweaver MX,

Re: Switching to CFMX

2002-09-30 Thread Sean A Corfield
I've been trying to resist responding to this thread but... On Monday, Sep 30, 2002, at 14:44 US/Pacific, Rob Rohan wrote: > >delimiters=","> > > > > > > ... > Let me say, first of all, that I'm glad you've found a workaround. S

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 latest

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 http://www

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 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 Fu

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 hap

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,

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

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 And YES, I have rewrite code turned off for all .cfm files. HELP! Ian -- Portent Interactive Effective web sites through Conversation Ma

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, -- Ho

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=3&threadid= 385775 The index file I am dealing with

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 wil

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: Under that, the regular CF generated javascript is there as normal, but sinc

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 Goo

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 - inFusion

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: body of message... I am using MX (my first attempt at a complete app on MX) if that makes a differe

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

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: 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 m

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 = createObject("compo

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 c

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# 0-5

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

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... Kris

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 web-b

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 appl

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: 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: mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 2:37 PM To: CF-Talk S

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 rese

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

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: 50 100 150 200 250 300 350 400 450 500 550 600 650 700 750 800 850 900 950 1000 Jochem ___

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 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 ho

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 ... 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 like this: #ruler {

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

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 IsK2ServerDocC

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 complia

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] www.

Re: encode an image into a .cfm "inline

2002-09-30 Thread jon hall
This what you are looking for? image.cfm: -- 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 that it is impossible... but, thought I would ask. MWB> I hav

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 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

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 t

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 several

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 > fi

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 onrequ

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 va

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 di

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" <[EMA

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_ Brewe

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 ( ) ... ... which was the source of the problem... How did I figure this out? I ran this code:

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 attrib

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 FAQ

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: changing

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 rou

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 f

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

  1   2   3   >