cfqueryparam

2002-08-15 Thread Paul Giesenhagen
re not the structured query. Just curious if I am making a mistake .. I don't think it shouldn't matter. Thanks Paul Giesenhagen QuillDesign __ Structure your ColdFusion code with Fusebox. Get the of

Re: cfqueryparam

2002-08-15 Thread Paul Giesenhagen
I figured as much because you don't name your queries except for usage in ... Thanks Paul Giesenhagen QuillDesign - Original Message - From: "S. Isaac Dealey" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, August 15, 2

Re: debugging

2002-08-16 Thread Paul Giesenhagen
To take your suggestion one step further, set a session variable or cookie on your machine and wrap it the with a That way if you want to see whats going on, just authorize yourself! Paul Giesenhagen QuillDesign - Original Message - From: "Philip Arnold - ASP&quo

Re: Cfloop

2002-08-16 Thread Paul Giesenhagen
Yup, do it all the time .. are you having troubles with it? Paul Giesenhagen QuillDesign - Original Message - From: "Jim Taylor" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, August 16, 2002 12:56 PM Subject

Re: Need a CFMX development server

2002-08-16 Thread Paul Giesenhagen
Download an eval copy of CFMX from Macromedia, you can run both v5 and CFMX on the same server at the same time ... Hope this helps! Paul Giesenhagen QuillDesign - Original Message - From: "Bud" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent:

Re: Need a CFMX development server

2002-08-16 Thread Paul Giesenhagen
Yup, should be fine, CFMX has it's own web server. Paul Giesenhagen QuillDesign - Original Message - From: "Bud" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, August 16, 2002 4:36 PM Subject: Re: Need a CFMX development se

Re: Beginner's question - entering text with breaks

2002-08-17 Thread Paul Giesenhagen
#ParagraphFormat(form.lyrics)# that should do the trick for ya! Paul Giesenhagen QuillDesign - Original Message - From: "Mitko Gerensky-Greene" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Saturday, August 17, 2002 8:42 PM Subject: Beg

Re: Beginner's question - entering text with breaks

2002-08-17 Thread Paul Giesenhagen
You will want to do it when inserting... INSERT INTO table (id,lyrics) VALUES(1,'#ParagraphFormat(form.lyrics)#') Paul Giesenhagen QuillDesign - Original Message - From: "Mitko Gerensky-Greene" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAI

Re: Beginner's question - entering text with breaks

2002-08-17 Thread Paul Giesenhagen
there. You will need one that uses the DLLS from Microsoft. They usually preserve MS Word formatting. Now, there may be other solutions that I am not aware of .. this list will probably let you know what they are. Paul Giesenhagen QuillD

Re: Beginner's question - entering text with breaks

2002-08-17 Thread Paul Giesenhagen
Hmm... by setting it to a variable, that will take the Word page breaks into account? Why would it do that on a set variable but not on a form variable? Paul Giesenhagen QuillDesign - Original Message - From: "Tony Weeg" <[EMAIL PROTECTED]> To: "CF-Talk"

Re: Beginner's question - entering text with breaks

2002-08-17 Thread Paul Giesenhagen
done it on output since > > I prefer to > > keep my database data "pure". > > > > -Kevin > > > > > -Original Message- > > > From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] > > > Sent: Saturday, August 17, 2002 8:07 PM &g

Re: Best Practices

2002-08-18 Thread Paul Giesenhagen
We are talking about CFMX right? Not CF5, in CF5, is faster empty or not ...right? Paul Giesenhagen QuillDesign > I noticed something odd in the test code below... > > On Friday, August 16, 2002, at 07:38 , Sean A Corfield wrote: > > On Friday, August 16, 2002, at 12:25 , Doug

Re: Using CFSWITCH and CFCASE to evaluate URL parameters

