RE: apostrophies troubles

2000-07-05 Thread Russell, Bonnie
It has the preservesinglequotes as the first try to fix the problem, then the replacenocase as the second try to fix it. Since the preservesinglequotes isn't hurting anything, I left them in. Education is an input box (text) and description and experience are text area's. Thanks Bonnie

Re: CF Archives - where are they now?

2000-07-05 Thread Brett Payne-Rhodes
Chris, I think this is it... http://www.mail-archive.com/cf-talk@houseoffusion.com/ Yep, just checked, your message was top of the archive. :) Brett Payne-Rhodes B) Chris Carpenter wrote: Hi everyone, I remember a few weeks/months ago someone posted the URL of the archives now that

Off Topic - programmers will relate

2000-07-05 Thread Russell, Bonnie
My boss just put this article on my desk, it's enjoyable reading for any web developer http://www.internetworldnews.com/article_bot.asp?inc=070100/7.01UnderDeviss ue=7.01 -- Archives:

CFoutput's group by...

2000-07-05 Thread Sean Renet
I have a table, that is grouped by a column called "displayname". I want to have the repeating data in columns of 2. Normally I would do this using startrow and maxrows. However inside of a nested cfoutput it appears you cannot do that. This is close, but it gives me the same data twice, once

Re: Off Topic - programmers will relate

2000-07-05 Thread Dick Applebaum
Yea, Verily... At 9:42 AM -0400 7/5/2000, Russell, Bonnie wrote: My boss just put this article on my desk, it's enjoyable reading for any web developer http://www.internetworldnews.com/article_bot.asp?inc=070100/7.01UnderDeviss ue=7.01

Re: I can't add an RDS in CFStudio 4.5.1 (FIX)

2000-07-05 Thread KungFusion
I installed Homesite 4.5 and now it works. I guess it installed some RDS components that CF Studio 4.5.1 messes up.. I no longer have the before mentioned error... I hope this helps others. I think it is a horrible fix since you would need a lesser grade program to get a higher grade program

RE: Content management

