RE: CFMX lives sites?

2002-08-02 Thread Paris Lundis
yeah its pretty too... quite an excellent site... great examples of technology, content and design married in a most excellent manner... a little slow on the loading here... site getting a bunch of activity? and how much gear to run it? -paris -Original Message- From: Paul Hastings

Re: ColdFusion Accessing exhcnage server calendar

2002-08-02 Thread - Chris -
Hi Dan, I am sorry to contact you offline, but reading that you have some Outlook code made me curious. I have been trying to connect to Exchange now for some time without any results. The last thing I did now is link a table in access and copy that table into a working table. Good to recieve

Re: SQL query driving me nuts

2002-08-02 Thread Steven Duff
On Thu, 01 Aug 2002 23:09:28 -0500, you wrote: Looong list of things going on, but try this query to see what you get! SELECT i.ItemName FROM Users u, LastViewed lv, Items i WHERE i.ItemId = lv.ItemId AND i.itemLastModified lv.LastViewedDate AND lv.UserID = '1' Paul Giesenhagen QuillDesign

Re: SQL query driving me nuts

2002-08-02 Thread Steven Duff
On Fri, 02 Aug 2002 16:09:33 +1200, you wrote: WHERE (Viewed.UserID = 1) and (Viewed.LastViewedDate Items.LastModified) or (Viewed.LastViewedDate IS NULL) How about that? Hi Matthew. That's close. That gives me line 2 and 5, but not 4. Line 4 exists in the table because user 2

Re: SQL query driving me nuts

2002-08-02 Thread Steven Duff
On Fri, 02 Aug 2002 00:23:15 -0400, you wrote: What about something like this. (note the placement of the () with the AND/OR)... Justin SELECT Items.ItemID, Items.Name, Items.LastModified, Viewed.UserID, Viewed.LastViewedDate FROM Items LEFT OUTER JOIN Viewed

RE: CFCs, Tiers and Naming Conventions

2002-08-02 Thread Stacy Young
Thx Sean...I think what I'll do is post some sample code to show how I'm implementing some basic patterns and let yall pick at it...best way to learn I figure. Stace -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 12:59 AM To: CF-Talk

Using CF, DIV's with Pixel Positioning

2002-08-02 Thread Ian Vaughan
Hi I wish to center my tables if the screen resolution is above 800x600, if it is 800x600 it will be a full screen, based using div style=position: absolute; left: 1; top: 0; 777; id=logooo and the javascript file below, all this works, apart from one thing, I am using HierMenus, using pixel

Increments

2002-08-02 Thread Robertson-Ravo, Neil (REC)
Opinions please... I have unenviable task of going through an old app and getting together some kind of spec from which it can be improved. I am noticing a hell of a lot of variable increments performed in the following way : cfset foo = 0 cfloop.. !--- loop data --- cfset foo

RE: Increments

2002-08-02 Thread Robertson-Ravo, Neil (REC)
ah, my mistake. it is the other way around :-) duh... -Original Message- From: Robertson-Ravo, Neil (REC) Sent: 02 August 2002 09:29 To: '[EMAIL PROTECTED]' Subject: Increments Opinions please... I have unenviable task of going through an old app and getting together some

Re: Using CF, DIV's with Pixel Positioning

2002-08-02 Thread Jon Hall
I'm not exactly sure what you end goal is so let me know if I'm assuming wrong, but you want to relatively position your main content (centered), but you are absolutely positioning your nav dropdowns? Is your nav inside the content box div? If not, then yeah it's going to get misaligned. I also

Ebay using Cold Fusion?

2002-08-02 Thread Paris Lundis
I thought it's interesting as Ebay has see sawed between big solutions - Sun and IBM and now where? Got this message while cruising their site during their maintenance window: CACHE_FAILED: http://www.local:80/ebay/ebay_best_sellers.cfm?tag=laptops : Fetch Failed So I guess they are using it

RE: regexp

2002-08-02 Thread Kodjo Ackah
Cheers Guys! Worked like a charm! Believe it or not, today I have a choice in what to use! Kodjo ackah Principal Consultant concrete-media.com __ Signup for the Fusion Authority news alert and keep up with the latest news in