2002-08-19 Thread Paul Giesenhagen
Paul Giesenhagen QuillDesign - Original Message - From: "Yexley Robert D Contr Det 1 AFRL/WSI" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, August 19, 2002 10:16 AM Subject: Using CFSWITCH and C

Re: Using CFSWITCH and CFCASE to evaluate URL parameters

2002-08-19 Thread Paul Giesenhagen
Hmm.. I copied your code and ran it in a test page and it ran just fine -- page=1 or page=2, it works just fine ... Is that sample information below or the actual code and links? Paul Giesenhagen QuillDesign > OK, I tried your suggestion, and for some reason, it's not working. I do

Re: Why is this query not working in Access??

2002-08-19 Thread Paul Giesenhagen
Looks like you have single quotes around a date field '#date#' take the quotes out ... You do not put quotes around dates and numbers Paul Giesenhagen QuillDesign - Original Message - From: "Bob Wilson" <[EMAIL PROTECTED]> To: "CF-Talk" <[EM

Re: Building a sitetracker

2002-08-20 Thread Paul Giesenhagen
By sticking it in the Application.cfm you are restricking your siteTracker to CF pages only .. what about .html, .asp pages? Just a thought of .02 Paul Giesenhagen QuillDesign > Just a thought -- why bother with using javascript and and iframe? stick the call to test.cfm in

Recursive Custom Tag

2002-08-20 Thread Paul Giesenhagen
ble line?! == SELECT f.owner, f.sub_object, d.id, d.title FROM fusionTable f, #attributes.table# d WHERE f.sub_object = d.id AND f.owner = AND f.type = 'department' ORDER BY d.title, f.sub_object Thank yo

RESOLVED: Re: Recursive Custom Tag

2002-08-20 Thread Paul Giesenhagen
You get the cookie today ... sheesh ... I looked and looked through that thing and welp that was the problem. I removed: Thanks for opening my eyes ... as I was reading it went clear ... funny how that works! Paul Giesenhagen QuillDesign > > > > > > > > &g

Re: refresh and back buttom

2002-08-20 Thread Paul Giesenhagen
Relocate them after the information has been submitted .. Page Form stuff --> Page Insert stuff --Locate to page thank you ---> Thank You - Original Message - From: "Tim Do" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, August 20, 2002 3:34 PM Subject: RE: refres

Re: mysql EXPLAIN [tablename] in CFQUERY?

2002-08-20 Thread Paul Giesenhagen
Does your situtation look something like this? Are you putting the query="EXPLAIN" in the loop? SQL Stuff #data# Paul Giesenhagen QuillDesign > I am trying to return the result set of an EXPLAIN tablename command from > a mysql database. I can query the table directly

Re: mysql EXPLAIN [tablename] in CFQUERY?

2002-08-20 Thread Paul Giesenhagen
th the above example, you can make sure that everything is being dynamically populated. Paul Giesenhagen QuillDesign - Original Message - From: "Lon Lentz" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, August 20, 2002 4:40 PM Subject

Re: Best Database practices

2002-08-21 Thread Paul Giesenhagen
There are a great many books ... I would layout a product table that has the basics for all the products productTable productId, Title, image, sku, price optionTable optionId, optionTitle optionValues optionValueId, optionId, optionValue, additionalPrice That is just for your product and optio

Re: Best Database practices

2002-08-21 Thread Paul Giesenhagen
Also, here is a GREAT article on database normalization .. it should help you out ... it can get crazy ... a good balance between normalization and realization is good :) http://www.phpbuilder.com/columns/barry2731.php3 Paul Giesenhagen QuillDesign > There are a great many books ...

Re: Best Database practices

2002-08-21 Thread Paul Giesenhagen
s worked really well for us. Hope this helps and makes sense :) Paul Giesenhagen QuillDesign - Original Message - From: "Jon Hall" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, August 21, 2002 3:55 PM Subject: Re: Best Database prac

Re: Best Database practices