2000-07-05 Thread Brian Peddle
It looks like this doesnt run on an NT platform??? Is that true? -Original Message- From: Brett Payne-Rhodes [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 05, 2000 8:42 AM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: Content management Seth, This might be outside the

RE: CFoutput's group by...

2000-07-05 Thread Stephen Moretti
Sean, I have a table, that is grouped by a column called "displayname". I want to have the repeating data in columns of 2. Normally I would do this using startrow and maxrows. However inside of a nested cfoutput it appears you cannot do that. Its at this point I go back to the old

DB normalization rules and multi-select

2000-07-05 Thread Perez, Bismark
Hello there, I have been wrestling with this problem with no success... I have two tables one contains the category types (category_id and description) and another all the categories assigned to a locale (locale_id and category_id)... on one of the forms I list all the categories for the user to

Project Manager/UI Designer seeks ASP startup

2000-07-05 Thread Donovan Rittenbach
I am a talented web applications developer with extensive experince(over 5 years) in user interface design and digital media. My master's degree in multimedia has taken me from the world of cd's to 3d animation and for the past 2 years application design. I am looking for strongly competent

Problems with DateCompare and CFIF

2000-07-05 Thread Kurt Wiersma
I am trying to create a table which displays events for the current day and the next 6 days. I am using a query to get all the records out of the db which have start dates and/or end dates during the next 6 days. The problem that I have encountered is that I cannot seem to get the proper events

RE: limiting upload file size - test

2000-07-05 Thread lsellers
The content length for a POST is returned in the HTTP request header, and the actual data is in the body of the request. It's not only outside of CF, but it wouldn't work with standard web servers, which even for CGI applications handle all of the data before the CGI application gets the

RE: Content management

2000-07-05 Thread Steve Bernard
It might be a good idea to store the information in a db anyway. Scheduled routines could be created to write static pages using the content in the db. This would allow for easier editing, versioning, and syndication/distribution. Using static pages would require a heck of a lot of parsing and

RE: How do I read a list of employee IDs returned from a form,with checkboxes??

2000-07-05 Thread Top-Link Tech (John Ceci)
Gel, If you use checkboxes (which is the best way BTW) they will be passed to the next page upon form submission as a comma separated list, which is perfect for CF, since this is a standard CF List Format... SO, what you will do is query your database of employees with some code like the

Re: Project Manager/UI Designer seeks ASP startup

2000-07-05 Thread Kevin Schmidt
Funny? I thought this was a CF list not an employment list... - Original Message - From: "Donovan Rittenbach" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 05, 2000 10:08 AM Subject: Project Manager/UI Designer seeks ASP startup I am a talented web applications

Repost: Optimizing Win 2000 (IIS) for Warp speed with Cold Fusion.

2000-07-05 Thread Mark W. Breneman
Anyone care to share About 9 months ago I collected and posted a compiled list tips and tricks (thanks for all the info, by the way) for optimizing NT4.0(IIS) and Cold Fusion for max performance. I would like to do the same for Windows 2000 (IIS 5) and CF 4.5. Please also include any

RE: How do I read a list of employee IDs returned from a form,with checkboxes??

2000-07-05 Thread Ben Lowndes @ CW
Ok, I think you are asking a bit much as you haven't posted any code to indicate what you are trying yourself, but I'll give you a helping hand as I'm sure I did the same when I started coding! !---First do a query to get all the employees names and ID's--- CFQUERY DATASOURCE="MyDSN"

Sumitting a page with a cftree

2000-07-05 Thread Michael O Reilly
Hi all, I've been struggling with a problem for some time now and have figured out a way of solving it using HTTP_REFERER. However this CGI var is only sent when a page is "Submitted". Even though a CFTree must be within a CFForm, double-clicking on a CFTreeItem doesn't seem to cause the page to

RE: How do I read a list of employee IDs returned from a form,with checkboxes??

2000-07-05 Thread Stephen Moretti
Hey Gel.. G morning to you all :) Afternoon ;o) He wants to click a checkbox / radio button to select say..20 employees that she wants to edit. (This can be anything else beside a checkbox..doesn't matter) You need to use checkboxes. I need a way to then pull the Employee ID for these

Re: How do I read a list of employee IDs returned from a form,with checkboxes??

2000-07-05 Thread Jennifer
At 11:08 AM 7/5/00 -0400, you wrote: Hi folkses! G morning to you all :) A client wants me to return a list of Employees by Department, which may result in about 100 or so rows in a simple table. He wants to click a checkbox / radio button to select say..20 employees that she wants to edit.

Re: Repost: Optimizing Win 2000 (IIS) for Warp speed with Cold Fusion.

2000-07-05 Thread GE
Hello, If possible could you repost the optimizing info for NT/IIS/CF Server? Thanks, Nelson "Mark W. Breneman" wrote: Anyone care to share About 9 months ago I collected and posted a compiled list tips and tricks (thanks for all the info, by the way) for optimizing NT4.0(IIS) and

RE: retrieving data from multiple tables

2000-07-05 Thread Mark Warrick
You need to join the data when querying it. Check your SQL docs for the proper syntax applicable to your situation. You'll need to use a primary key which you store in the "other" table to reference back to the main table. -- Mark

RE: Importing of ASCII Files

2000-07-05 Thread Adrian Cesana
This tag will probably help out, you can use it with an INSERT or possibly UPDATE if needed. http://www.icesinc.com/nate/taggallery/SpaceDelimitedTextToQuery/SpaceDelimi tedTextToQuery.html -Adrian -Original Message- From: Randy Adkins [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

RE: Project Manager/UI Designer seeks ASP startup

2000-07-05 Thread lsellers
Subject: Re: Project Manager/UI Designer seeks ASP startup Funny? I thought this was a CF list not an employment list... And even if it was an employment list, it's a CF one, not ASP. ;-) --min -- Archives:

Re: Project Manager/UI Designer seeks ASP startup