Re: Increments

2002-08-02 Thread Matthew Walker
Yes, as you realise IncrementValue() should generally be avoided. cfparam should not be used to initialise a variable unless it is intended that the variable already have a value. cfparam is only there to provide a default. To illustrate the problem, imagine several of these loops with cfparam

RE: Show debug output (easy slice of cheese to the winner)

2002-08-02 Thread Tipton Josh (orl1jdt)
look in dev exchange at cf_avartree it is sweet. -Original Message- From: Al Everett [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 01, 2002 10:45 PM To: CF-Talk Subject: RE: Show debug output (easy slice of cheese to the winner) Given all that, does anyone have a chunk of code that

Re: Does Macromedia have some current strong Flash agenda?

2002-08-02 Thread Jochem van Dieten
Sean A Corfield wrote: Ah, yes, I realize that now. The multicast stuff he's talking about is pretty hardware specific... No, I wouldn't expect FlashCom to handle that per se (but it's very bandwidth-efficient when broadcasting video...). Not really hardware specific, it is just a part of

Re: cfexecute?

2002-08-02 Thread Jochem van Dieten
Tony Weeg wrote: nada. still doesnt work... but, the odd part, is that it works, when i do it from the command line like this cx_run.bat in_123.xml out_123.xml But at the command line, are you logged in as the same user as the CF service is logged in as? Jochem

Re: Increments

2002-08-02 Thread Jeffry Houser
I would not recommend using cfparam to initialize foo. Is it defined previously or is it not? If it is, you will get odd results. If it isn't, then there is no need to use cfparam. As to using cfset foo = foo + 1 vs IncrementValue I would be willing to bet that the difference in the

RE: Show debug output (easy slice of cheese to the winner)

2002-08-02 Thread Al Everett
--- Todd [EMAIL PROTECTED] wrote: cfdump is your friend. :) That sucks tho... Well, sure, for the various variable scopes. Any way to get to the queries that were run? Short of something like this, I mean: cfquery name=getUser datasource=#DSN# select firstname, lastname, email from tblUsers

RE: cfexecute?

2002-08-02 Thread Tony Weeg
jochem thanks to todd, last night, I got it! it was some silly errors stemming from a path not set in one of the ini files needed--and I hadnt set them yet ;) thanks anyway. ..tony Tony Weeg Senior Web Developer Information System Design Navtrak, Inc. Fleet Management Solutions

Re: Query Result 2 includes down

2002-08-02 Thread Al Everett
It has nothing to do with the CFINCLUDEs. I've seen the same behavior when working with a query inside the loop of another query. The solution is to copy the value to a local variable outside of the inner loop, as you've already done. --- Paul Giesenhagen [EMAIL PROTECTED] wrote: After

RE: cfexecute?

2002-08-02 Thread Al Everett
Could be a file permissions issue. You're logged in when you run the command, but CF is running under the System Account (in the default setup). --- Tony Weeg [EMAIL PROTECTED] wrote: nada. still doesnt work... but, the odd part, is that it works, when i do it from the command line like

Re: SQL query driving me nuts

2002-08-02 Thread Al Everett
You can't compare to NULLs. How about this: How about NVL on the date setting a value deep into the past (1/1/80 seems reasonable) that will count as never been viewed? --- Steven Duff [EMAIL PROTECTED] wrote: I've been working on this for a couple of days now, and just can't get this to

Re: Increments

2002-08-02 Thread Al Everett
--- Matthew Walker [EMAIL PROTECTED] wrote: Yes, as you realise IncrementValue() should generally be avoided. Really? I haven't seen this before. What's the rationale? Is it documented somewhere? __ Do You Yahoo!? Yahoo! Health - Feel better,

RE: Increments

2002-08-02 Thread Philip Arnold - ASP
Yes, as you realise IncrementValue() should generally be avoided. Really? I haven't seen this before. What's the rationale? Is it documented somewhere? It's a depreciated function - it's still there now, but it may not be in future releases Philip Arnold Technical Director Certified

RE: Increments

