rules for random phrase generators

2001-05-25 Thread Rich Wild
Has anyone developed (in CF or otherwise) a random phrase or sentence generator? I'm building one at the moment just for a laugh, but I think it needs the addition of grammatical rules for the phrases to a) make more sense and b) be less clunky. By grammatical rules I mean: structure of a

Passing variables between ASP and CF

2001-05-25 Thread Dominic J. Doucet-Lorang
One our clients has a CF application that they want to be able to pass information to via some ASP pages, what would be the best way to do this? We wrote the CF application and now the client is having a 3rd party write some additions for the application and they are using ASP. In the CF

RE: Passing variables between ASP and CF

2001-05-25 Thread Paul Mone
If the datatypes are simple, you can pass them on the url or via a form post. If the datatypes are complex (arrays, structs/associative arrays) you can pass them in a WDDX packet using CFWDDX (CF side) and the WddxSerializer component (ASP side). For more info check out:

RE: Writing Custom Functions

2001-05-25 Thread Kola Oyedeji
I havent used CF5 yet but is it true that you are limited to the same tags available for use in cfscript tags? Doesn't this mean no database related functions are not possible? What exactly can you do inside UDFs? Thanks KOla -Original Message- From: Steve Reich [mailto:[EMAIL

RE: All cfm pages give error on new Windows 2000 server - resolve d!

2001-05-25 Thread Earl, George
Problem resolved! There was a hidden folder named _vti_cnf under inetpub that had strange stuff in it. Once this folder was cleared out CF began to work fine. We had a four hour four-way conference call going between Allaire/Macromedia, Microsoft, our server guy, and myself to resolve this

RE: CFGRID with list box?

2001-05-25 Thread Arden Weiss
Ya but -- Correct me if I'm wrong -- I've been told that the new CFGRID involves a five mb download the first time it is used -- which makes it's usefullnees nil for most applications -- those that still want to be functional on a 56k line. ^ / \__ (@\___ / O /

Spectra still going?

2001-05-25 Thread JoshMEagle
I heard recently that Spectra is falling by the wayside and will not be developed past v1.5, but now I'm seeing all kinds of articles on Spectra in the Fusion Authority Newsletter, CFDJ, Macromedia's site, etc. What gives? Are they cancelling it or is Spectra just such a great product that it

Re: Weird CF error that is only on Mac machines?

2001-05-25 Thread Bud
On 5/24/01, Marc J. Mataya penned: Anyone know of any form issues with Macs? I have a data editing form page that keeps breaking on Mac machines only when they submit the form to save. It happens on the server with my saving code that does CFUPDATE. For some reason, my CFIF that looks for

RE: CFGRID with list box?

2001-05-25 Thread Stewart McGowan
great for intranets though :) -Original Message- From: Arden Weiss [mailto:[EMAIL PROTECTED]] Sent: 25 May 2001 13:08 To: CF-Talk Subject: RE: CFGRID with list box? Ya but -- Correct me if I'm wrong -- I've been told that the new CFGRID involves a five mb download the first time it is

Re: CFGRID with list box?

2001-05-25 Thread Paul Hastings
* Team Allaire * Ya but -- Correct me if I'm wrong -- I've been told that the new CFGRID involves a five mb download the first time it is used -- which makes it's usefullnees nil for most applications -- those that still want to be

Downloading Files NOT in Webroot

2001-05-25 Thread CF-Talk
What is the best way to allow users to download from a collection of files that are not in the webroot but rather elsewhere on the server's file system. I don't want people to be able to snoop around the directories. Thanks in advance, Rich ~~

RE: Downloading Files NOT in Webroot

2001-05-25 Thread alistair . davidson
CFCONTENT ! -Original Message- From: CF-Talk [mailto:[EMAIL PROTECTED]] Sent: 25 May 2001 13:41 To: CF-Talk Subject: Downloading Files NOT in Webroot What is the best way to allow users to download from a collection of files that are not in the webroot but rather elsewhere on the

Re: Regular Expressions in CF Studio

2001-05-25 Thread Jon Hall
It exists already, however there is no documentation that I could find. The closest I was able to find was the the docs for WizML in studio. However there was no documentation of exact syntax. I tried using some of the functions like putting chr(32) in the find window and putting some random text

RE: Downloading Files NOT in Webroot