2002-08-21 Thread Paul Giesenhagen
Jon, With the method you are describing, your product is stuck in one category .. if you seperate your heirarchy from your products, you can reuse your product information over and over in multiple places... just a thought. Paul Giesenhagen QuillDesign > I would agree that is the best

Many or Minimal CFOUTPUTS

2002-08-26 Thread Paul Giesenhagen
outputs. I know that it probably makes little difference if much at all, but what do you find yourselves doing? Paul Giesenhagen QuillDesign __ Your ad could be here. Monies from ads go to support these lists and provide more

Re: Many or Minimal CFOUTPUTS

2002-08-26 Thread Paul Giesenhagen
x27;t think that if there was a difference it would be very great. Thanks for some interesting input! Paul Giesenhagen QuillDesign __ This list and all House of Fusion resources hosted by CFHosting.com. The place for depen

Re: Good CFUG

2002-08-27 Thread Paul Giesenhagen
I assume to start a CFUG, you just have to get together some CF'rs and start having regular meetings? What all takes place at the CFUG's? If I wanted to contact as many CF'rs in my area as I could, where would be a good place to start looking. Thanks Paul Giesenhagen QuillDes

Re: Good CFUG

2002-08-27 Thread Paul Giesenhagen
mail to [EMAIL PROTECTED] and she will be hapy to answer your > questions for you. All it takes to start a group is some initiative. > > -mk > > Mark A. Kruger, MCSE, CFG > www.cfwebtools.com > www.necfug.com > ..no more brochures! > > > > -Original Message

Re: Good CFUG

2002-08-27 Thread Paul Giesenhagen
What all takes place at the different CFUGs? Never have been to one, but I am sure meeting with other people with the same interests has got to be good for all involved. Paul Giesenhagen QuillDesign > If you start a MM certified group they can send out emails to everyone in > your are

OT: Learning Tree

2002-08-28 Thread Paul Giesenhagen
Has anyone had any experience with Learning Tree International training group? Looking for a good training group. You can reply to [EMAIL PROTECTED] off list if you wish Thank You Paul Giesenhagen QuillDesign __ Structure

Re: Cflocation and a popup

2002-08-28 Thread Paul Giesenhagen
The abort is probably giving you fits ... remove it and try it out! Paul Giesenhagen QuillDesign - Original Message - From: "Kodjo Ackah" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, August 28, 2002 12:18 PM Subject: Cflocati

Re: OT: IE has now reached 96 percent market share

2002-08-28 Thread Paul Giesenhagen
Yeah, it is hard to believe that it is a true number, looking at one of my sites that has about 200,000 uniques a week, we are showing 29% Netscape (2.x-5.x) ... it is the 4.x that makes life tough :) Paul Giesenhagen QuillDesign > What website is that? Is it by chance some type of U

Re: find mdb

2002-08-29 Thread Paul Giesenhagen
Look into your Cold Fusion administrator and look at the path there for that datasource. (under ODBC) Paul Giesenhagen QuillDesign - Original Message - From: "Jeremy Ball" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, August 29

Re: Checkbox with mutliple names passed to query needing 1 name

2002-03-11 Thread Paul Giesenhagen
Basically you need to re-doc (or undo) what you have just done :) You are basically going to pass the total number of checkboxes. Then loop on that value and evaluate it. There are proabably various other ways that will get to the same result Paul Giesenhagen QuillDesign http

Backing up

2002-03-11 Thread Paul Giesenhagen
a better way. The only hitch is that I also have to move orignal files and images too ... which means I would like to use the CF Schedular to do this. Anyhelp would be appreciated. Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector - Commerce Builder v2.0

Re: CC processing question

2002-03-11 Thread Paul Giesenhagen
and run the total of items in stock through the credit card processing. Hope this helps. Paul Giesenhagen Quilldesign http://www.quilldesign.com SiteDirector - Commerce Builder v2.0 > I have never use a CC plugin to process credit cards. > > When does the money actually get taken out

Re: CC processing question

