Re: help with IIS 5

2002-10-07 Thread David Burt
is the service started? make sure the cf application server service is started... - Original Message - From: Tim Laureska [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Sunday, October 06, 2002 9:38 AM Subject: Re: help with IIS 5 I have only 5 hairs left on my head.. I

Re: Dreamweaver MX keyboard shortcuts...

2002-10-07 Thread David Burt
THANK YOU!!! That has been SOOO annoying!!! - Original Message - From: Anthony Wong [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Saturday, October 05, 2002 2:33 PM Subject: RE: Dreamweaver MX keyboard shortcuts... David, 1) Select Edit -- Keyboard Shortcuts 2) On the

Dreamweaver MX keyboard shortcuts...

2002-10-04 Thread David Burt
Is there a way to replace the cntrl-3 short cut that does an h3 to surround whatever is highlighted with #'s? thanks David ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

MS SQL 2000 Stored Procedure Help...

2002-03-22 Thread David Burt
and the = stored proc. Please let me know what I have done wrong. =20 Thanks!! David Burt Table Structure =20 CREATE TABLE [dbo].[tblEmployees] ( [EmpID] [int] IDENTITY (1, 1) NOT NULL , [SSN] [nchar] (9) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL , [FName] [nvarchar

Re: Using CF to control Spam

2002-01-04 Thread David Burt
As to your original question, the only thing that I can come up with is to either use a web based email client that only displays emails from a trusted address or setup a rule in your email client that deletes all mail out of your inbox that isn't trusted, but storing temporary email (in process

Re: Listcontains question

2001-09-19 Thread David Burt
4,14,3,2,8,44 If the user is allowed to see page 4, then he would be able to see all pages that contains a 4, so it does not work correctly. This code should be what you need: If the user is allowed to see page 4, then he would be able to see all pages that contains a 4, so it does not work

Re: Killing a Structure

2001-09-19 Thread David Burt
Can you do an onUnload javascript to open a new window calling a cfm page to delete that user from the structure and then use javascript to close the window that was just opened. only problem I see with this is that javasript has to enabled and the user has to let the page load without closing

Re: Dynamic page creation help

2001-08-16 Thread David Burt
where is it available at? - Original Message - From: Billy Cravens [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 16, 2001 10:02 AM Subject: RE: Dynamic page creation help As long as we're recommending WYSIWYGs, if you can guarantee IE, the DHTMLEdit ActiveX

UDF in Developers Exchange

2001-08-16 Thread David Burt
Does anyone know if allaire is going to create a section in the developer's exchange for UDFs? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

Re: Form Formatting

2001-08-15 Thread David Burt
input type=text name=T1 size=20 style=font-family: French Script MT There is a Size property and you can change the font that is used in the text box by using a style. The font has to be loaded on client in order for the user to use that particular font in the text box. I only tested this in

Re: Siily question re CFDIRECTORY and downloads

2001-08-15 Thread David Burt
here is the answer to your question. I saw it in a post a couple of days ago. Yes ... you need to modify the HTTP Header Content type. If the content type is known to the browser ... it will open the associated application or whatever. If you change the content type to 'application/unknown'

Re: POP/IP

2001-08-09 Thread David Burt
I think there is a custom tag on allaire's site that will do this for you. it basically just does an nslookup if I recall. David - Original Message - From: DAVID DIXON [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, August 09, 2001 10:03 AM Subject: POP/IP Dear All

Outputing a Query In a different format Question...

2001-07-30 Thread David Burt
My problem is that I would like to change the way a query is outputed on the page in a table. A picture is worth a thousand words. see below: regular CFOUTPUT user1 user1phoneNumber user2 user2phoneNumber user3 user3phoneNumber user4 user4phoneNumber Instead of outputting it like this,

Re: Trim () in javascript?

2001-07-30 Thread David Burt
isn't supported natively, but here are some functions that will do it for you: http://www.4guysfromrolla.com/webtech/code/LTrim.shtml http://www.4guysfromrolla.com/webtech/code/RTrim.shtml http://www.4guysfromrolla.com/webtech/code/Trim.shtml - Original Message - From: Jeff Green