2001-05-25 Thread Craig Dudley
cfcontent will do that, sometimes :-) Try this code. File Link - Downloadable File: a href=dload.cfm/#file#?filename=#file# target=_new#name#/a dload.cfm -- cfif isdefined(url.file) cfcontent file=#application.docstoreroot##url.file# deletefile=No type=unknown /cfif

RE: CFGRID with list box?

2001-05-25 Thread Jason Lees (National Express)
Latest JRE Environment (1.3.1) is about 5.5MB, It is ideal for Intranets, but a problemif your Network Admin has a god complex where hes locked all machines to Normal Users Installing software, even off the intranet!!! Jason Lees National Express Email : [EMAIL PROTECTED] -Original

Re: Writing Custom Functions

2001-05-25 Thread Michael Dinowitz
* Team Allaire * Yes your limited to CFSCRIPT functionality. Yes, you can use CreateObject to connect to the ADO COM object to do DB calls on windows machines. Yes there's a library called LibADO for this. What you can do in UDF is limited

ColdFusion stoppes responding to requests

2001-05-25 Thread Alexandr
Can anybody help me to solve the problem: Sometimes ColdFusion stoppes responding to requests. Performance monitor shows running requests to 6 (maximum allowed) and doesn't lowered. During this time, Avg DB Time changes in time, but not large. Processor time in normal bounds. Server: Windows NT

RE: CFGRID with list box?

2001-05-25 Thread Angél Stewart
Arrggh..what are the chances that the new JRE will be bundled with future MS OS updates or something like that? Will IE6.0 have it standard? -Gel -Original Message- From: Jason Lees (National Express) Latest JRE Environment (1.3.1) is about 5.5MB, It is ideal for Intranets, but a

Re: ColdFusion stoppes responding to requests

2001-05-25 Thread Michael Dinowitz
* Team Allaire * It could be an infinite loop or a hung process. One thing you can do is go to the admin and set the 'log long pages' to 20 seconds or so. This should record the page in the logs. Also, read through all logs to find out

RE: CFGRID with list box?

2001-05-25 Thread Jason Lees (National Express)
Probably not, M$ seems to have gone off java since sun won its law suite against them, besides Sun is developing Java faster than M$ or Netscapecan keep up, they're currently working 1.4 at the moment which by all accounts is a major overhaul. Beside M$ is too busy trying to push its .net

CFQUERY Update......

2001-05-25 Thread JL
Hi all, I am trying to update a table using CFQUERY. I do not see any error when the query is excuted in CF and I can see the query is correct in the debug mode. But somehow the data is not updated. When I run the same query in SQL Server, the data is updated. Does anybody know why? I am

RE: CFQUERY Update......

2001-05-25 Thread Adkins, Randy
Does it return an error in CF? Some thoughts: Make sure that the ID field is a NUMBER field and the ID # is unique. -Original Message- From: JL [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 9:46 AM To: CF-Talk Subject: CFQUERY Update.. Hi all, I am trying to update a

RE: Need: Dictionary/Thesaurus

2001-05-25 Thread Pete Freitag
We are working on a CFX Thesaurus Tag, it should be out in a month or so. Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM ColdFusion Developers Resources http://www.cfdev.com/ -Original Message- From: Tony Hicks [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 7:27 PM To: CF-Talk

Homesite v.s. CF studio

2001-05-25 Thread Chad Gray
What is better? Homesite, or CF Studio? I really like CF Studio, but im wondering if Homesite will offer more options for HTML authoring. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Re: CFQUERY Update......

2001-05-25 Thread Jon Hall
I have seen this behavior before under heavy load without using transactions, but it did not happen every time like you are seeing. An update will of course execute but not change the data if the where clause does not match anything. If you can copy the same query into Query Analyzer that shows

RE: Getting current page name.

2001-05-25 Thread Mark Leder
I'm doing something similar - I want to grab a current page URL and pass that to a second page where I will display the URL from the first page. What do I use to pass the URL, I've tried the following on the first page: First page: CFSET firstpageURL = #cgi.SCRIPT_NAME# cfoutputa href

Can I retrieve the peripherals attached to a 'puter?

2001-05-25 Thread Claremont, Timothy S
Does anyone know if it is possible to query the system registry of a visitor's system in an effort to retrieve the names of peripherals attached to it? i.e. HP2000 printer, Iomega zip drive, Panasonic CD Writer... How about with VB? anyone...anyone...