2002-03-11 Thread Paul Giesenhagen
comes with a test account). Again, this is a NO OBLIGATION deal, you get the tag and can test within minutes. You might be able to figure out a solution on your own once you start implementing the tag. Hope this helps! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector - Commerce

Re: CC processing question

2002-03-11 Thread Paul Giesenhagen
maybe hand processing. Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector - Commerce Builder v2.0 > They are currently getting PGP encrypted emails with order information in > them. They take the email and keep it on record at the shop. Im not the > biggest fan of th

Re: Netscape VS IE

2002-03-12 Thread Paul Giesenhagen
Hope this helps! http://hotwired.lycos.com/webmonkey/reference/browser_chart/ Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector - Commerce Builder v2.0 - Original Message - From: "Ryan Edgar" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PRO

file/mime types

2002-03-13 Thread Paul Giesenhagen
Does anyone have a good link to a listing of valid file mime types that I could use? I need it for cffile .. need to find the right syntax to include audio and video Thanks Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector - Commerce Builder v2.0

Re: Independent Consultant/Programmer Sample Contract

2002-03-14 Thread Paul Giesenhagen
In addition try http://www.quickforms.com Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector - Commerce Builder v2.0 - Original Message - From: "Dave Hannum" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday

Re: SQL & CF Question

2002-03-14 Thread Paul Giesenhagen
# - #getSubCats.CategoryTitle# Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Tangorre, Michael T." <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, March 14, 2002 11:34 PM Subject: S

Re: Documentation

2002-03-15 Thread Paul Giesenhagen
Do this Do that OR Do this Do that Paul Giesehagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Ron Davis" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, March 15, 2002 1:59 PM Subject: Re: Documen

Re: SQL Error, I know

2002-03-19 Thread Paul Giesenhagen
using as much as they said that they would give you). Email the administrator and ask him for more space .. if they want to charge you $200.00 to do that ... look for a new provider ..!! Best of Luck! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder

Re: TextArea Input

2002-03-20 Thread Paul Giesenhagen
#Trim(form.textfromtextarea)# Before you insert it into the DB ... Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Thane Sherrington" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTE

Re: Terms+Conditions for packaged web app

2002-03-20 Thread Paul Giesenhagen
Try this website: http://www.quickforms.com They have some contracts and very reasonable in price... I am not sure how they would work in the UK, but worth taking a look at. Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message

Search Key Error

2002-03-21 Thread Paul Giesenhagen
][ODBC Microsoft Access Driver] The search key was not found in any record. The error occurred while processing an element with a general identifier of (CFQUERY), occupying document position (1718:3) to (1718:52). = Paul Giesenhagen QuillDesign http

Re: Is there anywhay to work around there not being an IsNull Function

2002-03-21 Thread Paul Giesenhagen
IsStruct() tells if a variable is a struct or not.. You could also Then Dunno if that answers your question or not... Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Brian Eckerman" <[EM

Re: CF & JS Menus

2002-03-21 Thread Paul Giesenhagen
We have a very solid script that is very compatible with many browsers. http://www.quilldesign.com/popupmenupro/index.cfm Drop in and check it out... Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > Hello Everyone. > > I have been pla

cfdirectory

2002-03-21 Thread Paul Giesenhagen
I am using the cfdirectory tag to get a list of directories .. how do not show the two top directories. my directory looks like this . . dir1 dir2 dir3 I just want to show the dir1,dir2,dir3 and not the period directories (whatever they are called). Thanks Paul Giesenhagen QuillDesign http

Re: cfdirectory

2002-03-21 Thread Paul Giesenhagen
Thanks... Perfect solution! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > OTTOMH, > > In your CFOUTPUT use startrow="3" > > I think the first two dirs are *always* the . and .. Anyone back me up on > this? >

Re: how to retrieving data by age of record in MSSQL

2002-03-21 Thread Paul Giesenhagen
select columnames from tablename where orderdate < #variables.olddate# that should do ya up! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "han peng" <[EMAIL PROTECTE