2000-07-05 Thread Erki Esken
Funny? I thought this was a CF list not an employment list... Yeah people.. Please send your job messages to [EMAIL PROTECTED] in the future. -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To

RE: DB normalization rules and multi-select

2000-07-05 Thread Matt Rodosky
1. Create a list of current categories assigned to the locale 2. query all the categories 3. output the query, and select the category if its in the list cfoutput query="GetCategories" cfif CurrentCategories contains GetCategories.Category_ID option value="#Category_ID#"

Re: How do I read a list of employee IDs returned from a form,with checkboxes??

2000-07-05 Thread Angél Stewart
Thanks much for this solution, it works fine. However I am now encountering another error. *sigh* cfform action="EditEmployeeInfo.cfm" method="POST" enablecab="Yes" cfloop query="lookup" cfinput type="Text" name="emplid" value="#emplid#" required="No" cfinput type="Text" name="name"

Re: Project Manager/UI Designer seeks ASP startup

2000-07-05 Thread Todd Ashworth
| And even if it was an employment list, it's a CF one, not ASP. ;-) | --min I think they are referring to Application Service Provider, as opposed to Active Server Pages. :) Todd Ashworth - Original Message - From: "lsellers" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday,

RE: Measuring Click-Thrus

2000-07-05 Thread Mark Warrick
You've got it figured out. There's really no need to complicate things any further than that! ---mark -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED] Personal URL:

Re: Measuring Click-Thrus

2000-07-05 Thread Kevin Schmidt
I would append a variable on to the end of the link that they want logged that distinguishes it from the other. Then I would embed the code on the actual page that is linked to and run a CFIF to see if that variable is defined, if it is run your log if not then don't. - Original Message

RE: Project Manager/UI Designer seeks ASP startup

2000-07-05 Thread lsellers
| And even if it was an employment list, it's a CF one, not ASP. ;-) | --min I think they are referring to Application Service Provider, as opposed to Active Server Pages. :) Ah. Shows where my head is. ;-) Been staring at too much ASP and ADSI today methinks.

RE: Project Manager/UI Designer seeks ASP startup