RE: DNS2go

2001-05-25 Thread CFCOWBOY Blackburn
Do they have a Url ? If so where is it? From: Peter Tilbrook [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: DNS2go Date: Thu, 24 May 2001 17:09:43 +1000 It's quite good and very reliable. Its even better if you have a fast or permanent connection to

RE: Can I retrieve the peripherals attached to a 'puter?

2001-05-25 Thread Andy Ewings
Yeh I've written plenty of VB in the past to read from the registry by using various API functions, however never done it remotely as your suggestingnot sure if it can be done -Original Message- From: Claremont, Timothy S [mailto:[EMAIL PROTECTED]] Sent: 25 May 2001 15:33 To: CF-Talk

Re:OT - batch printing dynamic pages

2001-05-25 Thread Carol Bluestein
You are not alone. Me Too! But, from all I can gather, there is no code in CF that will take control of the client environment. Clientside JavaScript can bring up a print popup for the user but that is about it. No one button action will do it all. You can write to a txt, doc, csv with CFFILE

RE: DNS2go

2001-05-25 Thread Jay Brushett
dns2go.com At 02:37 PM 5/25/2001 +, you wrote: Do they have a Url ? If so where is it? From: Peter Tilbrook [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: RE: DNS2go Date: Thu, 24 May 2001 17:09:43 +1000 It's quite good and very reliable. Its

Re: Opening, Editing and Saving a text file

2001-05-25 Thread Phil Humeniuk
Hi all, I have a directory tree listing of text file in my left frame with anchors associated with each one. I would like to click on a file (link) and have that file open into the middle frame which would be edited and then saved back to the server by clicking on a button in the bottom

Re: Opening, Editing and Saving a text file

2001-05-25 Thread Philip Humeniuk
Hi all, I have a directory tree listing of text file in my left frame with anchors associated with each one. I would like to click on a file (link) and have that file open into the middle frame which would be edited and then saved back to the server by clicking on a button in the bottom

Re: Dictionary/Thesaurus

2001-05-25 Thread Steve Reich
You can buy the Mirriam Webster edition on CD... http://www.m-w.com/service/deluxc10.htm. In the mean time, try this... Include this javascript on your page and doubleclick any word this is a dictionary script, but could easily be edited for the thesaurus. Might not be what you are looking

RE: CF STudio Regular Expressions

2001-05-25 Thread Robert Everland
Thanks I am copying this to the forums to show where some refrences can be found. If you do a search in the homesite forums it comes up with a lot more help than the cfstudio forums. http://forums.allaire.com/visual/ They have all the regex help you need there to use it in studio. Robert

Re: Downloading Files NOT in Webroot

2001-05-25 Thread Steve Reich
What's wrong with creating a virtual directory...? CF-Talk [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... What is the best way to allow users to download from a collection of files that are not in the webroot but rather elsewhere on the server's file

RE: Can I retrieve the peripherals attached to a 'puter?

2001-05-25 Thread Jason Lees (National Express)
If you goto the M$ page http://windowsupdate.microsoft.com/ and click on the products Update, and it appears that this goes and searches the registry. So It is Possible, Jason Lees National Express Email : [EMAIL PROTECTED] -Original Message- From: Claremont, Timothy S

Compacting .cfm files

2001-05-25 Thread Brian Fox
Sorry if this is beating a dead horse. A search of the archives brought up similar questions, but didn't really approach a solution. I have a form that contains as many as 200 select boxes with about 6 options each and 200 more input boxes. I guess that there is some type of resource crunch

Re: [Re: Downloading Files NOT in Webroot]

2001-05-25 Thread Alex
cfcontent pointed to file NOT in webroot Steve Reich [EMAIL PROTECTED] wrote: What's wrong with creating a virtual directory...? CF-Talk [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... What is the best way to allow users to download from a collection of files

Re: [Re: Downloading Files NOT in Webroot]

2001-05-25 Thread Steve Reich
You should be able to create a virtual directory to point to any directory on the server... regardless of the webroot... at least you can with IIS. Alex [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... cfcontent pointed to file NOT in webroot Steve Reich [EMAIL

RE: CFGRID with list box? (Microsoft response to Java)

2001-05-25 Thread Mike Amburn
Microsoft released a press statement a couple of months ago that stated: 1. no future MS OS will contain the JRE. (you will have to download it yourself) 2. IE 6 will not support java. (you will have to download a 3rd party java plugin) I can try to find the statement if anyone needs it. -mike

Re: Slightly OT: Tracking Usage

2001-05-25 Thread t nelson
Thanks Steve. It worked out perfectly. Nelson Original Message Follows From: Steve Reich [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: Re: Slightly OT: Tracking Usage Date: Thu, 24 May 2001 16:25:29 -0400 Received: from [207.31.122.140] by

Re: Compacting .cfm files

2001-05-25 Thread Steve Reich
There used to be a tag called StripWhiteSpace or something like that. I just looked in the tag gallery and couldn't find it on my first pass. I would push to rethink your specs. The architecture of your page sounds like an endless pit of nightmares good luck! Steve Brian Fox [EMAIL

RE: Compacting .cfm files

2001-05-25 Thread Mark Warrick
200+ fields is far too many for any web-based form. And your problem isn't your code, it's your video card. You need to better educate your client as to the limitations of the web. ---mark Mark Warrick - Fusioneers.com Email: [EMAIL PROTECTED] Phone:

RE: Compacting .cfm files

2001-05-25 Thread Jones, Matt
I would imagine violence is the best alternative I think I would shoot the spec writer Seriously, I would demo this to someone who CAN modify the specs, using a slow machine with little ram, and a dial up connection. Call Guinness if the monstrosity works, even marginally acceptable.

RE: FTP Server

2001-05-25 Thread Costas Piliotis
War Ftp Daemon is free... Not as easy as serv-u, but the price is good... -Original Message- From: Dylan Bromby [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 24, 2001 6:23 AM To: CF-Talk Subject: RE: FTP Server i've used serv-u for 5 years. it's excellent. and DIRT cheap.

Re: Can I retrieve the peripherals attached to a 'puter?

2001-05-25 Thread Zac
Jason Lees (National Express) wrote: If you goto the M$ page http://windowsupdate.microsoft.com/ and click on the products Update, and it appears that this goes and searches the registry. So It is Possible, It uses a custom ActiveX component to do that. -- If it turns out that there is

RE: Homesite v.s. CF studio

2001-05-25 Thread Benjamin S. Rogers
The functionality present in Homesite is a subset of that which you will find in ColdFusion Studio. However, the menu bars and such are organized differently so as to be geared to more HTML oriented authoring. I would imagine that it wouldn't take much effort to customize the toolbars in Studio

Re: Compacting .cfm files

2001-05-25 Thread Keith C. Ivey
On 25 May 2001, at 8:27, Brian Fox wrote: I have a form that contains as many as 200 select boxes with about 6 options each and 200 more input boxes. I guess that there is some type of resource crunch (memory, widget handles, who knows) that causes the following error: when scrolling a

RE: All cfm pages give error on new Windows 2000 server - resolve d!

2001-05-25 Thread Braver, Ben
George, _vti_cnf is a virtual directory that Microsoft FrontPage sets up under inetput\wwwroot. If you have any sub-webs, there will be another _vti_cnf directory under each sub-web. I looked in the MS Knowledge Base to find what this directory is for, and no luck... Yet another case where

Re: Compacting .cfm files

2001-05-25 Thread Moazam Raja
Have you tested viewing this page on different machines? Try viewing it on a Mac, and on a Unix box also. This sounds like a video card driver issue, and not something to do with the form itself. -Moazam On Fri, 25 May 2001, Brian Fox wrote: I have a form that contains as many as 200 select

RE: Compacting .cfm files

2001-05-25 Thread Bryan Love
Here's a comparable question: I have a small pickup and I need to haul 42 elephants, but when I load the elephants into the pickup it scrapes on the pavement. Does anyone know of a kit I could install to stiffen up the springs? I was thinking about removing the tailgate to

RE: Conclusion? (RE: Attributes Scoped Structure?)

2001-05-25 Thread Craig Fisher
Brad- Maybe its a bug and maybe its just a bad error message. I came across this problem a while back when I had a student who was trying to build a system where some files could sometimes be called as a custom tag and sometimes as a plain template (about like you're doing). The behavior feels

RE: Compacting .cfm files

2001-05-25 Thread Jones, Matt
lmao -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 12:11 PM To: CF-Talk Subject: RE: Compacting .cfm files Here's a comparable question: I have a small pickup and I need to haul 42 elephants, but when I load the elephants

RE: Conclusion? (RE: Attributes Scoped Structure?)

2001-05-25 Thread Craig Fisher
For the heck of it I submitted this as a 5.0 bug. It was assigned issue number 26171. I'll let the list know if anything comes up. ~~ Structure your ColdFusion code with Fusebox. Get the official book at

Re: Compacting .cfm files

2001-05-25 Thread Richard Ramos
We had a similar problem here. On a Win2K machine, the page works fine; On a Win98 machine I would have the same blur problem. I have since fixed the code to meet XHTML standards (ie. all tags are in lower case, and quotation marks after all values) and now the page loads perfectly on both

RE: Compacting .cfm files

2001-05-25 Thread Lee Fuller
Now THAT'S funny! -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 10:11 AM To: CF-Talk Subject: RE: Compacting .cfm files Here's a comparable question: I have a small pickup and I need to haul 42 elephants, but when I load the

RE: Compacting .cfm files

2001-05-25 Thread Brian Fox
Whoa. Great entertainment value too. Honey, cancel that trip to Cancun. We'll just read the antics of Dr. Love. -Original Message- From: Jones, Matt [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 10:22 AM To: CF-Talk Subject: RE: Compacting .cfm files lmao

RE: Compacting .cfm files

2001-05-25 Thread Bryan Love
Ya know you COULD read my antics from Cancun... Bryan Love ACP Internet Application Developer [EMAIL PROTECTED] -Original Message- From: Brian Fox [mailto:[EMAIL PROTECTED]]

DTS from Store Procedure MSQL 7.0

2001-05-25 Thread Jim Gurfein
Is is possible to execute a DTS package from a stored procedure? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/

To Join or not to join that is the question- and if so how

2001-05-25 Thread Stephen Kellogg
Hi all, I hope everyone's having a great Friday. I have several tables. Table 1 intCandidateID intB2bSalesIDFK bunch of fields Table 2 intIndID intCandidateIDFK industryIDFK intCandIndYrs I want to be able to search Table 1 for matching data AND table 2 for a candidate with a specific industry

RE: To Join or not to join that is the question- and if so how

2001-05-25 Thread Russ Conway
Write your query using IN so it looks like this... select tblCandidates.* from {oj tblCandIndExp LEFT OUTER JOIN tblCandidates ON tblCandidates.intCandidateID = tblCandIndExp.intCandidateIDFK} where 0=0 AND tblCandIndExp.intIndustryIDFK IN (1,15) AND tblCandIndExp.intCandIndYrs IN (2,3) Order

RE: To Join or not to join that is the question- and if so how

2001-05-25 Thread Bryan Love
I'll assume that using IN is not an option because each experience field must be matched with it's corresponding years. That being said this query is not easy. You need to seperate each form field with OR and use parenthesis correctly. Try the following (it looks nasty, but trust me):

RE: To Join or not to join that is the question- and if so how

2001-05-25 Thread Mark Warrick
0=0 allows you to use AND conditions without having to worry about an initial WHERE clause. I write SQL statemetns to say that if the primary key is not zero, then which is the same thing as saying 0=0. ---mark Mark Warrick - Fusioneers.com Email:

RE: To Join or not to join that is the question- and if so how

2001-05-25 Thread Russ Conway
Alternately, you could use OR (it will likely run faster) but that might be clunky if you have too many values. select tblCandidates.* from {oj tblCandIndExp LEFT OUTER JOIN tblCandidates ON tblCandidates.intCandidateID = tblCandIndExp.intCandidateIDFK} where 0=0 AND

whitespace

2001-05-25 Thread nagesh
hi all, i really fed up with the white space which is generated in the text file by coldfusion(4.5). This happens when client(outlook) is reading the data which is in output tags and trying to write into the text(log) file. Do we have anything by which we can remove/trim the white space before

Re: whitespace

2001-05-25 Thread Bryan LaPlante
I use cf_LessWhiteSpace from the tag gallery http://devex.allaire.com/developer/gallery/info.cfm?ID=CA34784E-2830-11D4-AA 9700508B94F380method=Full - Original Message - From: nagesh [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, May 25, 2001 2:08 PM Subject: whitespace

Re: whitespace

2001-05-25 Thread Pooh Bear
just do a trim functiona round the whole output variable hehehehehhehehe From: nagesh [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: whitespace Date: Fri, 25 May 2001 15:08:50 -0400 hi all, i really fed up with the white space which is generated in the

RE: whitespace

2001-05-25 Thread Mark Warrick
There's an option in the CF 4.5 administrator under the Settings menu which strips some white space. Combine that with the CFSETTING ENABLECFOUTPUT tag and more efficient coding (for example, don't add unnecessary linebreaks in your code) and you could potentially remove all the extra

RE: whitespace

2001-05-25 Thread nagesh
Hi bryan, thanks for the response. But i used even that tag too. And i tried with option available in settings in the administrator to suppress the whitespace. Is there any otherway around to overcome this problem. Because, the textfile is going to generated by the outputs of the 3 to 4

Beta version of file upload for Ultradev

2001-05-25 Thread Massimo Foti
http://www.massimocorner.com/beta/cf.htm I know a lot of you don't like too much the way Ultradev wrote CFML code but I think many are also missing the fact that you can customize almost everything in Ultradev, including the way it writes the code... Since a file upload capability is missing

CFFILE upload and accept attribute

2001-05-25 Thread Massimo Foti
I am encountering a sort of weird problem on file upload: Seems like I am unable to set specifics mime-types but only generic ones using wildcards, see below: This works: accept=image/* (accept only images, jpg, gif etc) This doesn't: accept=image/jpg Again, this is fine:

RE: To Join or not to join that is the question- and if so how

2001-05-25 Thread Stephen Kellogg
Thanks for the help. If I'm reading this correctly, it will select someone with experience in either industry but not ONLY people who match both. industry = 10 and years = 4 OR industry = 12 and years = 8 They could have one or the other but does not require someone to meet both. Is that correct?

Re: whitespace

2001-05-25 Thread Bryan LaPlante
Could you clarify for me how you are using outlook as a client to read output from CF. I am a little confused when you say text file when talking about using outlook. What I'm hearing is you are using outlook to read a text file but I don't think that is what you are intending to say, or is it?

forms query Question

2001-05-25 Thread Mike
The more I think about this the more I think it is a mistake in my form not in in my query. Although my query may be wrong too. I have a form with a drop down to choose one nba team. A home team. form action=nba_results.cfm select name=nba_home_team

CF 5.0

2001-05-25 Thread Ann Harrell
Will there be a CF 5.0 specific list? Ann Harrell Mind like a steel trap.. Rusty and illegal in 37 states. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: To Join or not to join that is the question- and if so how

2001-05-25 Thread Bryan Love
You did read my code correctly. If you wish to select the candidate meeting ALL of criteria the query becomes even more complex because you would need to group and count the results. There are three ways I know of to accomplish this (I've demonstrated the one I think would best work for your

RE: forms query Question

2001-05-25 Thread Mike
That helps a great deal. I thought that the values was an on/off for a checkbox that is why I hadn't determined values. Thank you. Mike -Original Message- From: Mark Warrick [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 2:36 PM To: CF-Talk Subject: RE: forms query Question

[OT] Synchronizing SQL2000 and SQL7...

2001-05-25 Thread Ron Hornbaker
Sorry for the off-topic post, but we're just about to attempt to synchronize a new SQL2000 server with our existing SQL7 server across the internet, and keep them synch'ed during a colo move, and would appreciate advice from anyone who has been there/done that. Please contact me off-list at

Re: CF 5.0

2001-05-25 Thread Michael Dinowitz
* Team Allaire * No real need. CF code issues can be discussed right here on CF-Talk. Server issues like installing or the admin can go to CF-Server. The Partners, Community and other lists will take up the slack on other 5.0 issues. Will

RE: To Join or not to join that is the question- and if so how

2001-05-25 Thread Stephen Kellogg
You're brilliant. So, in a nut shell, it still pulls each individual match but then it counts the number of items in the industry list and only pulls candidates who's ID shows up that many times. I'll test this later tonight or in the AM (working on something else right now). Thanks a million.

Re: CFFILE upload and accept attribute

2001-05-25 Thread Massimo Foti
Thanks, I am going to try it, still it doesn't explain why the examples below fails: accept=image/jpg accept=text/html accept=application/msword The docs also reports: ACCEPT Optional. Use to limit what types of files will be accepted. Enter one or more MIME types, each separated by comma,

RE: CF 5.0

2001-05-25 Thread Ann Harrell
I'm ready! Let's get started! Ann -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 5:06 PM To: CF-Talk Subject: Re: CF 5.0 * Team Allaire * No real need. CF code issues can

Re: CF 5.0

2001-05-25 Thread Michael Dinowitz
* Team Allaire * To late, we've already started. Those User Defined Functions (UDF) questions the other day are all CF 5 things. If you really want to get started, go to beta.allaire.com and download the release candidate of CF 5 and start

RE: CF 5.0

2001-05-25 Thread Ann Harrell
Well.. I have the beta and until Black Tuesday I was an Allaire employee. I read beta.allaire.com everyday. Ann -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 6:12 PM To: CF-Talk Subject: Re: CF 5.0 *

RE: Strange Boolean Error

2001-05-25 Thread David Shadovitz
Dunno why you can't replicate the error, since I don't know how UserID is generated. But you should just check for (REQUEST.GetClientData.UserID GT 0) AND ... -David On Thursday, May 24, 2001 5:48 AM, Paul Smith [SMTP:[EMAIL PROTECTED]] wrote: UserID will always be provided, 0 if the user has

RE: Homesite v.s. CF studio

2001-05-25 Thread Owens, Howard
HomeSite and Studio are essentially the same and when I was teaching, I often recommended that students on a budget could get HomeSite instead of Studio. All of the CF tags are available in HS, you just need to customize your toolbars. Also, with HS you don't get the development server, the

CF with Advantage Database Server ? Anyone?

2001-05-25 Thread Pablo Varando
I am faced with a customer that is needing a coldfusion powered site, but his company uses a database I've never heard of called Advantage Database Server. It does have OLEDB and ODBC capabilities, but am unsure as if ColdFusion could handle this project. I thought I'd ask everyone here and

RE: whitespace

2001-05-25 Thread robrusher
First familiarize yourself with how CF works by reading KB articles: 14171 I recommend using CFSILENT and CFSETTING strategically where needed. I would also not use the Suppress Whitespace option in CF admin because of the extra load that it places on the server. (See paragraph four of KB

Totally OT: Serial Barcode Scanner...

2001-05-25 Thread Tony Schreiber
I don't know where else to turn (sob, cry, sigh)... I need to figure out how I can get a serial port barcode scanner to run like a keyboard wedge version on a PC? I assume I need some little app that monitors the serial port and then echoes it as keyboard input - but I can't find anything.

SQL Brain F@rt

2001-05-25 Thread Ann Harrell
I have a STATE column in a database. There are duplicate states. I want to count the states 7 MA, 3 FL, 3 IN, ect) and eventually output them to a CFGRAPH pie chart. SELECT State From databasename is as far as I've gotten. Nightie. Ann Harrell Mind like a steel trap.. Rusty and illegal in 37

RE: SQL Brain F@rt

2001-05-25 Thread tmwall
Try SELECT State, Count(State) AS StateTotal FROM databasename GROUP BY State; -Original Message- From: Ann Harrell [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 10:24 PM To: CF-Talk Subject: SQL Brain F@rt I have a STATE column in a database. There are duplicate states. I

RE: SQL Brain F@rt

2001-05-25 Thread Tony Gruen
Ann, The answer to this question will be somewhat dependent on what database your using. What db are you hitting for the information? Sql Server, Access, Oracle? Tony Gruen sfnetworks -Original Message- From: Ann Harrell [mailto:[EMAIL PROTECTED]] Sent: Friday, May 25, 2001 9:24 PM To:

RE: Strange Boolean Error

2001-05-25 Thread Paul Smith
UserID is generated from my roll-your-own client database (I don't use CFAPPLICATION), which database has UserID = 0 as its default. UserID in the client database is changed to the User's ID once they login. My client reports that the following addition of the YesNoFormat() function

RE: SQL Brain F@rt

2001-05-25 Thread Tony Gruen
Ann, I am hardly the sharpest mind on this forum but I got this working using my dev SQL Server 7 database. I created a table named 'data' and added a field named 'state'. I entered some records and the code below returned a results page that read like CA - 5, MA - 3, PA - 1. Here is the