Re: CFNORTH Coldfusion conference 5/4-5/5/02

2002-03-22 Thread Paul Giesenhagen
Is there such a thing as CF South? Something alittle further down this way in the states? Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Michael Smith" <[EMAIL PROTECTED]> To: "CF-Talk"

Re: URGENT : How to Detect screen resolution in COLDFUSION?

2002-03-24 Thread Paul Giesenhagen
The only thing you can do is use Javascript to get the resolution and then stick it into a variable ... that may work. Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "JAIME HOI" <[EMAIL PROTECTED]&

Re: Time Issue

2002-03-25 Thread Paul Giesenhagen
Are you sure about that? When we use #Now()#, it gives use the time on our server .. Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]>

Re: session variable renewal

2002-03-26 Thread Paul Giesenhagen
10:35 Activity starts things over. Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Cornillon, Matthieu" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, March 2

Re: SSL Certificates - provider recommendations?

2002-03-26 Thread Paul Giesenhagen
I have heard alot of good things about equifax and their secure certificate. http://www.equifax.com/DigitalCertificates Good Luck Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Eric Dawson" <[EM

Re: CFMail does not send email externally

2002-03-26 Thread Paul Giesenhagen
erver and you allow relaying they will relay all kinds of spam through your mail server and possibly get your banned... Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Thanh Nguyen" <[EMAIL PROTECTED]>

Re: CFWDDX example needed

2002-03-26 Thread Paul Giesenhagen
to deserialize: Now you have "arrayname" back. That'd be the basics! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Owens, Howard" <[EMAIL PROTECTED]> To: "CF-Talk"

Re: CFFILE reads whole file into 1 var?

2002-03-27 Thread Paul Giesenhagen
ot; that would allow you to quickly see line by line or item by item whatever the case may be. But however you look at it, you would have to open the whole file to find parts of it ... Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > this one of my

Distributing MS Access

2002-03-27 Thread Paul Giesenhagen
Does anyone know about the licensing with MS Access and sending an MS Access db with your application. It has always been my understanding that this is fine to do. Does anyone know for sure? Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder

Re: CFFILE reads whole file into 1 var?

2002-03-27 Thread Paul Giesenhagen
but wouldn't it have to open the whole file up first to find the first character or the 2000th character... Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Joseph Thompson" <[EMAIL PROTECTED]>

Removing Characters

2002-03-28 Thread Paul Giesenhagen
racters such as ', ", and other possible bad things? Instead of doing a replace? The error I am getting is a Not Well Formed XML error.. Any help would be greatly appreciated! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirecto

Internationalization

2002-03-29 Thread Paul Giesenhagen
k you Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ:

Re: HTML comments and tag completion

2002-03-29 Thread Paul Giesenhagen
Go into OPTIONS / SETTINGS ... then under the editor, view the AutoCompletion settings .. you can modify them there! Good Luck Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > > All, > > Can anyone tell me how to disable the C

Re: Win 2k patch question

2002-03-29 Thread Paul Giesenhagen
Click on Start, then go to the upper part of the menu and click on Windows Update... That will take you to Microsoft ... then click on the left menu item "Product Updates" it will do a scan of your system and tell you what you need! Good Luck Paul Giesenhagen QuillD

Re: update to cf not writing cookies

2002-03-29 Thread Paul Giesenhagen
clients browser to set the cookie. Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, March 29, 2002 10:12 AM Subject: update to

Re: IE and view source

2002-03-29 Thread Paul Giesenhagen
Had this problem before .. you need to clear your cache and temp files ... it is probably loaded Wy up! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Matthew R. Small" <[EMAIL PROTECTED]&

Re: Internationalization

2002-03-29 Thread Paul Giesenhagen
ld be someone who would have dealt with this and had some resources. Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > > I think the term you are looking for is ..localisation or > > localization (US). > > no, its internationaliz

Re: Custom Tags as