2002-08-02 Thread Al Everett
Yes, as you realise IncrementValue() should generally be avoided. Really? I haven't seen this before. What's the rationale? Is it documented somewhere? It's a depreciated function - it's still there now, but it may not be in future releases Ah! I'm still stuck in CF4.5.1SP2.

Re: SQL query driving me nuts

2002-08-02 Thread Jochem van Dieten
I hope your database understands the join syntax: SELECT Items.ItemID, Items.Name, Items.LastModified, Viewed.UserID, Viewed.LastViewedDate FROM Items LEFT OUTER JOIN Viewed ON (Items.ItemID = Viewed.ItemID

RE: Increments

2002-08-02 Thread Robertson-Ravo, Neil (REC)
thats deprecated :-p -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: 02 August 2002 14:02 To: CF-Talk Subject: RE: Increments Yes, as you realise IncrementValue() should generally be avoided. Really? I haven't seen this before. What's the rationale? Is

Re: Increments

2002-08-02 Thread Todd
IncrementValue() is not depreciated, nor is DecrementValue(). The general rule is that variable.a = variable.a + 1 is somewhat faster than IncrementValue(). However, I think you'll be hard pressed to find that holds true in CFMX. I think like Mike D's claim that IIF is no faster or slower

Re: Calling Queries

2002-08-02 Thread Sam Farmer
Thanks Raymond. I am on MX is there a magic cure on that? Thanks, Sam - Original Message - From: Raymond Camden [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 01, 2002 5:53 PM Subject: RE: Calling Queries In this case, I believe you do need to use evaluate

RE: Calling Queries

2002-08-02 Thread Raymond Camden
Sure, instead of cfset theQuery = evaluate(caller.#attributes.query#) you would do cfset theQuery = caller[attributes.query] Query - why are you passing the name of the query instead of the query itself?? === Raymond Camden,

RE: Increments

2002-08-02 Thread Raymond Camden
Correct. There are good places for incrementvalue and decrementvalue. One example - a next link. Normally you may do: cfset nextPage = url.page + 1 a href=foo.cfm?page=#nextPage# But it's a bit simpler to do: a href=foo.cfm?page=#incrementValue(url.page)#

RE: Increments

2002-08-02 Thread Philip Arnold - ASP
thats deprecated :-p OK, so I can't spell today :P Philip Arnold Technical Director Certified ColdFusion Developer ASP Multimedia Limited Switchboard: +44 (0)20 8680 8099 Fax: +44 (0)20 8686 7911 www.aspmedia.co.uk www.aspevents.net An ISO9001 registered company.

RE: CFMX lives sites?

2002-08-02 Thread Raymond Camden
www.cflib.org (udf's galore) www.camdenfamily.com (don't bother, boring crap about me, unless you play my CFC tictactoe game ;) www.cfczone.org (cfc's galore... well... soon! :) === Raymond Camden, ColdFusion Jedi Master for

Re: its ok really...

2002-08-02 Thread Alex
permissions? Your path ...where are the *.xml files located? On Thu, 1 Aug 2002, Tony Weeg wrote: hey, if everyone ignoring me, its ok, i understand, but--if no one has any clues on this question, ill send this again tomorrow, but really, if someone has any idea on this, please let me

RE: Increments

2002-08-02 Thread Robertson-Ravo, Neil (REC)
:-) LOL -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: 02 August 2002 14:40 To: CF-Talk Subject: RE: Increments thats deprecated :-p OK, so I can't spell today :P Philip Arnold Technical Director Certified ColdFusion Developer ASP Multimedia Limited

Out of control thread semaphores

2002-08-02 Thread Steven Salter
This is a continual problem we've been having lately. It probably is a bad query that is causing the thread problem but nowhere is the template/program identified that is causing the problem. Warning,TID=228364,08/01/02,12:10:49, Timed out while waiting for thread semaphore (5 requests are

Re: Calling Queries

2002-08-02 Thread Sam Farmer
Thanks, think I tried just about every other combination We had a long discussion here over whether it would be better to pass the query in as opposed to just the name. Our concearn with passing in the query was that we would be duplicating the query in memory--just in different places.

Deprecated tags and functions

2002-08-02 Thread Al Everett
I know I've scanned the list of stuff deprecated in CFMX, but now I can't for the life of me find it. I've been all over macromedia.com. Maybe I need new glasses. Can some kind soul point me to such a list? Just for curiosity's sake, a list of things that were deprecated in CF5 would be good too.

RE: its ok really...

2002-08-02 Thread Tony Weeg
alex...thank you for your help, but the problem is resolved. thanks to todd, last night, I got it! it was some silly errors stemming from a path not set in one of the ini files needed--and I hadnt set them yet ;) thanks anyway. .tony ..tony Tony Weeg Senior Web Developer Information System

Re: Using CF, DIV's with Pixel Positioning

2002-08-02 Thread Ian Vaughan
Hi Jon I would like the main content which is contained in tables to be centered on the users screens, but I am having problems as stated earlier I am using div style=position: absolute; left: 1; top: 0; height: 941; width: 781; id=logooo with the script at the end of this email to try to

Running CFMs from NT Scheduler

2002-08-02 Thread Frank Mamone
Has anyone found a way to do this in MX? __ Signup for the Fusion Authority news alert and keep up with the latest news in ColdFusion and related topics. http://www.fusionauthority.com/signup.cfm FAQ:

RE: Deprecated tags and functions

2002-08-02 Thread Robertson-Ravo, Neil (REC)
its in the documentation for CF -Original Message- From: Al Everett [mailto:[EMAIL PROTECTED]] Sent: 02 August 2002 14:50 To: CF-Talk Subject: Deprecated tags and functions I know I've scanned the list of stuff deprecated in CFMX, but now I can't for the life of me find it. I've been

RE: Calling Queries

2002-08-02 Thread Raymond Camden
Actually, passing in a query passes in a reference. If you change the query in the custom tag, it changes it in the caller as well. Something to watch out for. If you do decide to pass in the query and do change it and don't _want_ to change the original, you would need to use duplicate when

RE: Increments

2002-08-02 Thread Al Everett
thats deprecated :-p OK, so I can't spell today :P Don't sweat it. Considering the recent performance of the stock market, depreciation is weighing heavily on everyone's minds. __ Do You Yahoo!? Yahoo! Health - Feel better, live better

Re: Deprecated tags and functions

2002-08-02 Thread Jesse Houwing
Al Everett wrote: I know I've scanned the list of stuff deprecated in CFMX, but now I can't for the life of me find it. I've been all over macromedia.com. Maybe I need new glasses. Can some kind soul point me to such a list? Just for curiosity's sake, a list of things that were deprecated in CF5

RE: Calling Queries

2002-08-02 Thread Dave Watts
We had a long discussion here over whether it would be better to pass the query in as opposed to just the name. Our concern with passing in the query was that we would be duplicating the query in memory--just in different places. With a small query this would be no real concern, but with

Re: Deprecated tags and functions

2002-08-02 Thread Al Everett
Check out the cfdocs folder in the root of your webserver. In the CFML reference under CFML function summary and CFML tag summary I don't have a CFMX installation available to me. __ Do You Yahoo!? Yahoo! Health - Feel better, live better

RE: Deprecated tags and functions

2002-08-02 Thread Al Everett
Can you be more specific? I've been looking through livedocs.macromedia.com and can't find it. its in the documentation for CF -Original Message- I know I've scanned the list of stuff deprecated in CFMX, but now I can't for the life of me find it. I've been all over

RE: CFMX lives sites?

2002-08-02 Thread Wille, Paul
Thank you for the compliments. It was a fun project to work on, integrating all of the different technology into a single site. Stay tuned for next year's race. Many new ideas coming down the pike. :) -Original Message- From: Paul Hastings [mailto:[EMAIL

Re: Deprecated tags and functions

2002-08-02 Thread Al Everett
Looks like I found what I was looking for: http://download.macromedia.com/pub/coldfusion/documentation/cfmx_migrating.pdf Under Migrating ColdFusion 5 Applications specifically CFML Tags and Attributes and CFML Functions and Variables I'd still like to see the same thing for 4.5 to 5.

RE: CF-Talk-list V1 #174

2002-08-02 Thread christian
Could someone help me here. Isn't it easier to code it once and have it run everywhere? (e.g. not worry about IE, Netscape, AOL, Opera, etc). From my understanding, all that's required is they (the end-user) have the current player. Using ActionScript and CFC's - you can pretty much do

RE: Deprecated tags and functions

2002-08-02 Thread Todd
Tags: http://livedocs.macromedia.com/cfmxdocs/CFML_Reference/Tags-pt03.jsp#2451739 Obsolete Tags: http://livedocs.macromedia.com/cfmxdocs/CFML_Reference/Tags-pt04.jsp#2451949 Functions: http://livedocs.macromedia.com/cfmxdocs/CFML_Reference/functions-pt04.jsp#3477555 At 02:47 PM 8/2/2002

RE: Deprecated tags and functions

2002-08-02 Thread Al Everett
Exactly what I was looking for. Thanks! (Damn my eyes!) --- Todd [EMAIL PROTECTED] wrote: Tags: http://livedocs.macromedia.com/cfmxdocs/CFML_Reference/Tags-pt03.jsp#2451739 Obsolete Tags: http://livedocs.macromedia.com/cfmxdocs/CFML_Reference/Tags-pt04.jsp#2451949 Functions:

RE: Deprecated tags and functions

2002-08-02 Thread Robertson-Ravo, Neil (REC)
If you have 5, it should be in the docs -Original Message- From: Al Everett [mailto:[EMAIL PROTECTED]] Sent: 02 August 2002 15:01 To: CF-Talk Subject: Re: Deprecated tags and functions Looks like I found what I was looking for:

RE: SQL query driving me nuts

2002-08-02 Thread Justin Greene
Ah, I see the issue. You just need to eliminate the other users before joining. Something like (syntax may be off a little as I do not have SQL on this machine to test it)... Justin SELECT I.ItemID, I.Name, I.LastModified, V.UserID, V.LastViewedDate FROM(Select

RE: Deprecated tags and functions

2002-08-02 Thread Al Everett
If you have 5, it should be in the docs Ain't got 5 either. Still running 4.5.1SP2. __ Do You Yahoo!? Yahoo! Health - Feel better, live better http://health.yahoo.com __ Your

Re: Increments

2002-08-02 Thread Sean A Corfield
On Friday, August 2, 2002, at 06:37 , Raymond Camden wrote: Correct. There are good places for incrementvalue and decrementvalue. One example - a next link. Normally you may do: cfset nextPage = url.page + 1 a href=foo.cfm?page=#nextPage# But it's a bit simpler to do: a

Deployment software?

2002-08-02 Thread Brian Fox
Any recommendations for a multi-server deployment program? I'm loosing sleep on a new project I just finished that has multiple revisions/fixes a week, a half dozen servers to mirror, and a client who wants it mirrored after 10:00 PM. Thanks, Brian

Re: OS X Web Services Running! was Re: X-server?

2002-08-02 Thread Dick Applebaum
Sean Have you had any luck Publishing Web services -- navigating the pain, er, ah, plain of jars? Dick On Thursday, August 1, 2002, at 10:28 AM, Sean A Corfield wrote: I tried a few other combinations of moving .jar files around but I can't yet get both consuming and producing to work...

RE: Increments

2002-08-02 Thread Raymond Camden
On Friday, August 2, 2002, at 06:37 , Raymond Camden wrote: Correct. There are good places for incrementvalue and decrementvalue. One example - a next link. Normally you may do: cfset nextPage = url.page + 1 a href=foo.cfm?page=#nextPage# But it's a bit simpler to do: a

RE: Ebay using Cold Fusion?

2002-08-02 Thread Mike Brunt
Paris, I worked at Ebay for a short time during my time working at Allaire. They were using it for an internal application, I tried to spread the fire but was not there long enough. Mike Brunt - CTO Webapper Services LLC http://www.webapper.com Downey CA Office 562.243.6255 Making the NET Work

RE: Out of control thread semaphores

2002-08-02 Thread Mike Brunt
Steven, look in both the Application and Server logs, if you check across time-slices you should find references to this in both and hopefully one will have CF Template names. Hth. Mike Brunt - CTO Webapper Services LLC http://www.webapper.com Downey CA Office 562.243.6255 Making the NET Work

RE: Deployment software?

2002-08-02 Thread Andre Turrettini
Brian , The most interesting solution I've heard about is having a single server as the source for the code for all your machines. So, you have your laod balancing as usual but cfm maps its file requests to this one machine. Eventually however all of your servers have the pcode in their own

Re: Deployment software?

2002-08-02 Thread Alex
rsync On Fri, 2 Aug 2002, Brian Fox wrote: Any recommendations for a multi-server deployment program? I'm loosing sleep on a new project I just finished that has multiple revisions/fixes a week, a half dozen servers to mirror, and a client who wants it mirrored after 10:00 PM. Thanks,

RE: Deployment software?

2002-08-02 Thread Robertson-Ravo, Neil (REC)
There is also the neat way Ray Camden did it for Spectra using WDDX maybe Ray can share his knowledge on how this was created etc so we could all leverage it! the Spectra Source updater is one file which once run will install all the new files in place. N -Original Message- From:

Parent-Child Select boxes on forms

2002-08-02 Thread jgeorges
I have a form in which I have 2 select boxes, the second being filled based on the choice made in the first. The following code does this but I lose changes made to other elements in the form. What am I doing wrong or is there another way to do this? TIA, Sam function surfto(f) {

Parent-Chiled Select boxes (resubmit)

2002-08-02 Thread jgeorges
I have a form in which I have 2 select boxes, the second being filled based on the choice made in the first. The following code does this but I lose changes made to other elements in the form. What am I doing wrong or is there another way to do this? TIA, Sam function surfto(f) {

RE: Deployment software?

2002-08-02 Thread Raymond Camden
I've not been following the thread, but if you want a general understanding of what is done at spectrasource: 1) All modifications/code updates are stored in the database. I.e., the actual source code. This even includes encrypted CFML. 2) User selects the type of update (Everything, or one

RE: Deployment software?

2002-08-02 Thread Robertson-Ravo, Neil (REC)
Ray, So the actual page data is WDDX'ed and then appended to the file? I have had a decent look at the installer.cfm and I get pretty much of all it. Does this file get generated on the fly as the user requests it? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]]

Re: Increments

2002-08-02 Thread Sean A Corfield
On Friday, August 2, 2002, at 07:53 , Raymond Camden wrote: Um. No. incrementValue _returns_ the higher value. It doesn't change url.page. If you cfoutput url.page after this code, it is not changed. Ah, good. So in fact there's even less reason to use incrementValue() now than ever before...

Coldfusion News Tickers

2002-08-02 Thread Ian Vaughan
Hi Does anybody know where you can get a news ticker exactly like the one at http://news.bbc.co.uk/ and or has anybody integrated this into coldfusion so it is dynamically coming from the database. __ Signup for the Fusion

RE: Increments

2002-08-02 Thread Robertson-Ravo, Neil (REC)
Why have it then? is it deprecated? -Original Message- From: Sean A Corfield [mailto:[EMAIL PROTECTED]] Sent: 02 August 2002 16:19 To: CF-Talk Subject: Re: Increments On Friday, August 2, 2002, at 07:53 , Raymond Camden wrote: Um. No. incrementValue _returns_ the higher value. It

RE: Increments

2002-08-02 Thread Raymond Camden
I disagree. First, if you want to increment variable, and keep it, then yes, cfset x = x+1 makes more sense. However, if you need the higher value just temporarily (as I showed in the link demo), then it _does_ make sense. Yes, you can do: cfoutput... #x+1#.../cfoutput But as for that being

RE: Increments

2002-08-02 Thread Raymond Camden
See my earlier email. It can be useful for times when you want the higher value, but don't need to store it. Not _very_ useful - but nice. It is NOT deprecated. === Raymond Camden, ColdFusion Jedi Master for Macromedia Email

Re: Coldfusion News Tickers

2002-08-02 Thread Dick Applebaum
That is a very nice ticker -- a lot less distracting than those that constantly move like a stock ticker. I always feel that I am missing what is sliding off the left of the ticker. I don't get that unsettling feeling with this ticker. Dick On Friday, August 2, 2002, at 08:19 AM, Ian

RE: Deployment software?

2002-08-02 Thread Raymond Camden
The code for installer.cfm looks like so on the spectrasource box: bunch of crap cfabort !--- some marker, I forget --- When you download the installer, it reads in the core file, then after the marker, appends the wddx packet.

RE: Increments

2002-08-02 Thread Todd
It is not deprecated. Why have it? Developer's choice. You decide which you want to use and feel comfortable with. It's a good question for the macromedians on the list, why provide a function if you recommend against it. At 04:19 PM 8/2/2002 +0100, you wrote: Why have it then? is it

Urgent: sql 7 recovering

2002-08-02 Thread Bill Wheatley
Anyone ever seen a situation where the db goes into recovery when it gets done it just sits there and does nothing?? SQL 7 cluster just gets to 100% for the recovery then it just says there and does nothing. Bill Wheatley Senior Database Developer Macromedia Certified Advanced Coldfusion

RE: Coldfusion News Tickers

2002-08-02 Thread Matthew Friedman
if you look at the code it is done as an Iframe that pulls in a file that has all of the code you would need to hack it out. Matt -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 11:19 AM To: CF-Talk Subject: Coldfusion News Tickers Hi

Parent-Child Select boxes in a form

2002-08-02 Thread jgeorges
I have a form in which I have 2 select boxes, the second being filled based on the choice made in the first. The function function surfto(f) { myindex=document.forms[f].elements[1].selectedIndex; location=document.forms[f].elements[1].options[myindex].value; return true; }

Re: Coldfusion News Tickers

2002-08-02 Thread Dave Hannum
It's a java applet. Dave - Original Message - From: Ian Vaughan [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, August 02, 2002 11:19 AM Subject: Coldfusion News Tickers Hi Does anybody know where you can get a news ticker exactly like the one at

RE: Increments

2002-08-02 Thread Philip Arnold - ASP
It is NOT deprecated. So, has it been un-deprecated? For version 5 (and 4.5 I think) it was on the list... Philip Arnold Technical Director Certified ColdFusion Developer ASP Multimedia Limited Switchboard: +44 (0)20 8680 8099 Fax: +44 (0)20 8686 7911 www.aspmedia.co.uk www.aspevents.net An

RE: Deployment software?

2002-08-02 Thread Raymond Camden
The data for the fixes are Spectra objects. So the object itself is WDDX. The file code is a property of the object. On creating the installer, I simply get all applicable fixes and grab the code property. === Raymond Camden,

RE: Increments

2002-08-02 Thread Raymond Camden
As far as I know, if it was mentioned as being deprecated, this was a typo. We made a simular mistake in CFMX with... um, structKeyList I believe. Wait - did I say mistake - I mean issue. : === Raymond Camden, ColdFusion Jedi

RE: Deployment software?

2002-08-02 Thread Robertson-Ravo, Neil (REC)
neat, very neat.. I am thinking about trying to rollout a similar thing for code updates to systems here (in the future) we have many systems running the same app but when updates/fixes are scheduled and implements, I would like a simple 1 file install to do the job.. -Original

RE: CFMX lives sites?

2002-08-02 Thread Brook Davies
This is a cool site, the mapping features are great. It does seem a bit on the heavy site though. I guess it all depends on your target audience. bd At 07:58 AM 02/08/02 -0600, you wrote: Thank you for the compliments. It was a fun project to work on, integrating all of the different

RE: Deployment software?

2002-08-02 Thread Robertson-Ravo, Neil (REC)
yep, but its stored as WDDX in the DB? or is it serialized on a need basis before appending? -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: 02 August 2002 16:30 To: CF-Talk Subject: RE: Deployment software? The code for installer.cfm looks like so on the

REPOST: Printing

2002-08-02 Thread Bryan Stevenson
Hey All, I'm just in the beginning phases of figuring out how I am going to make it hard (not bulletproof) for a user to print and image more than once. Now I'm open to how that image gets sent to the printer (as an image...in a Word fileother ideas...just not in a PDF). Requirements:

RE: Increments

2002-08-02 Thread John Beynon
Looks pretty correct to me Phil, perhaps it's a case of potato/potatoe again John. -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL PROTECTED]] Sent: 02 August 2002 14:38 To: CF-Talk Subject: RE: Increments :-) LOL -Original Message-

RE: Does Macromedia have some current strong Flash agenda?

2002-08-02 Thread Mike Chambers
You can use external editors to edit your actionscript code, and then include it via the include directive: #include mycode.as personally, i use EditPlus for most of my ActionScript code development. It has color coding syntax variable. I have also been using Dreamweaver MX more and more

RE: Does Macromedia have some current strong Flash agenda?

2002-08-02 Thread Mike Chambers
I think that Flash components addresses this issue to an extent. For example, at Flash forward, we built a simple application that loaded data from data base and displayed it in a data grid component. here is the code it took to display the data once it was loaded:

RE: Does Macromedia have some current strong Flash agenda?

2002-08-02 Thread Mike Chambers
actually, flash applications can be very small, and they stream, thus making them idea for low bandwidth connections. that doesn't mean that all flash movies will be small, but for application interfaces, they can be if constructed properly. mike chambers [EMAIL PROTECTED] -Original

RE: Does Macromedia have some current strong Flash agenda?

2002-08-02 Thread hannum
Quoting Mike Chambers [EMAIL PROTECTED]: do you have any suggestions for improving the code editing environment within Flash MX, or would you prefer tighter integration with external editors? mike chambers [EMAIL PROTECTED] I'd REALLY like to see integration within the

Re: Coldfusion News Tickers

2002-08-02 Thread Terry Roll
Look again... It's a java applet. Dave - Original Message - From: Ian Vaughan [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, August 02, 2002 11:19 AM Subject: Coldfusion News Tickers Hi Does anybody know where you can get a news ticker exactly like the one at

RE: Does Macromedia have some current strong Flash agenda?

2002-08-02 Thread Dan Haley
Improve the editor, please! And/or add code hinting etc. to CF Studio. Trying to work in the Flash code editor to do simple debugging is annoying. I think someone else mentioned the idea that Flash has a graphic designer's feel to it, and that is the feeling that I get also. If the editor were

RE: Coldfusion News Tickers

2002-08-02 Thread Robertson-Ravo, Neil (REC)
It looks like its Javascript? -Original Message- From: Terry Roll [mailto:[EMAIL PROTECTED]] Sent: 02 August 2002 17:36 To: CF-Talk Subject: Re: Coldfusion News Tickers Look again... It's a java applet. Dave - Original Message - From: Ian Vaughan [EMAIL PROTECTED] To:

RE: Coldfusion News Tickers

2002-08-02 Thread Matthew Friedman
here is the code from the iframe !-- Ticker version 1.09 -- HTML HEAD TITLETicker/TITLE STYLE TYPE=text/css !-- A { font-family: Verdana, Arial, Helvetica, sans-serif, MS sans serif; font-size: 11px; line-height: 11px; text-decoration: none; color: #66; font-weight: bold;

RE: Coldfusion News Tickers

2002-08-02 Thread Robertson-Ravo, Neil (REC)
Yes, its JS sitting in an IFrame with a nice little bg image for the LATEST bit. -Original Message- From: Robertson-Ravo, Neil (REC) [mailto:[EMAIL PROTECTED]] Sent: 02 August 2002 17:35 To: CF-Talk Subject: RE: Coldfusion News Tickers It looks like its Javascript? -Original

RE: Does Macromedia have some current strong Flash agenda?

2002-08-02 Thread Mike Chambers
Dreaweaver does have the following ActionScript support: 1. code hinting 2. color coding plus there is an extensions that brings the ActionScript reference panel into DWMX. are you look for something tighter than that? mike chambers [EMAIL PROTECTED] -Original Message- From:

Re: Coldfusion News Tickers

2002-08-02 Thread Dave Hannum
Here's the code delivered to IE: span class=dateFriday, 2 August, 2002, 16:16 GMT 17:16 UK /span iframe height=30 marginwidth=0 width=315 scrolling=no src=/ticker/ticker.13800.stm frameborder=0 marginheight=0applet height=50 code=lightticker2.class codebase=/java/ width=315param name=bgcolor

  1   2   3   >