concatenate help please

2004-09-09 Thread Brant Winter
Can somebody please some help ?? cfset scriptNO = 1 cfset scriptrun=StructNew() cfset scriptrun.script #scriptNO# = StructNew() What am I doing wrong ?? I am trying to make this string look like cfset scriptrun.script1=StructNew()

Re: concatenate help please

2004-09-09 Thread Kym Kovan
Hi Brant, cfset scriptNO = 1 cfset scriptrun=StructNew() cfset scriptrun.script #scriptNO# = StructNew() What am I doing wrong ?? I am trying to make this string look like cfset scriptrun.script1=StructNew() try this: cfset scriptrun.script#scriptNO# = StructNew() that will work on any

Re: concatenate help please

2004-09-09 Thread joe velez
try doing what you're doing .. but save it to a file ... then include the file. cfset writetofile= YOUR CODE HERE... But instead of: cfset scriptrun.script #scriptNO# = StructNew() put it how you want it to work like: cfset scriptrun.script#scriptNO# = StructNew() cffile action=''

Re: looping and for statements

2004-09-09 Thread joe velez
sounds complicated ... im not sure how you can create a new page in a pdf, but you got that covered from what i can tell. or maybe you just create a new pdf altogether. ..and im also not sure if i understand you correctly, but if i do just use a counter. cset last=0 !--- used to count the

RE: DHTML Drag and Drop pt.2

2004-09-09 Thread Micha Schopman
There is no way this is usable in practice, since still the drop down box is a still forgotten element under MSIE and therefore cannot be modified totally to represent accurate x and y values. Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377,

Re: generate print dialogue box

2004-09-09 Thread joe velez
one thing i never got was if someone was willing enough to click a button in the web page to print ... what's so difficult about clicking the browser's print button? does this humor anyone else or am i alone? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

CF5.0 and XML

2004-09-09 Thread Mike Kear
How easy is it to produce XML in CF5.0?I know that in CFMX there are a host of great XML-related tags, to make it easy, but what about turning a query into XML in CF5.0? It is straightforward?Are there any tutorials? -- Cheers Mike Kear Windsor, NSW, Australia AFP Webworks

RE: generate print dialogue box

2004-09-09 Thread Brant Winter
Ahahahhaa it humors me to no end. These doctors are just used to getting what they want - and unfortunately, if I want my job I have to deliver ! The information transmitted is intended only for the person or entity to which it is

Re: CF5.0 and XML

2004-09-09 Thread Andrew Dixon
If you just want to produce an XML file, that is simple. Create the XML code in a variable and write it to the file system using CFFILE. The functions in CFMX for XML mainly involved reading it, not writing it, so they probably wouldn't help you much anyway. Andrew. - Original Message -

Re: cfdump [unknown type]

2004-09-09 Thread Tony Pimm
Well it's rubbish, my code that used to simply try/catch a piece of code, if there was an error, passed the cfcatch structure to a custom tag which then handles it.It's now royally broken. I've now either got to use the custom tag suggested above, or rely on cferror to handle all my specific

RE: concatenate a string