2002-03-29 Thread Paul Giesenhagen
No, I do not believe so ... but if you stick the custom tag in the directory where your application resides, you can call it as Hope that helps Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > On my web host, I don't have a Custom Tags d

Re: Internationalization

2002-03-29 Thread Paul Giesenhagen
Perfect! Just what I was looking for! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Paul Hastings" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, Ma

Re: CF/Database Help

2002-03-29 Thread Paul Giesenhagen
Here here!! > I'm just taking this from the user's side rather than the programmer's. > > Would you be making a highly capable system whose elegance is lost on a user when he has to pick one ingredient from a drop-down list of 200 (and populate that list himself when he needs a new ingredient no

Re: What is MX

2002-04-01 Thread Paul Giesenhagen
text. The page down button is all I need... Food for thought! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Nick McClure" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sen

Re: What is MX

2002-04-01 Thread Paul Giesenhagen
in a 'few months as stated before :)'. I don't look forward to it right now .. but I am sure my son will laugh at what we are doing today one day! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: &qu

Re: Checks

2002-04-03 Thread Paul Giesenhagen
We have a very simple to use and implement custom tag that works through CDG Commerce and EFT, (right now we have free setup $295.00 value). http://www.quilldesign.com/cdg/index.cfm Check it out and let me know if you have any questions Paul Giesenhagen QuillDesign http://www.quilldesign.com

Re: CF VS ASP

2002-04-03 Thread Paul Giesenhagen
I don't have an exact answer, but there are some good things if you do the following: Go to Google.com search for "asp vs. cold fusion" and then reverse it "cold fusion vs. asp" and you will find various articles and message threads. Hope this helps Paul Gie

Re: multiple file uploads

2002-04-03 Thread Paul Giesenhagen
Not using appletFile, but have used it does a very nice job of handling multiple files .. you can find it in the tag gallery at Macromedia. Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > any comments or suggestions for multiple file upl

Code Commenting

2002-04-07 Thread Paul Giesenhagen
Does anyone have a good resource(s) for examples of good code commenting? I am trying to find some various ways/practices people are commenting code. Thanks Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder

Re: CFMAIL ?

2002-04-07 Thread Paul Giesenhagen
Instead of mimeattach="#fileToSend#" Set it to: mimeattach="c:\directory\#file.serverfile#" Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Douglas Brown" <[EMAIL PROTECTED]> To

Re: Code Commenting

2002-04-08 Thread Paul Giesenhagen
Do you have any url's to look at? Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > A howto on commenting? Try Xtreme Commenting or Commenting Patterns. > > On Sun, 7 Apr 2002, Paul Giesenhagen wrote: > > > Does anyone have

Re: Multiple Checkbox update?

2002-04-09 Thread Paul Giesenhagen
There are many ways to skin this cat, but it all depends on your checkboxes and what your trying to accomplish. If you could provide more details, I am sure you will get some good help! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > Does any

Re: session cant work in IE 5.5 and 6??

2002-04-09 Thread Paul Giesenhagen
I use session variables in 5/5.5 and 6 ...as well as other browsers Don't know what to tell ya ... but it isn't the browser ..unless you have the cookies turned off or something like that.. Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commer

Re: Suggestion for a good message forum to add to our CF SITE

2002-04-10 Thread Paul Giesenhagen
Take a look at QD Forums, they are cheap and pretty feature rich! http://www.quilldesign.com I think they are pretty good .. but then again I am kinda bias'd! Good Luck Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > I've search

Re: Suggestion for a good message forum to add to our CF SITE

2002-04-10 Thread Paul Giesenhagen
Direct link: http://www.quilldesign.com/qdforums/index.cfm Sorry! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder - Original Message - From: "Paul Giesenhagen" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTE

Re: Re[2]: Suggestion for a good message forum to add to our CF SITE