2000-07-05 Thread Stewart McGowan
Ah the buzz word for the week :) personally i throw in a new buzz word at every meeting to see how long it takes before someone repeats it back to me :) average is about two days :) -Original Message- From: Todd Ashworth [mailto:[EMAIL PROTECTED]] Sent: 05 July 2000 17:53 To: [EMAIL

(Serialization failure) deadlocked

2000-07-05 Thread Adrian Cesana
Whats causes this type of error..? Is it lack of system resources...? The template that caused this has 2 pretty hefty queries and several smaller queries. There is no UPDATE or INSERT just lots of SELECT and COUNT. ODBC Error Code = 40001 (Serialization failure) [Microsoft][ODBC SQL Server

RE: Content management

2000-07-05 Thread Mark Warrick
I just want to add my opinion here, and that is the justification of our hourly rate as programmers. Sure, no one wants to pay standard rates for "simple" HTML changes. No one wants to pay for oil changes for their car either. And yet both HTML changes and oil changes seem fairly simple to

RE: my pre-selected select box - why won't this work?

2000-07-05 Thread Mark Warrick
Simon, My advice. Stop using CFFORM!!! For all the cool things it supposedly does for you, there's a matching set of restrictions it creates. Use standard HTML for forms. Next, refer back to the posts from last week for the same discussion. The solution is to output your company's state as

SQL Server 2000 per CPU pricing

2000-07-05 Thread Adrian Cooper
Those backending your apps with MS SQL Server might be interested in this: http://www.microsoft.com/directaccess/products/windowsdna/market.asp There has been much discussion elsewhere about this development as it comes at a time when Oracle have apparently drastically reduced their pricing for

RE: Project Manager/UI Designer seeks ASP startup

2000-07-05 Thread Jennifer
Before I worked here, the staff made a concerted effort to introduce a fake buzzword into our boss' vocabulary. They used it in conversation frequently and even set up a website talking about it. Now that the boss knows they made it up, he still uses it. At 06:09 PM 7/5/00 +0100, you wrote:

CF - Web DB by Oracle

2000-07-05 Thread Lewis Steven
This is a multi-part message in MIME format. --DAB7D9E7463600EC337A690F Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit How does Web DB by Oracle compare to Cold Fusion? --DAB7D9E7463600EC337A690F Content-Type: text/x-vcard; charset=us-ascii;

RE: DB normalization rules and multi-select

2000-07-05 Thread Perez, Bismark
Thanks Matt and Jesse, I'll try your approach... -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a

Re: (Serialization failure) deadlocked

2000-07-05 Thread Jennifer
At 10:14 AM 7/5/00 -0700, you wrote: Whats causes this type of error..? Is it lack of system resources...? The template that caused this has 2 pretty hefty queries and several smaller queries. There is no UPDATE or INSERT just lots of SELECT and COUNT. ODBC Error Code = 40001 (Serialization

RE: Mirroring files from one clustered server to another.

2000-07-05 Thread Ryan Hill
On NT, you can do it for "free" using Robocopy from the NT Resource Kit. I have batch files scheduled to run the replication job and then use blat to e-mail the log files back once a day. Although it requires a little time to setup and get it working properly, I haven't had any problems since

RE: cfx tags w/ java are NOT, I repeat NOT a pain! 8-)

2000-07-05 Thread Larry Meadors
[EMAIL PROTECTED] 07/05/00 11:22AM Both did not reload for me. I guess the only difference I can see is that your on AS/400 and I'm on NT. No, I'm not running on an as/400, I'm just using some classes to access our as/400 - I'm running on NT. Has anyone on NT been able to get the reload

Re: How do I read a list of employee IDs returned from a form,with checkboxes??

2000-07-05 Thread Angél Stewart
I really liked how the user had a sex change mid-sentence, by the way. You had me laughing out loud here as I read this. ;-P Thanks for the reply! =) hee hee -Gel Original Message - From: Jennifer [EMAIL PROTECTED] Oh, and I just read Top-Link Tech (John Ceci)'s message and I

RE: How do I read a list of employee IDs returned from a form,with checkboxes??

2000-07-05 Thread Roberts, Jesse D
To create the form page, and inside the FORM tages, simply loop through each employee returned from your query to create a separate line for each one. In side the LOOP for each query line returned, include either a checkbox, radio button, or a SELECT list by which the user can "select" an

Re: HDML / WML (Wireless programming)

2000-07-05 Thread Erki Esken
Has anyone programmed or experimented with HDML or WML? We want to start up access to our site via cell phones. I am looking for a good place to start. I am stating at http://developer.phone.com and going from their. Sign up for CF-WAP mailing list. A lot of HDML/WML/WAP talk there.

RE: SQL Server 2000 per CPU pricing

2000-07-05 Thread Steve Pierce
At $20,000 per processor for SQL Server Enterprise, the drop in Oracle pricing couldn't come soon enough. The $20K is a trial balloon price to see what happens in the press about the price hike. I have heard MS is going to drop the price, probably to $10,000 per processor. That will be in most

RE: (Serialization failure) deadlocked

2000-07-05 Thread Adrian Cesana
No but this whole template is wrapped inside of a Custom tag (http://www.icesinc.com/nate/taggallery/CF_FileWriteText/CF_FileWriteText.ht ml)that writes output to a file. Im starting to think this may have something to do with it. The template is actually not used by the outside world, its

onSessionEnd.cfm documentation

2000-07-05 Thread TDesimone
Can someone tell me where I can find documentation on the template 'onSessionEnd.cfm'? It's similar to the template 'onRequestEnd.cfm'. Thanks. -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To

Re: SQL Server 2000 per CPU pricing

2000-07-05 Thread Adrian Cooper
- Original Message - From: "Steve Pierce" [EMAIL PROTECTED] Sent: Wednesday, July 05, 2000 7:25 PM At $20,000 per processor for SQL Server Enterprise, the drop in Oracle pricing couldn't come soon enough. The $20K is a trial balloon price to see what happens in the press about the

Re: CFStudio acting weird

2000-07-05 Thread Ian Potts
Yep, happens every time when I am running win2k. no work around other than RDS that I have found. Didn't occur in win98, but upon upgrade the problem appears. I have seen this on multiple machines (3 or more), and have heard others are having the same issues. Has anyone fixed this issue yet?

Re: (Serialization failure) deadlocked

2000-07-05 Thread Eli Shechter
i believe i had a similar problem check to see if its wrapped in "cftransaction" tags, that will not allow more than one person at a time to use that query at a time -Eli- -Original Message- From: Adrian Cesana [EMAIL PROTECTED] To: [EMAIL PROTECTED] [EMAIL PROTECTED] Date: Wednesday,

Re: Importing of ASCII Files

2000-07-05 Thread Ric Smith
What type of DB? If you're using access you can just do an import specifying the delimiter, etc. If you want to do it in CF I believe this will be the direction to go: 1. read whole file into variable using cffile. 2. loop through var spliting at Chr(13) (newline). 3. spliting that line by

beginner question

2000-07-05 Thread gregg Kachel
This is a multi-part message in MIME format. --=_NextPart_000_0107_01BFE68F.100F1940 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi, this should be an easy one. I am trying to insert information into = two tables with one form, but I

Re: Snooping CFDOCS directory?

2000-07-05 Thread [EMAIL PROTECTED]
Ric, Someone was trying to exploit an old hole in the Cold Fusion application server, The Expression Evaluator. There was a fix on this with Version 4.0. Russel At 04:11 PM 7/5/2000 -0400, you wrote: I was looking through my logfile reports and found these entries which troubled me.

Fw: beginner question

2000-07-05 Thread gregg Kachel
This is a multi-part message in MIME format. --=_NextPart_000_011B_01BFE68F.C5CB2580 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Never mind, i realized now I have to use formfields =3D). I'm learning = !!! - Original Message

RE: Other CF Communities

2000-07-05 Thread Pete Freitag
There is a IRC Channel called #coldfusoion of effnet. I've only been on a couple times, but I know some people who are on quite frequently. _ Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM / NETDesign Inc. http://www.cfdev.com/ -Original Message-

Re: Importing of ASCII Files

2000-07-05 Thread Jeremy Allen
You can use the CFHTTP tag and point it at a text file. You tell it certain delimiters, and point it at the file and it transforms a (for example purposes) comme delimited file into a query automatically for you. Or you can use... excel, access etc. but the CFHTTP solution is something that can

Re: Snooping CFDOCS directory?

2000-07-05 Thread Ric Smith
Thanks. Yeah, I've got the fix that only allows localhost access I just got real nervous and wanted to make sure I wasn't missing something. I think I'll go ahead and remove the CFDOCS completely. Should I also move the CFIDE directory to something obscure? Ric Smith They were probably

Errors Errors

2000-07-05 Thread GE
Hello all, Does anyone know what a TID 756 error is? Or where I might look to find the answer? A custom cfx tag is bringing down the CF Server on a Solaris when invoked. Any thoughts ? Thanks, Nelson -- Archives:

LessWhiteSpace

2000-07-05 Thread stäs
Hello, I grabbed this tag off the gallery. Seems to work fine, but it still leaves half a page of blank lines above the html tag. Also, any way to know what kind of performance hit this may cause? Thanks. -- Archives:

RE: Other CF Communities

2000-07-05 Thread lsellers
I'm looking to gather a list of online CF communities other than CFTalk and Allaire developer forums. If you know of any please let me know. All the ones I know of would probably be under "cf forums" at http://www.intrafoundation.com/links.html. Not that many that I've seen that are...

RE: CF - Web DB by Oracle

2000-07-05 Thread James Hancock
IMHO it doesn't compare at all (apples to oranges). WebDB provides a slew of Oracle System Admin utilities and wizards for performing database-centric tasks and very basic data-entry/view type applications. It also provides for a cookie-cutter "Intranet" wizard for setting up basic information

OT: Digital Camera

2000-07-05 Thread Jake Hileman
I know you programmers/designers all have some dope digital cameras and here is what my problem is. I have about $675 to spend on a digital camera. And so far all the reviews are pointing to the Kodak DC280 with lots of extras (flash reader, 64MB card, bag, extra rechargable batteries and AC

(OT) Re: Digital Camera

2000-07-05 Thread Michael Dinowitz
I got an epson 2.1 mega pixel with a 64 meg chip for about 600. 400 for the camera, another 2 for the chip (and accessories). When I did my research, the epson and the olimpia were the two that I'd want for the money. Of course, after a month of use, I want to sell my epson and get something

Re: Other CF Communities

2000-07-05 Thread Michael Dinowitz
The same exists on undernet. There is a IRC Channel called #coldfusoion of effnet. I've only been on a couple times, but I know some people who are on quite frequently. _ Pete Freitag ([EMAIL PROTECTED]) CFDEV.COM / NETDesign Inc.

Re: onSessionEnd.cfm documentation

2000-07-05 Thread Michael Dinowitz
http://www.houseoffusion.com/cfdocs1/Allaire_Support/cf4newfeatures.htm#1000 339 Can someone tell me where I can find documentation on the template 'onSessionEnd.cfm'? It's similar to the template 'onRequestEnd.cfm'. Thanks.

Re: Snooping CFDOCS directory?

2000-07-05 Thread Gregory Harris
I think I'll go ahead and remove the CFDOCS completely. Should I also move the CFIDE directory to something obscure? Wouldn't advise it granted some templates on the CF admin are probably dependent on the directory they are located in. However what you can safely do is slap NT authentication

RE: a very specifc query...

2000-07-05 Thread miles
Can you just add the nxsteche table to the first query? nope. that creates more problems... because it further refines the query based on the fact that its looking for assigned_to to match the tech_code (the last AND)...and if it doesn't match then the query will produce nothing. I know I just

How to set a future date?

2000-07-05 Thread aslam bajaria
Is there a way to fill in a future date in a column of a table? I am familiar with the function now(). Is there a way of getting 1year, 1 month , 1 day, 1 hr, 1 min, 1 sec from now and filling it in in a column of a table? Appreciate. A.B. __

Re: Snooping CFDOCS directory?

2000-07-05 Thread KChapman
You can do what we do here. Put the cfdocs and cfide directories in a directory other than wwwroot(or what ever your root directory is) and then map them virtually. That way you can still access them through the browser but you don't have the same security problems. You can also add ip

RE: beginner question

2000-07-05 Thread Mark Warrick
Gregg, I realize you figured out the solution, but I would still advise that you refrain from using CFINSERT as a matter of habit. Your SQL skills will improve dramatically when you start using CFQUERY (and further still with stored procedures). ---mark

Re: How to set a future date?

2000-07-05 Thread KChapman
Look at the DateAdd function http://127.0.0.1/cfdocs/CFML_Language_Reference/3_ColdFusion_Functions/lr3_068.htm --K Katrina Chapman Consultant Ameriquest Mortgage

Application.cfm location costs?

2000-07-05 Thread Kevin Miller
Does anyone have any benchmarks on the overhead incurred by putting the application.cfm file at the root of the web server, 1-2 levels above the application files? We are trying to develop a site-wide framework, and we are debating whether it is better to have one application.cfm at the root

(OT - Admin) Contact Info

2000-07-05 Thread Michael Dinowitz
New business phone number for Michael Dinowitz: (212) 387-0310 Ext. 23 115 E23rd st (between Park and Lexington) NY, NY 10011 -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

Re: (OT) Re: Digital Camera

2000-07-05 Thread pan
From: Michael Dinowitz [EMAIL PROTECTED] I got an epson 2.1 mega pixel with a 64 meg chip for about 600. 400 for the camera, another 2 for the chip (and accessories). When I did my research, the epson and the olimpia were the two that I'd want for the money. Of course, after a month of

Re: How to set a future date?

2000-07-05 Thread Chris Giminez
Use the dateadd function cfset tomorrow = dateadd("d",1,now()) Tomorrow is #tomorrow# Add or subtract any date or time with the same fuction and differing parameters. -- Chris Giminez Owner - Cyber Scriber Web Site Design 831-728-4469 ICQ# 2628000 a table? I am familiar with the

shorter lines

2000-07-05 Thread jonathan hamner
I have to print out a invoice. In that if the name of the person is greater than 30 characters, the name goes over other peice of informations. Is there a way that instead of the name being displayed like: sss be displayed like:

RE: How to set a future date?

2000-07-05 Thread Roberts, Jesse D
Sure. Look up the date functions in Cold Fusion. I would use the following syntax: CreateDateTime(year, month, day, hour, minute, second) then embed the DateAdd function for each element. #CreateDateTime(DateAdd('', 1, Now()), DateAdd('M', 1, Now()), DateAdd('D', 1, Now()), DateAdd('H',

Re: Problem comparing now date with access97 date

2000-07-05 Thread Chris Giminez
Have you tried using the datecompare or datediff functions? I don't think you need to change the format of now() to get what you need. Are you trying to see if the date is before, after or the same as now()? If so, use datecompare. cfset result = datecompare("2000-11-04 00:00:00", now() , "d")

RE: Application.cfm location costs?

2000-07-05 Thread Mark Warrick
The existence of the file, itself, is nothing. It's like a millionth of a second or so. But what's IN the file, now that's where the lag could occur. The possibilities are endless here. I would recommend for a large site that you look into the Fusebox methodology. You can separate out

sigh, still not working

2000-07-05 Thread gregg Kachel
This is a multi-part message in MIME format. --=_NextPart_000_018F_01BFE6A1.41E1BF60 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hi again, still can't get the sql statement to work to add information = to the two tables. I now get a

RE: shorter lines

2000-07-05 Thread Roberts, Jesse D
Sure, use the Left, Mid, and Right functions. You should find info on them in your documentation. Jesse D. Roberts Business Process Analyst Procurement Quality Assurance Boeing - Huntington Beach, CA [EMAIL PROTECTED] Ph. 714-896-3462 Fx. 714-896-3303 -Original Message- From:

RE: sigh, still not working

2000-07-05 Thread Mark Warrick
Gregg, Please share the exact error message with us. I am speculating that you're not entering data into every field of the table when you do the INSERT and that there are fields in the table which require data. If this is the case, you can solve the problem by changing the field attributes

Re: sigh, still not working

2000-07-05 Thread Nick Slay
Greg, Check your fields on the second insert. You are passing #address# into City, #City# into State and #state# into Zip... are these correct? Also, is BoatYear a Text field? if it's not, remove the ' 's that are around the #boatyear# variable. Hope this helps a little From: "gregg

Re: SQL Server 2000 per CPU pricing

2000-07-05 Thread paul smith
Microsoft speak with forked tongue? One part of the announcement below says no CALs are required for SQL Server 2000, the table following it says otherwise. Which is correct? best, paul At 06:32 PM 7/5/00 +0100, you wrote: Those backending your apps with MS SQL Server might be interested in

Re: SQL Server 2000 per CPU pricing

2000-07-05 Thread Phil Labonte
Dumb question. I wanted to knowwhat is the best thing to do when I am on vacation for this list should I unsubscribe while I am away... or is there a temp stop feature? - Original Message - From: "paul smith" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, July 05, 2000 7:19 PM

Compiling CFX Tags

2000-07-05 Thread GE
Hello, Has anyone had any luck compiling CFX tags with CF Server 4.5.1 and the g++ compiler? thanks, Nelson -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit

RE: Application.cfm location costs?

2000-07-05 Thread Tom Rainey
Fusebox...Good. -Original Message- From: Mark Warrick [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 05, 2000 3:44 PM To: [EMAIL PROTECTED] Subject: RE: Application.cfm location costs? The existence of the file, itself, is nothing. It's like a millionth of a second or so. But

RE: Application.cfm location costs?

2000-07-05 Thread Kevin Miller
Thanks for the info, but the overhead I am curious about is that caused by the file system searching that must be done in order to traverse the directory tree and locate the application.cfm file. Thanks, Kevin [EMAIL PROTECTED] 07/05/00 03:43PM The existence of the file, itself, is nothing.

Oops Compiling CFX Tags

2000-07-05 Thread GE
Hello, Has anyone had any luck compiling CFX tags with CF Server 4.5.1 on Solaris 7 and the 2.8.1.1. g++ compiler? thanks, Nelson -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe

RE: SQL Server 2000 per CPU pricing

2000-07-05 Thread Ken Wilson
Microsoft speak with forked tongue? One part of the announcement below says no CALs are required for SQL Server 2000, the table following it says otherwise. Perhaps I took it the wrong way, but I read that to say we have two options in our quest to make Bill richer: Server Licensing -

Oracle queries - 4000 character limit . . . anything new?

2000-07-05 Thread Dan Haley
Anyone know of any new workarounds for the 4000 character limit on updates/inserts to an Oracle database, or a fix for the problem? This is the one that returns an error of "string literal too long". I am on CF4.5, Oracle8.0.5, NT4.0, native drivers. It works using a stored procedure, but my

RE: SQL Server 2000 per CPU pricing

2000-07-05 Thread Steve Pierce
No CALS with SQL Server 2000. They are switching to per CPU pricing. Again note, most people will pay more for per CPU licensing in SQL Server 2000 than SQL Server 7 CALS licensing. It will be easier to administer with per CPU licensing though. - Steve -Original Message- From: paul

While on vacation (was: Re: SQL Server 2000 per CPU pricing)

2000-07-05 Thread Jennifer
At 07:44 PM 7/5/00 -0400, you wrote: Dumb question. I wanted to knowwhat is the best thing to do when I am on vacation for this list should I unsubscribe while I am away... or is there a temp stop feature? No temp stop feature. If you really don't want the mail (or if you will be turning on a

RE: Application.cfm location costs?

2000-07-05 Thread Mark Warrick
Well, again. It's nothing. You can run a test yourself to see. Just turn on debugging in the CF Administrator. ---mark -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED] Personal

Re: Oracle queries - 4000 character limit . . . anything new?

2000-07-05 Thread Jennifer
I certainly do have that. Please hold Pasting type something like this in SQL command line: CREATE PROCEDURE update_Body(p_ID IN NUMBER, b1 IN VARCHAR2) BEGIN UPDATE TABLENAME SET BODY = b1 WHERE TABLENAME.ID = p_ID; END; In cfm page: cfstoredproc procedure="update_Body"

Re: Oracle queries - 4000 character limit . . . anything new?

2000-07-05 Thread Jennifer
Oh, I forgot. Check out cfprocparam in the 4.5 documentation. That's supposed to do this more simplistically on your end. At 04:50 PM 7/5/00 -0700, you wrote: Anyone know of any new workarounds for the 4000 character limit on updates/inserts to an Oracle database, or a fix for the problem?

RE: Oracle queries - 4000 character limit . . . anything new?

2000-07-05 Thread Dan Haley
That is about what I have, but I need to do the insert if the data doesn't exist. Which, as I sit here thinking about it, when I do the select at the beginning of the page I know if it didn't find it, and I can do the insert at that time, thereby eliminating the need to try an insert at the end

RE: Application.cfm location costs?

2000-07-05 Thread Kevin Miller
What prompted the question is the following except from the CF 4.01 docs: An Application.cfm file is first searched for in the template's current directory and then in the parent and ancestor directories by traversing up the file hierarchy. Since traversing up a file

RE: SQL Server 2000 per CPU pricing

2000-07-05 Thread paul smith
Then why does M$ say: "SQL Server 2000 Standard Edition Server License and five CALs $1,489" ? best, paul At 08:06 PM 7/5/00 -0400, you wrote: No CALS with SQL Server 2000. They are switching to per CPU pricing. Again note, most people will pay more for per CPU licensing in SQL Server 2000

  1   2   >