2004-09-09 Thread Pascal Peters
scriptrun[script scriptNO] = StructNew() Pascal -Original Message- From: Brant Winter [mailto:[EMAIL PROTECTED] Sent: 09 September 2004 07:25 To: CF-Talk Subject: concatenate a string Can some please tell me how to concatenate a string on CF ? cfquery datasource=obscript

RE: concatenate help please

2004-09-09 Thread Paul Vernon
try this cfset scriptNO = 1 cfset scriptrun=StructNew() cfset scriptrun.script#scriptNO# = StructNew() Paul [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

I HATE Technical Book Authors!!!!!!!!!!!!

2004-09-09 Thread Mike Kear
[rant mode on] Well not ALL technical book authors.I have been trying to get my head around a flash problem today,and I spent three valuable hours, while the deadline clock ticked away looking through books about flash, and NOT ONE of them actually MENTIONS the version of flash it's written for.

Re: I HATE Technical Book Authors!!!!!!!!!!!!

2004-09-09 Thread dave
lol but once u get going it will blow your mind on what it can do! its awesome now, just look in the help docs, lots of good tuts there heres some links to tuts to get ya going Flash: http://www.markme.com/mesh/archives/004700.cfm http://www.sephiroth.it/python/sepy.php

Re: concatenate help please

2004-09-09 Thread Brant Winter
Works great thanks [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: looping and for statements

2004-09-09 Thread Brant Winter
sounds complicated ... im not sure how you can create a new page in a pdf not really ! I have purchased the cfx_pdf custom tag - it really makes it a breeze ! www.easel2.com i will try your method later tonight. [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

Looping in CFSCRIPT

2004-09-09 Thread Andrew Dixon
Hi Everyone. Does anyone know how to loop within CFSCRIPT over a query and/or a comma list, like you can with CFLOOP? Also, does anyone konw if there is a good guide to CFSCRIPT anywhere as the MM documentation of CFSCRIPT is pretty much none existant. Thanks Andrew. [Todays Threads] [This

Re: Re: CF5.0 and XML

2004-09-09 Thread simon
If you can get your hands on a copy of Professional ColdFusion 5.0 by WROX Press, it has in-depth instructions, information, and examples of working with XML in ColdFusion 5. ~Simon If you just want to produce an XML file, that is simple. Create the XML code in a variable and write it to

Re: Looping in CFSCRIPT

2004-09-09 Thread joe velez
funny u mention that.. i was just looking today and came across this http://www.houseoffusion.com/script.ppt and http://tutorial84.easycfm.com/ you can use FOR and WHILE loops .. its in the ppt above get some caffine try to google: cfscript joe velez [Todays Threads] [This Message]

Re: Looping in CFSCRIPT

2004-09-09 Thread joe velez
i havent actually played w/ cfscript too much, but in reading about it briefly i believe its something like this for a comma del. list cfscript var=0; /* not sure if var = 0 if you dont set it first, you can probably exclude this, but set it to be safe */ while(VAR lte listlen(yourlist)) {

Re: Looping in CFSCRIPT

2004-09-09 Thread Andrew Dixon
Thanks... - Original Message - From: joe velez [EMAIL PROTECTED] Date: Thu, 09 Sep 2004 06:03:47 -0400 Subject: Re: Looping in CFSCRIPT To: CF-Talk [EMAIL PROTECTED] i havent actually played w/ cfscript too much, but in reading about it briefly i believe its something like this

CFMX and Webdav

2004-09-09 Thread Micha Schopman
CFMX has no built in webdav support, but does someone tried using webdav in other ways with CFMX? Micha Schopman Software Engineer Modern Media, Databankweg 12 M, 3821 ALAmersfoort Tel 033-4535377, Fax 033-4535388 KvK Amersfoort 39081679, Rabo 39.48.05.380 [Todays Threads] [This Message]

Re: Looping in CFSCRIPT

2004-09-09 Thread Greg Stewart
Here's my write up on using cfscript for looping over a query: http://gregs.tcias.co.uk/cold_fusion/outputting_queries_with_cfscript.php Hope this helps G On Thu, 9 Sep 2004 10:42:18 +0100, Andrew Dixon [EMAIL PROTECTED] wrote: Hi Everyone. Does anyone know how to loop within CFSCRIPT over

Re: Looping in CFSCRIPT

2004-09-09 Thread joe velez
come on G .. php??? hehe =^) -- that's for Carsten god .. you know who you are! [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: Looping in CFSCRIPT

2004-09-09 Thread Andrew Dixon
He has a point!!! - Original Message - From: joe velez [EMAIL PROTECTED] Date: Thu, 09 Sep 2004 06:20:23 -0400 Subject: Re: Looping in CFSCRIPT To: CF-Talk [EMAIL PROTECTED] come on G .. php??? hehe =^) -- that's for Carsten god .. you know who you are!

RE: Looping in CFSCRIPT

2004-09-09 Thread Pascal Peters
// list for(i = 1;i LE ListLen(list);i=i+1){ element = ListGetAt(list,i); } // query for(i = 1;i LE query.recordCount;i=i+1){ value = query.field[i]; } Pascal -Original Message- From: Andrew Dixon [mailto:[EMAIL PROTECTED] Sent: 09 September 2004 11:42 To: CF-Talk Subject:

SpeckCMS

2004-09-09 Thread Mark Woods
Hi, I noticed that during a recent thread regarding Farcry and SpeckCMS, not many people had heard of SpeckCMS (www.speckcms.com). So, I thought I'd provide a wee bit more info... Speck is an object-based open-source content management framework that was initially developed by Robin Hilliard

poll DB

2004-09-09 Thread Daniel Kessler
I'm doing a poll and determined this morning that I should use a relational DB.It's pretty basic, but it is my first one so I'd appreciate it if y'all could check out the code before I go down this path. !-- a list of polls.Write to db once for each answer and then group on display ** is this

CFToken not being set

2004-09-09 Thread Steve Logan
I have two sites, running on two separate servers (both Windows 2000 / CF 5.0) where all of a sudden cftoken isn't being set for the clients. I can certainly use something else to generate a uniqueID but my question is why all of a sudden in 2 working apps on 2 servers is this problem coming up?

Re: SpeckCMS

2004-09-09 Thread Marco Antonio C. Santos
I also know that Speck has been used by non-programmers for content management requirements (apparently www.fashion.ie was built in a weekend by someone who didn't know any CF when he started). ... www.fashion.ie looks like built in with fuseaction and static content An CF newbie don't have

Re: Indexing on Linux systempermissions?

2004-09-09 Thread Doug James
Lawrence, Let me clarify something from Pete's post. Steve Erat sent me the reply saying that the docs are vague and I did find out that Verity works on our installation of RH 2.1 AS. There is a hotfix that you know about that will get Verity working on most, if not all, distros. BUT, yes you

Re: Looping in CFSCRIPT

2004-09-09 Thread Doug James
Here is a starting point. http://livedocs.macromedia.com/coldfusion/6.1/htmldocs/cfscript.htm Doug Andrew Dixon wrote: Hi Everyone. Does anyone know how to loop within CFSCRIPT over a query and/or a comma list, like you can with CFLOOP? Also, does anyone konw if there is a good guide to

Re: Hi

2004-09-09 Thread Thomas Chiverton
On Wednesday 08 Sep 2004 19:33 pm, Asim Manzur wrote: Is there anyway that the file would be created on monthly basis automatically/??? Of course, logrotate (if your system has it), or use one of the methods in http://httpd.apache.org/docs/logs.html#rotation -- Tom Chiverton Advanced

Re: Looping in CFSCRIPT

2004-09-09 Thread Greg Stewart
I know, I know... :) >From a time before BlueDragon free version was around, I am actually in the process of re-building the site to use cfml and Mach-ii as the framework. Still no harm in trying out PHP, it has a very rich feature set... G On Thu, 9 Sep 2004 11:31:26 +0100, Andrew Dixon

anyone RHCE?

2004-09-09 Thread joe velez
anyone RHCE? just got a simple quick q to post private or here thanks joe velez [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: CFLAP and Time Stamp

2004-09-09 Thread Doug James
James, I have not had the pleasure of working with SunONE LDAP but here is a date parsing function that I wrote to work with SunONE Calendar. If you have any questions about it or suggestions for improvement let me know. Doug !--- parseCalDateTime takes an ISO8601 datetime format

Re: I HATE Technical Book Authors!!!!!!!!!!!!

2004-09-09 Thread Daniel Farmer
I actually prefer the now dead Adobe Livemotion 2.0 to flash. I didn't even need to read the manuals to create linked rollovers... it had a superior interface and scripting elemets imo. Too bad Adobe didn't make enough off it. now I'm left with dead software. [Todays Threads] [This Message]

Re: poll DB

2004-09-09 Thread Greg Morphis
you may also want to throw in a voted by and record their ip into it so they cant keep voting. On Thu, 9 Sep 2004 07:38:38 -0400, Daniel Kessler [EMAIL PROTECTED] wrote: I'm doing a poll and determined this morning that I should use a relational DB.It's pretty basic, but it is my first one so

Re: anyone RHCE?

2004-09-09 Thread joe velez
i, too, would like to become rhce, as soon as time and $ allow. ok its probably very easy for you guys... how do you create a new ftp user from the command line? i looked all over rh, some other forums, and only found 1 useful post, but it was in the GUI which is fine since im developing on my

Re: poll DB

2004-09-09 Thread daniel kessler
you may also want to throw in a voted by and record their ip into it so they cant keep voting. I thought of doing that, but it would exclude community computers and since many of our audience is low-income, alot of their access is community-oriented. So otherwise, I'm doing the right thing and

Re: RDS Server has stopped working...

2004-09-09 Thread Dan O'Keefe
Is this development box on your local network? Did the RDS password change? Dan - Original Message - From: Andrew Dixon [EMAIL PROTECTED] Date: Wed, 8 Sep 2004 22:44:13 +0100 Subject: Re: RDS Server has stopped working... To: CF-Talk [EMAIL PROTECTED] Any got any ideas? It is become a

Re: SpeckCMS

2004-09-09 Thread Mark Woods
I also know that Speck has been used by non-programmers for content management requirements (apparently www.fashion.ie was built in a weekend by someone who didn't know any CF when he started). ... www.fashion.ie looks like built in with fuseaction and static content An CF newbie don't have

Re: anyone RHCE?

2004-09-09 Thread John Beynon
if you need to do linux stuff remotely and don't like command line stuff just install Webmin, it's great. jb. On Thu, 09 Sep 2004 09:04:48 -0400, joe velez [EMAIL PROTECTED] wrote: i, too, would like to become rhce, as soon as time and $ allow. ok its probably very easy for you guys...

Re: script app

2004-09-09 Thread Claude Schneegans
No one is answering any of my questions so I have to assume that I am making them too long Or too hard? -- ___ REUSE CODE! Use custom tags; See http://www.contentbox.com/claude/customtags/tagstore.cfm (Please send any spam to this address: [EMAIL

Re: anyone RHCE?

2004-09-09 Thread joe velez
thanks, i'll consider webmin. can't hurt :) i dont mind the command line stuff.. it's different and kinda fun. i just dont know much at all, but im learning slwly. jv [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: anyone RHCE?

2004-09-09 Thread Chris Johnston
On Thu, 09 Sep 2004 09:04:48 -0400, joe velez [EMAIL PROTECTED] wrote: i, too, would like to become rhce, as soon as time and $ allow. ok its probably very easy for you guys... how do you create a new ftp user from the command line? i looked all over rh, some other forums, and only found

Re: RDS Server has stopped working...

2004-09-09 Thread Andrew Dixon
It is on the local network and no the password has not changed. If the password has changed it wouldn't work via Windows Explorer I would guess. Any ideas? Andrew. - Original Message - From: Dan O'Keefe [EMAIL PROTECTED] Date: Thu, 9 Sep 2004 09:12:47 -0400 Subject: Re: RDS Server has

Re: anyone RHCE?

2004-09-09 Thread joe velez
well i did this first #rpm -q wu-ftpd anonftp so now what? :) [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

RE: script app

2004-09-09 Thread Ewok
Seems to me that people spent a lot of time answering your question that started out as ~escaping “ character~, namely Pascal Then Pascal again told you how to use a UDF Then, guess what, Pascal again when he fixed your array looping problem. I think your questions (plural) are being answered

Re: anyone RHCE?

2004-09-09 Thread Chris Johnston
On Thu, 09 Sep 2004 09:37:12 -0400, joe velez [EMAIL PROTECTED] wrote: well i did this first #rpm -q wu-ftpd anonftp so now what? :) A quick search on Google produced this document. http://www.wu-ftpd.org/HOWTO/guest.HOWTO >From the looks of it, it should contain everything you need. --

Re: I HATE Technical Book Authors!!!!!!!!!!!!

2004-09-09 Thread S . Isaac Dealey
I actually prefer the now dead Adobe Livemotion 2.0 to flash. I didn't even need to read the manuals to create linked rollovers... it had a superior interface and scripting elemets imo. Too bad Adobe didn't make enough off it. now I'm left with dead software. I'd been told that the IDE (or

Re: poll DB

2004-09-09 Thread Dwayne Cole
I'm also working on a poll systems and I decided to keep the number for each option in the same table as the option and just increment the value for example id_poll (fk) id_poll_option (pk) poll_option poll_option_description poll_option_votes if you are going to put the votes in a seperate

date difference (DateDiff) question?

2004-09-09 Thread cf coder
Hello everybody, I'm working on this script to get the date difference between two dates in minutes. After doing that; I want to then deduct/subtract the value returned by the datediff function from another date value. Here is what I'm trying to do: Reading the two date values from a table:

SQL books

2004-09-09 Thread George Abraham
Hi all, While we are on the rant about technical book authors, anybody have any suggestions for books on SQL? Preferably not beginner stuff, but more intermediate. Most of my queries are so half-assed because I cannot understand or do not know that some things can be better done. TIA, George

Re: SQL books

2004-09-09 Thread Massimo Foti
While we are on the rant about technical book authors, anybody have any suggestions for books on SQL? Preferably not beginner stuff, but more intermediate. Most of my queries are so half-assed because I cannot understand or do not know that some things can be better done. This one is very

RE: SQL books

2004-09-09 Thread Tangorre, Michael
I like the T-SQL book from O'Reilly... And then I like to read all the Books OnLine for SQL server and the MSDN website! Michael T. Tangorre From: George Abraham [mailto:[EMAIL PROTECTED] While we are on the rant about technical book authors, anybody have any suggestions for books on SQL?

Re: SQL books

2004-09-09 Thread Damien McKenna
Teach Yourself SQL in 10 Minutes, Third Edition by Ben Forte.Costs about $10-15.Well worth it.After that get something specific to your database. -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 Nothing endures but change. -

Re: SQL books

2004-09-09 Thread Donna French
Same here on my SQL queries - and I learn better from example rather than page after page of explanation. - Original Message - From: Tangorre, Michael [EMAIL PROTECTED] Date: Thu, 9 Sep 2004 10:09:09 -0400 Subject: RE: SQL books To: CF-Talk [EMAIL PROTECTED] I like the T-SQL book from

Re: cfdump [unknown type]

2004-09-09 Thread Mike Chabot
Tony, This issue has already been discussed a few times on this list. You can use the search engine to find people's solutions. My solution was to code my own CFDUMP tag, which is 90% the same as the original CFDUMP, but has special handling for CFCATCH. The CFMX6.1 updater includes a hotfix which

Folder Permission

2004-09-09 Thread Tangorre, Michael
Is there anyway using ColdFusion to check if a person has access to a specific folder on the webserver. Our security model is strucutred around ActiveDirectory so the users network ID, email, alias, etc is all available, and I am wondering if there is a way to say... if user has permissions to

Re: SQL books

2004-09-09 Thread George Abraham
I found a book on Database Design For Mere Mortals on Safari which kind of helps too. Same author as the one of the book that Massimo suggested (well, at least one of the authors). As far as going RDBMS specific, right now most of my work is on SQL Server, but I have to say sometimes the Books

Re: SQL books

2004-09-09 Thread Massimo Foti
I found a book on Database Design For Mere Mortals on Safari which kind of helps too. Same author as the one of the book that Massimo suggested (well, at least one of the authors). That's a great book on database design. The one I suggested is more focused on SQL as a language As far as

Re: I HATE Technical Book Authors!!!!!!!!!!!!

2004-09-09 Thread Dick Applebaum
Another option is XUL. It only works with modernbrowseerv (FF, Mozilla) It is mainly XML with some _javascript_ A little verbose (the XML) But doesn't take the CPU resources that Flash does (even when idle) It is very fast expanding tree menus etc. Dick On Sep 9, 2004, at 6:44 AM, S. Isaac

RE: RDS Server has stopped working...

2004-09-09 Thread Mark A Kruger
Make sure the service is running and make sure that you have access to the /cfide/ directory from the host or root you are working from. In other words, if you are using 10.1.1.1 as the host, then 10.1.1.1/cfide/ must be accessible to your browser. You can disallow anonymous access to that

Re: SQL books

2004-09-09 Thread Dick Applebaum
I like Mastering SQL by Martin Gruber -- not on Safari, tho :( Dick On Sep 9, 2004, at 6:58 AM, George Abraham wrote: Hi all, While we are on the rant about technical book authors, anybody have any suggestions for books on SQL? Preferably not beginner stuff, but more intermediate. Most of my

RE: (I guess) Local App

2004-09-09 Thread Patrick McGeehan
Dick, I think the technology is pretty nifty and I didn't mean to suggest that it couldn't work.For many of the reasons Dave gave and my personal experience with access I thought that doing something quick and dirty even using access wizards would be an easier solution. Dave, Thanks for

Re: RegEx Problem Trying to Use Matched Text

2004-09-09 Thread Ben Doom
Sorry I didn't get back to this.I left early yesterday -- injury time. Anyway, Jeff already gave a good rundown of the classes available to you, so I'll just give an example. If you were searching for a simplified version of an email address like [EMAIL PROTECTED] you might look for

Re: RDS Server has stopped working...

2004-09-09 Thread Andrew Dixon
Yeah, that works fine. I get a directory lists. Security is not a problem as it is only a local development server. What files does it use in this directory anyway? Andrew. - Original Message - From: Mark A Kruger [EMAIL PROTECTED] Date: Thu, 9 Sep 2004 09:30:33 -0500 Subject: RE: RDS

Re: (I guess) Local App

2004-09-09 Thread Greg Morphis
Thanks again for all the input people. If nothing else it lets me broaden my horizon with a few new skills. On Thu, 9 Sep 2004 10:38:40 -0400, Patrick McGeehan [EMAIL PROTECTED] wrote: Dick, I think the technology is pretty nifty and I didn't mean to suggest that it couldn't work.For many of

RE: date difference (DateDiff) question?

2004-09-09 Thread Cornillon, Matthieu (Consultant)
cfset timeCallPlacedOnHold = queryTmp.HoldDateTime cfset timeOnHoldReleased = queryTmp.ReleasedDateTime For some reason the dates retuned are in this format: Ex: 2004-09-08 12:28:56.0 I can't understand why it adds the .0 after the time when the value stored in the database is 2004-09-08

RE: RDS Server has stopped working...

2004-09-09 Thread Dave Watts
Yeah, that works fine. I get a directory lists. Security is not a problem as it is only a local development server. What files does it use in this directory anyway? It doesn't actually use any files. An RDS client simply sends HTTP requests to /CFIDE/Main/ide.cfm, and in many cases it

RE: CFMX and Webdav

2004-09-09 Thread Dave Watts
CFMX has no built in webdav support, but does someone tried using webdav in other ways with CFMX? I'm not sure what you mean. You can enable WebDAV on the web server on which CFMX is installed, of course. Do you mean using CFMX as a WebDAV client? You can do that too, although you'll need your

RE: Comparing two records within the query

2004-09-09 Thread Cornillon, Matthieu (Consultant)
Another option is to do a self-join. This works, though I am not getting all rows returned and I haven't quite figured why yet.I hate to rely on the titles being exactly the same.I have data where one title contains the words DVD while the VHS version doesn't. Unfortunately, you are

RE: cfm flex

2004-09-09 Thread Dave Watts
anyone have cfmx flex installed on a dev machine? will it install on the stand alone server or do u need to have it on a jrun server? I seem to recalling a blog post about installing Flex on an existing JRun instance already running CFMX, including the one provided by standalone CFMX

RE: (I guess) Local App

2004-09-09 Thread Dave Watts
Honest question -- no hidden agenda: Can you use Flash Remoting without being connected to the Internet? No, but you can use it when you are, and use local shared objects when you aren't. This would be roughly analogous to the Pocket PC example I mentioned, using SQL Server CE for local

RE: (I guess) Local App

2004-09-09 Thread Dave Watts
But, Dave, the original poster was looking for a programming solution, quote: Im guessing my only option would be to build something in Java, VB, ASP or something CFML can be the something! Well, sure! X86 assembly could be the something, too, but I wouldn't recommend it! Dave Watts,

RE: RDS Server has stopped working...

2004-09-09 Thread Mark W. Breneman
While we are on this topic, about 9 months ago I ran across a RDS error that would pop up a please insert disk in to the A: drive error. The rds connection would not fully connect until the insert disk message was dismissed. (I also am guess that this request held open a CF worker thread. If I

Re: RE: cfm flex

2004-09-09 Thread simon
you certainly can do this - you need to drop a few Flex files into the CFUSION application and modify the deployment descriptors.I gave a presentation on this at the London CFUG a little while ago... you can take a look at my slides at

CFCONTENT Mac IE 5.1

2004-09-09 Thread Bryan Stevenson
Hey All, Some Mac IE 5.1 users are having issues seeing images that are called from a non-web accessibnle directory using CFCONTENT. Code like so: image tag: img src=""> # contents of show_image.cfm: cfcontent type=image file=#FullNonWebAccessibleFilePath# Has anybody else seen this

Re: cfoutput -- group and maxrows problem

2004-09-09 Thread C . S . A . Wilkens
Thanks for all the tips! I had thought about using my own counter, but thought it wouldn't work with pagination tools like cf_recordcount. Of course, they can be work together! It's up and running like a charm now. For what it's worth, here's how I integrated my homemade counter with the

Re: I HATE Technical Book Authors!!!!!!!!!!!!

2004-09-09 Thread S . Isaac Dealey
mmm... kay... XUL was created by the folks at Mozilla specifically for the purpose of defining the user-interface for their newer browsers, hence the need for Moz. or FF. It's not so much modern browsers as it is Mozilla browsers - although I wouldn't be surprised to see it expand to be

RE: RDS Server has stopped working...

2004-09-09 Thread Dave Watts
While we are on this topic, about 9 months ago I ran across a RDS error that would pop up a please insert disk in to the A: drive error. The rds connection would not fully connect until the insert disk message was dismissed. (I also am guess that this request held open a CF worker thread.

SOLVED: Re: CFCONTENT Mac IE 5.1

2004-09-09 Thread Bryan Stevenson
and as usual...I solve my own dang problem after posting ;-) I should have used image/jpeg instead of image in the type attribute of CFCONTENTDOH! Cheers Bryan Stevenson B.Comm. VP Director of E-Commerce Development Electric Edge Systems Group Inc. phone: 250.480.0642 fax: 250.480.1264

RE: RDS Server has stopped working...

2004-09-09 Thread Mark W. Breneman
Thanks Dave, If it was my server I would, but I just can't bring my self to tell the client to leave a floppy disk in the server. Mark W. Breneman -Cold Fusion Developer -Network Administrator Vivid Media [EMAIL PROTECTED] www.vividmedia.com http://www.vividmedia.com/ 608.270.9770 _

BlackStone Beta 1

2004-09-09 Thread Asim Manzur
did someone knows that BlackStone Beta 1 was out last night?? Its preety cool, I am playing with that now, and it feels like I am working on FLEX with coldfusion. it has preety cool cfform features, pdf, report generation, flash paper and alot more. really its amazing product. Just my

RE: Folder Permission

2004-09-09 Thread Patrick McGeehan
Mike, I think the easiest way to do would be to do cfdirectory (action = ""> that is enclosed in a cfimpersonate tag.If the record count is 0 then the user doesn't have permissions.if it is 2 or more (entries for '.' and '..') then they have at least read permissions.Remember, if you haven't

Re: BlackStone Beta 1

2004-09-09 Thread Barney Boisvert
Did you bother to read the NDA? On Thu, 09 Sep 2004 12:47:49 -0400, Asim Manzur [EMAIL PROTECTED] wrote: did someone knows that BlackStone Beta 1 was out last night?? Its preety cool, I am playing with that now, and it feels like I am working on FLEX with coldfusion. it has preety cool

RE: RDS Server has stopped working...

2004-09-09 Thread Dave Watts
If it was my server I would, but I just can't bring my self to tell the client to leave a floppy disk in the server. No, I agree, it's a terrible solution. What you might consider doing, instead, is running CF as a user who doesn't have rights to removable media. If you're using CF 5 or

Re: BlackStone Beta 1

2004-09-09 Thread Asim Manzur
sorry. Could admin please delete this post. please please please. Did you bother to read the NDA? On Thu, 09 Sep 2004 12:47:49 -0400, Asim Manzur [EMAIL PROTECTED] wrote: -- Barney Boisvert [EMAIL PROTECTED] 360.319.6145 http://www.barneyb.com [Todays Threads] [This Message]

RE: BlackStone Beta 1

2004-09-09 Thread Samuel Neff
maybe your thoughts should be around N.. D.. A... :-) Sam -- Blog:http://www.rewindlife.com Chart: http://www.blinex.com/products/charting -- -Original Message- From: Asim Manzur [mailto:[EMAIL

RE: BlackStone Beta 1

2004-09-09 Thread Tangorre, Michael
Nope, jail time. :-) Michael T. Tangorre -Original Message- From: Asim Manzur [mailto:[EMAIL PROTECTED] Sent: Thursday, September 09, 2004 1:00 PM To: CF-Talk Subject: Re: BlackStone Beta 1 sorry. Could admin please delete this post. please please please. Did you

Re: BlackStone Beta 1

2004-09-09 Thread Adrocknaphobia
I'll delete the post is you post a link to the install executable. . im joking. please dont do that. -Adam - Original Message - From: Asim Manzur [EMAIL PROTECTED] Date: Thu, 09 Sep 2004 12:59:49 -0400 Subject: Re: BlackStone Beta 1 To: CF-Talk [EMAIL PROTECTED] sorry. Could

Re: BlackStone Beta 1

2004-09-09 Thread Michael Dinowitz
Just remember the NDA and don't make people jealous of your access. :) As for those not on the beta, I'm going to find out what the url is for people to request access to it. MM has stated that this beta cycle will have more people on it as they want to have heavy testing going on. did someone

Re: BlackStone Beta 1

2004-09-09 Thread Asim Manzur
:-( I'll delete the post is you post a link to the install executable. . im joking. please dont do that. -Adam - Original Message - From: Asim Manzur [EMAIL PROTECTED] Date: Thu, 09 Sep 2004 12:59:49 -0400 Subject: Re: BlackStone Beta 1 To: CF-Talk [EMAIL PROTECTED] sorry.

Re: BlackStone Beta 1

2004-09-09 Thread Michael Dinowitz
In truth, the answer is kind of no. I can delete this post, but it's already been replicated to at least 6 other archives of the list and is in everyone's mail box. I would not worry much as it was a mistake and you were just showing your enthusiasm. sorry. Could admin please delete this post.

RE: Folder Permission

2004-09-09 Thread Dave Watts
I think the easiest way to do would be to do cfdirectory (action = "" that is enclosed in a cfimpersonate tag.If the record count is 0 then the user doesn't have permissions. if it is 2 or more (entries for '.' and '..') then they have at least read permissions. Remember, if you haven't

Re: BlackStone Beta 1

2004-09-09 Thread Lawrence Ng
this one I think...? http://www.macromedia.com/support/programs/beta.html [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: BlackStone Beta 1

2004-09-09 Thread Adrocknaphobia
:-D turn that frown upside down. think all the nerd envy you are getting right now. -adam - Original Message - From: Asim Manzur [EMAIL PROTECTED] Date: Thu, 09 Sep 2004 13:07:40 -0400 Subject: Re: BlackStone Beta 1 To: CF-Talk [EMAIL PROTECTED] :-( I'll delete the post is you post a

Re: BlackStone Beta 1

2004-09-09 Thread Adam Haskell
Not that it matters at this point but in a beta program I was in it was clear we were not supposed to reveal we were even in beta..is Macromedia the same? Or can you atleast say hey I am in beta. Even though that does just open you up to emails asking about it Adam H On Thu, 09 Sep 2004

SQL calculating question

2004-09-09 Thread Eric Creese
select10/20 * 12= 0 select12 * 10/20= 6 Both calculations are correct in theory. Unfortunately SQL does not deal well with decimals. If you divide a lesser number with greater number it gives a values less than 0 which SQL rounds to its nearest whole number and so you get ZERO, which is

  1   2   3   >