2002-04-10 Thread Paul Giesenhagen
Probably a stupid question, but I have to ask since I do not knowWhat does "oi" mean? Thanks Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > oi Kevin!! > > speakin of snitzthere are tons of mods floating around th

Re: Re[4]: Suggestion for a good message forum to add to our CF SITE

2002-04-10 Thread Paul Giesenhagen
oi Critz thanks! :) Sounds like an Australian thing .. eh? Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > oi Paul!! > > just a slang greeting > > > -- > Critz > Certified Adv. ColdFusio

Re: OT Help!

2002-04-12 Thread Paul Giesenhagen
Go into your IIS Manager, view the properties of that domain, and under the general tab, under website identification, click on advanced, make sure you have your ip pointing at both www.domain.com and domain.com Hopefully this helps, but it might depend on your setup! Paul Giesenhagen

Re: Re[2]: OT Help!

2002-04-12 Thread Paul Giesenhagen
HOWDY Critz :) I guess I assumed he had both the www and the "" host records set in his DNS ... (Sorry Phil)... Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > oi Paul!! > > doesn't that need to be setup

Re: Quicky

2002-04-12 Thread Paul Giesenhagen
That will get the rightmost characters (9 of them) from your field. Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > I know the answer is easy, but it's late on Friday and it's been a long > week... > Ok I need to set a variab

Re: Quicky

2002-04-12 Thread Paul Giesenhagen
Whooo sorry ... (I should have said 12, someone said 9 as I was typing)... Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > > > That will get the rightmost characters (9 of them) from your field. > > Paul Giesenhagen >

OT SQL Query

2002-04-12 Thread Paul Giesenhagen
B/Y/W B/J C C/K C/K/L C/K/F Side Note, each of the owner and sub_object values are defined in another table, so I will have to join two tables together to get the actual NAME of the department... I don't think that will matter but thought I should point it out. Any help would be appreciat

Listing out departments (again)

2002-04-15 Thread Paul Giesenhagen
"looping" myself into nowhere, trying to get the output as it is above. Anyhelp with the SQL and CF Syntax is greatly appreciated! At this point, I am not looking for performance :) just a solution! Comon' I know that there is a supermind that can help me!! Thank you Paul Gie

Re: Listing out departments (again)

2002-04-15 Thread Paul Giesenhagen
ables? It seems a bit redundant? Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > you should have 3 tables > an owner table (owner and ownerID) > a sub object table (subobject and subobjectID) > a relationship table (ownwerID and subobject

Re: Listing out departments (again)

2002-04-15 Thread Paul Giesenhagen
since this seems to be causing me trouble in this one area ... Thanks! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > Paul, > > I think you will want something like this. Dave Watts helped me with it > a long time ago. > > http://

Re: Null Values in MSSQL

2002-04-15 Thread Paul Giesenhagen
NULL is not "" check for NULL Hope this helps Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > Group: > > This is the first time that I have to test for a NULL Value in MSSQL to > retrieve a record set. However, at my p

Re: CFHTTP

2002-04-15 Thread Paul Giesenhagen
Works for me just fine ... It may be a problem with some type of http settings... dunno what it could be though! Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > I can go to http://www.yahoo.com > > When I try to do a to http://www.ya

OT: VAT/GST/HST ect..

2002-04-16 Thread Paul Giesenhagen
.. Thank you Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ

Re: Custom Tags question

2002-04-17 Thread Paul Giesenhagen
I just wrote a custom tag that calls upon itself over and over drilling down through departments and products .. it can process many times and I haven't seen any problems... How many times is your tag calling before it gacks on ya? Paul Giesenhagen QuillDesign http://www.quilldesig

Re: CF MX

2002-04-17 Thread Paul Giesenhagen
Neil, You must be on the beta team to access the beta forums. Paul Giesenhagen QuillDesign http://www.quilldesign.com SiteDirector v2.0 - Commerce Builder > Dave, > I can't seem to find them Could you direct me to them... > > Neil > > - Original Message -

<    1   2   3   4   5   6   >