RE: Document Icons

2004-08-12 Thread Tony Gruen
I have a set. I don't remember where I came upon them but they are fairly consistent and in .GIF format. Would this help? If so - http://www.tonygruen.com/doc_icons.zip Wow, I am finally able to contribute something to this great list. Most of the topics are a little above my development

Kinda OT; Freaking Pivot Tables

2004-08-09 Thread Tony Gruen
Hello everyone, After convincing a client to redo their website in CF I have the pleasure of trying to convert a MSAccess database into SQL Server. I know this is CF-Talk but I also know the great minds on the list :-) Can anyone offer suggestions on getting these Pivot tables into SQL Server?

SQL Pickle

2004-02-10 Thread Tony Gruen
I have done this in reverse with the Membership Test (IN) and I have figured out a way for it to work (example below) but this does not seem the best way. Can I ask for some SQL input? I have one field in a database (SQL Server 2000) that contains a comma separated list of state abbr.

RE: SQL Pickle

2004-02-10 Thread Tony Gruen
Awful is right, however as is the case with so many projects, it is not my app, I don't have access to the SQL Server for ease of manipulation and they want to see it tomorrow. It will be run once a day and relevant to about 4,000 records. Any other input would be greatly appreciated. Tony

RE: SQL Pickle

2004-02-10 Thread Tony Gruen
the database. -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED] Sent: dinsdag 10 februari 2004 8:04 To: CF-Talk Subject: SQL Pickle I have done this in reverse with the Membership Test (IN) and I have figured out a way for it to work (example below) but this does

RE: ecommerce store and real store inventory

2004-01-14 Thread Tony Gruen
Thank you everyone for the input. Iam delving deeper into their desire to accomplish this because I think they just thought it would be neat. I do not think they have considered the true ramifications of attempting such a task with their operation. They have seven store fronts and take thousands

ecommerce store and real store inventory

2004-01-13 Thread Tony Gruen
ok group. Here is one I can't seem to find information on. I have been asked if a real world store that has a Cold Fusion based webstore could tie their inventory to the website. If an item sells out in the store, it would not be available on the website until restocked. They have a CF Based

Auction Builder?

2003-07-10 Thread Tony Gruen
I remember topics about CF and online auctions a long time ago but cannot find the thread int he archives. Does anyone have feedback on Auction Builder from Able Commerce? Other CF Based auction options? Thanks in advance for your input. Tony Gruen

RE: CFFILE Input Filter?

2003-07-07 Thread Tony Gruen
CF is server side but you could integrate client side code into the form. Some JS for example. Tony Gruen -Original Message- From: Claremont, Timothy [mailto:[EMAIL PROTECTED] Sent: Monday, July 07, 2003 9:09 AM To: CF-Talk Subject: CFFILE Input Filter? Can anyone tell me if I can

RE: Cybercash - Test Mode?

2003-07-07 Thread Tony Gruen
Davis, Thanks a load! Yes, the cybercash transactions still run smoothly. I appreciate your help :-) We're going to test it today. Tony Gruen -Original Message- From: David Delbridge [mailto:[EMAIL PROTECTED] Sent: Sunday, July 06, 2003 11:04 AM To: CF-Talk Subject: Cybercash - Test Mode

Cybercash - Test Mode?

2003-07-05 Thread Tony Gruen
in advance, your input is greatly appreciated. Tony Gruen ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribeforumid=4 FAQ: http

Little OT: SQL Query Date Filter

2003-07-01 Thread Tony Gruen
= DateAdd('d', -1, CDate) (yesterday's date) CFSET TDate = DateAdd('d', 1, CDate) (tomorrows date) SELECT * FROM Transactions WHERE bDate #variables.EDate# AND bDate #variables.TDate# Thank you in advance for your brainpower - is my method off somehow? Tony Gruen

RE: Little OT: SQL Query Date Filter

2003-07-01 Thread Tony Gruen
A huge thanks to all who took the time to respond. Now I am a little wiser and it is working. Tony Gruen ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com

RE: Calendar App

2003-06-26 Thread Tony Gruen
That may not be the one peeps want - I was under the impression everyone wanted the one from www.myrtlebeachconventioncenter.com ... But, I'm usually wrong, so I may be on ths one ... ? Tony Gruen -Original Message- From: Doug White [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26

Offline browsers

2003-06-25 Thread Tony Gruen
Anyone have any feedback on how to block applications like WebCopier? Is there a reliable way to have a part of your site not accessible to applications like these if a registered user tries to use them? ~| Archives:

Almost there - stuck

2003-06-20 Thread Tony Gruen
= #ListLen(List1)# CFSET Mselect1 = #RandRange(1, Max1)# **Here is where I am stuck. How to I associate the variable Mselect1 (the counter) to the corresponding ID so I can display data? Thank you for taking the time to read this- any input on my method (good-bad) is greatly appreciated. Tony

RE: Almost there - stuck

2003-06-20 Thread Tony Gruen
Got it - excellent code suggestions, I learned several things and I greatly appreciate all replies. Once again, standing in the blazing brilliance of the members on this list has rewarded me with a small splinter your combined genius :-) Tony

RE: cf math ?

2003-06-07 Thread Tony Gruen
This should get you on your way... -- CFLOCK timeout=4 CFSET A = 5 CFSET B = 3 CFSET D = 800 CFSET C = ((#A# * #A#) * #B#) / #D# /CFLOCK html head titleSimple Math/title /head body cfoutput#NumberFormat(C,

RE: CF Forum 2.1 - Yeah or Nay???

2003-04-03 Thread Tony Gruen
We have used CF Forum on several projects since version 1.01. In the past two years we have been very happy with both the product and support. We use SQL Server as the DB. If you have any specific questions please feel free to email me off list. Tony Gruen Managing Partner SFNetworks [EMAIL

RE: Concetenating two Variables

2003-02-17 Thread Tony Gruen
Try cfset SESSION.ecom.fullName = #SESSION.ecom.firstName# #SESSION.ecom.lastName# Tony -Original Message- From: Mark Leder [mailto:[EMAIL PROTECTED]] Sent: Monday, February 17, 2003 8:22 PM To: CF-Talk Subject: Concetenating two Variables Hi All, Here's what I want to do: cfset

RE: Use a list in where clause?

2003-02-14 Thread Tony Gruen
Thank you Pascal and Justin. Just did a dance around my chair and I can finally get a little sleep. Your generous help is truly appreciated. T ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

Use a list in where clause?

2003-02-13 Thread Tony Gruen
, Subscribers.EMail FROM (Subscribers INNER JOIN SubscriberAddress ON (Subscribers.SubscriberID = SubscriberAddress.ASubscriberID)) WHERE SubscriberAddress.state IN ('#FORM.EmailState#') Best Regards, Tony Gruen ~| Archives: http

RE: bad words list

2002-09-11 Thread Tony Gruen
bad word list, ok i'll give it a goirs, dmv, dpt, usps (uh-oh, i see a trend) Anyone have a bad wordl list? __ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Advice?

2002-09-02 Thread Tony Gruen
John, I went though this some time ago myself. I did not debug your attempt - rather I have sent my solution for you to review/use. I was fortunate enough to get help from another list when I needed it also :-) Tony Gruen !--- run your query - in this example my query is named 'GetFeatured

RE: ANY Major Company using Cold Fusion

2002-08-15 Thread Tony Gruen
How about BMWUSA? -Original Message- From: John Beynon [mailto:[EMAIL PROTECTED]] Sent: Thursday, August 15, 2002 2:28 PM To: CF-Talk Subject: RE: ANY Major Company using Cold Fusion Errm - are HP big enough for you? http://www.hpdevelopersolutions.com/join/APDK.cfm Jb.

Session Woes

2002-07-27 Thread Tony Gruen
Hello List-Members, I have an issue with sessions that is escaping me. I have the session setup using the scope below yet it still seems to timeout pre-maturely. It is important that I not have the session timeout for 5-8 hours because the application is being used over the course of a normal

RE: Session Woes

2002-07-27 Thread Tony Gruen
what you set it to in your cfapplication tag...if the admin setting is less it will timeout. Ken -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 27, 2002 8:34 PM To: CF-Talk Subject: Session Woes Hello List-Members, I have an issue with sessions

RE: Writing efficient CFIF statements

2002-07-16 Thread Tony Gruen
Why set anything? If you're down to this simple of a decision (0 or 1), I would run the query, then use the variable RecordCount in my output since it already exists. Like so... cfif QueryName.RecordCount IS 0 do stuff cfelse don't do stuff cfif Tony Gruen sfnetworks

RE: Site monitoring services

2002-07-10 Thread Tony Gruen
same here. I will keep checking it cuz I want to research it too. We have been using Webtrends site monitoring tools to date. -Original Message- From: Lee Fuller [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 10, 2002 2:44 PM To: CF-Talk Subject: RE: Site monitoring services Can ping

RE: File Size limit with CFFile?

2002-07-02 Thread Tony Gruen
Thanh, The restriction is primary available system memory on the server (RAM). CFFILE moves the uploaded file into available system RAM BEFORE writing it to the hard drive. If you're running Windows you will probably see an error 1450 come up if the file is too large. Tony Gruen -Original

OT -SqlServer Data Length

2002-07-01 Thread Tony Gruen
the SQL Server data length is just over 8,000 ch. Am I mistaken? Can anyone offer a little input? I hate to research alternatives if my personal knowledge is incorrect. Please share your thoughts, Thanks in advance. Tony Gruen

RE: DB layout questions...please help!!!

2002-07-01 Thread Tony Gruen
and select the car manufacturer from a Select. Then they can have an admin where they can add/remove options to the list (Add 'Power Steering' for example). EMail me off list if this does not make sense. Glad to help. Tony Gruen [EMAIL PROTECTED] -Original Message- From: Douglas Brown

RE: dynamic select

2002-06-30 Thread Tony Gruen
the top of my head so ) select name=make cfoutput query=qMake option value=#qMake.Model#cfif qMakeUser = #qMake.Model# SELECTED/cfif#qMake.Model# /cfoutput /select Tony Gruen -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 30, 2002 1:25 PM

RE: Does cgi.http_referer ALWAYS work?

2002-06-30 Thread Tony Gruen
that cgi.http_referer cannot be sent from the users browser (pretty layman terms but I don't know the in-depth details of this topic). So, I guess that my 2cents on your question is not for every user. Tony Gruen -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED]] Sent: Sunday, June 30

RE: CFIF Statement

2002-06-24 Thread Tony Gruen
Give this a try - (off the top of my head) Tony Gruen cfif QueryName.LASTNAME LEFT(form.b_email, 1) CONTAINS 'A' -Original Message- From: Kent A. Orso [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 9:11 AM To: CF-Talk Subject: CFIF Statement Trying to do a CFOUTPUT

RE: NT Firewalls

2002-06-21 Thread Tony Gruen
I am a huge fan of Watchguard products and recommend looking into getting a Firebox II. This is not a software firewall but a Firewall appliance. Email me off list of you want additional information, glad to help. Tony Gruen http://www.watchguard.com -Original Message- From: James

RE: chat for cold fusion?

2002-06-20 Thread Tony Gruen
Ditto - same here. Tony Gruen -Original Message- From: Thomas Eppler [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 20, 2002 3:05 PM To: CF-Talk Subject: chat for cold fusion? Is there any simple but customizable chat CFX available, which can be run by a java applet AND html refresh

RE: OT - Dual Display

2002-06-13 Thread Tony Gruen
CF_StabInTheDark Don't you have to install/enable Dual monitor support in the OS - or is that a stupid thought /CF_StabInTheDark -Original Message- From: Douglas Brown [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 4:34 PM To: CF-Talk Subject: Re: Dual Display Is the AGP

RE: OT - Dual Display

2002-06-13 Thread Tony Gruen
(Clarksburg Office) (304) 456-4942 (Home Office) -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 13, 2002 7:29 PM To: CF-Talk Subject: RE: OT - Dual Display CF_StabInTheDark Don't you have to install/enable Dual monitor support in the OS - or is that a stupid

RE: MAC file upload

2002-06-10 Thread Tony Gruen
We have it working - try our code below. Add1.cfm is the form page and add2.cfm is the action. The issue we found was actually downloading the file once it is online but Netscape 6+ on a Mac works ok so we set our application requirements to exclude Netscape 4.x. Tony Gruen !--- add1.cfm

RE: return to search page

2002-05-24 Thread Tony Gruen
be downloaded using CFContent. PC's can download the Mac files, but not the Macs. Any resolution? Tony Gruen __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm

CFCONTENT Woes

2002-05-24 Thread Tony Gruen
system on our intranet. CFFile uploads from a Mac go ok, but cannot be downloaded using CFContent. PC's can download the Mac files, but not the Macs. Any resolution? Tony Gruen __ Get the mailserver that powers this list at http

RE: search problem

2002-05-22 Thread Tony Gruen
try cfif invoicenumber IS NOT And invoicenumber LIKE '#FORM.invoicenumber#'/cfif Tony Gruen -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 22, 2002 11:09 AM To: CF-Talk Subject: search problem Hello, I have a simple search code below

Populating Multiple Select

2002-05-22 Thread Tony Gruen
Howdy oh-great-list, I am trying to populate a multiple select that is dynamic. One query holds the select options and another holds the list of values currently in the database. For example: Query A gets all users and populates the dynamic select with Susy Bill Allan Phillip Query B returns

RE: Brainfart - Need Help

2002-05-21 Thread Tony Gruen
Wouldn't it be... cfif not len(Company)cfset Company = blah blah#variables.company#cfelse#Company#/cfif ? Tony Gruen -Original Message- From: Chris Montgomery [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 1:38 PM To: CF-Talk Subject: Brainfart - Need Help Hello Cf-Talk

Creating a list

2002-05-21 Thread Tony Gruen
Is ListAppend used to create a new list? I am querying a db for one field. This will return multiple values. I need to turn that return set into a list for use elsewhere. Strange I have realized I have not had to create a list like this before.

RE: Creating a list

2002-05-21 Thread Tony Gruen
to additems to it. cfset newlist = -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 21, 2002 3:51 PM To: CF-Talk Subject: Creating a list Is ListAppend used to create a new list? I am querying a db for one field. This will return multiple values. I need

Query Issue

2002-05-20 Thread Tony Gruen
Howdy List! Can someone please 'gimmie a thread' on this? (ie: Brain thread, as in cpu thread) I have an existing database with a field named 'AccessList'. This field is a comma delimited list of IDs (numeric only). These IDs are for users who are to be granted access to a function. For example

RE: Query Issue

2002-05-20 Thread Tony Gruen
: Tony Gruen [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, May 20, 2002 6:42 PM Subject: Query Issue Howdy List! Can someone please 'gimmie a thread' on this? (ie: Brain thread, as in cpu thread) I have an existing database with a field named 'AccessList'. This field

RE: banner program

2002-05-17 Thread Tony Gruen
dood - I am s down for some gamin. As a matter of fact, I just got Adobe After Effects 5.5 and want to make a HL movie. You have to show me how to record a movie, I can join as a spectator and you can round up all the guys and we can make a killer flick. T -Original Message- From:

dOh - sorry

2002-05-17 Thread Tony Gruen
sorry list - wrong reply recipient __ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives:

RE: Dependant Selects?

2002-05-15 Thread Tony Gruen
CF_TwoSelectsRelated in the tag gallery... http://devex.macromedia.com/developer/gallery/index.cfm -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 8:30 AM To: CF-Talk Subject: Dependant Selects? Anyone have a snippet of a set of lsit

RE: [admin] List status - A CHALLENGE

2002-05-15 Thread Tony Gruen
uh - excuse, I started this thread. I also just offered Michael hosting and a dedicated machine in outr environment. Tony Gruen -Original Message- From: Cantrell, Adam [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 15, 2002 9:25 AM To: CF-Talk Subject: RE: [admin] List status

CF_MagicalSelectNeeded

2002-05-14 Thread Tony Gruen
do not see how to make CF_ThreeeSelectsRelated function this way. Any input is greatly appreciated. Thanks in advance. Tony Gruen __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http

RE: CF_MagicalSelectNeeded

2002-05-14 Thread Tony Gruen
Not specific to CF but I am not Javascript friendly (much to my dismay). T -Original Message- From: Kevin Schmidt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 14, 2002 12:31 PM To: CF-Talk Subject: RE: CF_MagicalSelectNeeded Could you do it with Javascript, or does it have to be CF.

RE: [admin] List status

2002-05-14 Thread Tony Gruen
Wow, searching the archives would be 'the heat'! how can we help to get the sql box online? Tony Gruen __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion

RE: [admin] List status

2002-05-14 Thread Tony Gruen
I will donate a machine contact me off list to see if it meets your standards :-) Tony Gruen sfnetworks -Original Message- From: Craig Thomas [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 14, 2002 3:49 PM To: CF-Talk Subject: RE: [admin] List status Can you say MySQL? or postGre

RE: Geographical redundancy?

2002-05-11 Thread Tony Gruen
Act of God or War clause. Tony Gruen -Original Message- From: Al Musella, DPM [mailto:[EMAIL PROTECTED]] Sent: Saturday, May 11, 2002 11:05 AM To: CF-Talk Subject: Geographical redundancy? I have to put together a proposal for a medical office management application which

Directory Name

2002-05-10 Thread Tony Gruen
insight? I would greatly appresiate any input. Tony Gruen __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting. FAQ: http://www.thenetprofits.co.uk/coldfusion/faq

RE: Directory Name: RESOLUTION

2002-05-10 Thread Tony Gruen
Thank you all. You have all given me several angles to the solution and I have finished in time for the weekend. Have a beverage on me. Now I don't have to some in tomorrow. Tony __ This list and all House of Fusion resources

RE: Create Thumb from IMG upload

2002-05-09 Thread Tony Gruen
I have used this AutoResize tag and it works great. Tong Gruen -Original Message- From: Ben Johnson [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 09, 2002 4:04 PM To: CF-Talk Subject: RE: Create Thumb from IMG upload I need a CF Tag that creates a thumb of an image I upload. Then

RE: updating problem

2002-04-17 Thread Tony Gruen
check your output row on your initial page. Looks like you have the initial CFOUTPUT outside the table tag. Should be inside it so that the row is repeated for each record. T -Original Message- From: Judy [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 17, 2002 8:06 PM To: CF-Talk

RE: updating problem

2002-04-17 Thread Tony Gruen
Judy, you simply need to populate the form. There are some minor differences in the way to do this but one way for your to use to start would be... Use CFFORM Populate a textbox... CFINPUT TYPE=text NAME=fieldname value=#queryname.fieldname# SIZE=22 maxlength=50 tabindex=1 required=yes

RE: Forcing Excel Download

2002-03-12 Thread Tony Gruen
http://www.figleaf.com/demo/mimetest/ -Original Message- From: Attley, Simon (CMG-SF) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 9:58 AM To: CF-Talk Subject: Forcing Excel Download Hello list, I currently have an absolute link to an Excel file on our server. Clicking the

RE: Forcing Excel Download

2002-03-12 Thread Tony Gruen
sorry list members - wrong address. -Original Message- From: Attley, Simon (CMG-SF) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 12, 2002 9:58 AM To: CF-Talk Subject: Forcing Excel Download Hello list, I currently have an absolute link to an Excel file on our server. Clicking the

RePlace... NOT!

2002-03-09 Thread Tony Gruen
)##chr(10)#, , ALL)#', am I crazy? am I missing something? This is pretty basic but I don't see any reason why commas are being left in the field. Any suggestions? Tony Gruen __ Get Your Own Dedicated Windows 2000 Server PIII

RE: RePlace... NOT!

2002-03-09 Thread Tony Gruen
OY! I sure owe you one. Thanks for your input, this site is going live Monday and the scramble has me frazzled. :-) Tony -Original Message- From: Kym Kovan [mailto:[EMAIL PROTECTED]] Sent: Saturday, March 09, 2002 6:57 PM To: CF-Talk Subject: Re: RePlace... NOT! Hi Tony, A standard

RE: Cannot open database

2002-02-09 Thread Tony Gruen
My suggestion is to remove the db, remove the datasource, replace the db file with a recently repaired and Compacted' version and recreate the datasource. This has worked for us before. Tony Gruen -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Saturday

RE: CFIF statement

2002-02-06 Thread Tony Gruen
Don't you have to argue complete statements in if statements? like cfif (#LCase(ListGetAt(GetFontFamily.sti,1,'.'))# CONTAINS 'aachen') OR (#LCase(ListGetAt(GetFontFamily.sti,1,'.'))# CONTAINS 'adelon') just off the top of my head. Tony -Original Message- From: phumes1

RE: cfselect and required=yes

2002-02-04 Thread Tony Gruen
select inputs are only validated by CF on the server side. These and textboxes will need to be done client side with something like javasc ript. T -Original Message- From: Shawn Regan [mailto:[EMAIL PROTECTED]] Sent: Monday, February 04, 2002 10:54 AM To: CF-Talk Subject: cfselect and

RE: browser version count

2002-02-01 Thread Tony Gruen
Perhaps use SQL CONTAINS? Identify a common character set for each br owser type and count records containing that string. Tony -Original Message- From: Bernd VanSkiver [mailto:[EMAIL PROTECTED]] Sent: Friday, February 01, 2002 12:55 PM To: CF-Talk Subject: browser version count I

RE: OT PMS

2002-01-25 Thread Tony Gruen
you mean 541CVU? if yes try 074B85 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] om] Sent: Friday, January 25, 2002 7:25 AM To: CF-Talk Subject: OT PMS can anyone give me the rgb for pantone 541U?

RE: Macromedia's destruction of the Allaire Site...

2002-01-25 Thread Tony Gruen
I have always wanted to build our own developer's exchange... oops, did the soft part come out loud? -Original Message- From: Paris Lundis [mailto:[EMAIL PROTECTED]] Sent: Friday, January 25, 2002 8:03 PM To: CF-Talk Subject: Macromedia's destruction of the Allaire Site... I try to

RE: Verify form post was from my server.

2002-01-24 Thread Tony Gruen
I have used this before... it is only part of our overall security st ructure but you would place this at the top of your action page. If the refer rer is not from your domain they are bounced out to whatever location you de sire. cfif findnocase(www.yoursite.com,cgi.http_referer) is 0

RE: Mental Block

2002-01-15 Thread Tony Gruen
Thank you all... I think I have it :-) Tony __ Why Share? Dedicated Win 2000 Server · PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation · $99/Month · Free Setup

RE: Photo Sharing

2002-01-14 Thread Tony Gruen
only now starting to populate the photo galleries. Works well. Tony Gruen [www.gruens.com] -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED]] Sent: Monday, January 14, 2002 4:43 PM To: CF-Talk Subject: RE: Photo Sharing We have two products at cfdev you might want to take

Mental Block

2002-01-14 Thread Tony Gruen
for the category subset. I know I will be embarrassed when someone points out the obvious to me but I am at an impasse. All thoughts are welcome. Tony Gruen __ Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO

RE: ANother CFDirectory question

2002-01-12 Thread Tony Gruen
I got around the pointers using the following code you have to think about the anticipated file naming conventions in regards to the test length. cfif LEN(Trim(name)) LT 5nbsp;cfelse...show name.../cfif Tony -Original Message- From: Bruce Sorge [mailto:[EMAIL PROTECTED]] Sent:

RE: Mail Tag for Heavy Volume of Emails?

2002-01-04 Thread Tony Gruen
Ditto - iMS SE works excellent for us. http://www.CoolFusion.com Tony Gruen SFNetworks -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Friday, January 04, 2002 2:15 PM To: CF-Talk Subject: RE: Mail Tag for Heavy Volume of Emails? Anyone know of a 3rd party tag

RE: How to display records next to each other - horizontally?

2001-12-27 Thread Tony Gruen
here is what I use, I think I actually got this via help from this wonderful list a few months ago :-) first set the columns to have... cfset ColumnCount=3 run your query... lets use qMyQuery as an example name then your output... table bgcolor=FF cellspacing=0 cellpadding=1 border=0

RE: Mail list help

2001-12-27 Thread Tony Gruen
. This traffic alone represents 10,000-18,000 emails on a daily basis. We have had such luck with iMS that we are considering m oving this traffic to iMS also. Tony Gruen sfnetworks -Original Message- From: Mark W. Breneman [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 27, 2001 2

RE: How to make a settimeout?

2001-12-26 Thread Tony Gruen
I have used a custom tag called cfx_sleep before - here is the link. Tony http://devex.allaire.com/developer/gallery/info.cfm?ID=CA3472C1-2830-11D4-AA 9700508B94F380method=Full -Original Message- From: Joel Blanchette [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 26, 2001 7:32

RE: reading a text file into a query??

2001-12-21 Thread Tony Gruen
Take a look at a custom tag CFX_CSVtoQuery in the Allaire developer exchange. Perhaps this will help, works well for us. Tony Gruen -Original Message- From: Jerry Johnson [mailto:[EMAIL PROTECTED]] Sent: Friday, December 21, 2001 8:56 AM To: CF-Talk Subject: Re: reading a text file

RE: Quick Question

2001-12-19 Thread Tony Gruen
800 x 600. Your boss is just too hip. Find a buncha ways to complimen t him on this and remind him regularly. T -Original Message- From: ehoma [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 19, 2001 1:44 PM To: CF-Talk Subject: Quick Question I hope that you'll permit me to ask

HTML EMAIL

2001-12-19 Thread Tony Gruen
Forgive the redundancy - I saw this q answered here weeks ago yet cannot find it in the FAQ or archives. I am trying to nail down the syntax for HTMl formatted emails with text version as backup. You know, the proper way to do it. I thought about using the custom tag CF_HTMLMAIL but we are

RE: HTML EMAIL

2001-12-19 Thread Tony Gruen
template=text.cfm --veloxweb Content-Type: text/x-aol; charset=us-ascii cfinclude template=aol.cfm --veloxweb Content-Type: text/html; charset=us-ascii cfinclude template=html.cfm --veloxweb-- /cfmail HTH, Joseph DeVore VeloxWeb Technologies -Original Message- From: Tony

RE: Cfmail problems

2001-12-12 Thread Tony Gruen
iMS inFusion Mail Server SE and converted all CFMAIL code to use the iMS CFX. Now all runs lickedysplit. This may not be the answer you're looking for but I at least wanted to share... Tony Gruen -Original Message- From: Michel Gallant [mailto:[EMAIL PROTECTED]] Sent: Wednesday

RE: Christmas cards? (OT/HTML) W/DOWNLOAD

2001-12-12 Thread Tony Gruen
I, for one, say thank you. Tony Gruen -Original Message- From: Joseph DeVore [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 12, 2001 4:37 PM To: CF-Talk Subject: RE: Christmas cards? (OT/HTML) W/DOWNLOAD Due to the responses that I've received (many people asking me to post

RE: How do people work around the current limited cfmail

2001-12-10 Thread Tony Gruen
anyone have any input on this? I want an alternativne to CFMAIL, anyone have input on their experience with any in particular? Tony Gruen -Original Message- From: Larry W. Virden [mailto:[EMAIL PROTECTED]] Sent: Monday, December 10, 2001 9:18 AM To: CF-Talk Subject: How do people work

RE: How do people work around the current limited cfmail

2001-12-10 Thread Tony Gruen
the server has kept us going in the past. Now nothing helps. Tony Gruen -Original Message- From: Cameron Childress [mailto:[EMAIL PROTECTED]] Sent: Monday, December 10, 2001 10:58 AM To: CF-Talk Subject: RE: How do people work around the current limited cfmail This tag may help... http

RE: How do people work around the current limited cfmail

2001-12-10 Thread Tony Gruen
Thanks Gordon. Super feedback and we are going to try it. I appreciate your input. T -Original Message- From: Gordon Burns [mailto:[EMAIL PROTECTED]] Sent: Monday, December 10, 2001 10:44 AM To: CF-Talk Subject: RE: How do people work around the current limited cfmail answer the

CF Server runs under user account

2001-11-30 Thread Tony Gruen
CFFIle and CFDirectory. Allowing them to upload files, create directories for their site only... protected from effecting other sites on that server. Thank you in advance for any assistance. Tony Gruen ~~ Get the mailserver that powers this list at http

RE: Why aren't there more CF programmers out there?

2001-11-27 Thread Tony Gruen
Give him the FrontPage CD and tell him he is correct... and to do it himself. T -Original Message- From: Justin Hansen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 27, 2001 5:40 PM To: CF-Talk Subject: Why aren't there more CF programmers out there? A higher up said If

RE: Easier way to have a drop down selected

2001-11-27 Thread Tony Gruen
replace with your variable for a dynamic pulldown. T OPTION value=Zimbabwe cfif qGetData.country IS 'Zimbabwe'Selected/cfifZimbabwe/OPTION -Original Message- From: James Sleeman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 27, 2001 8:38 PM To: CF-Talk Subject: Re: Easier way to

RE: CF_Forum Source

2001-11-21 Thread Tony Gruen
www.cfcode.com - forum is great and you can buy the open source. Tony Gruen www.globalassault.com -Original Message- From: Larry Juncker [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 9:09 AM To: CF-Talk Subject: CF_Forum Source I thought that I had seen a thread

RE: CF_Forum Source

2001-11-21 Thread Tony Gruen
source' happy thanksgiving. Timothy Stadinski Senior Software Engineer Afternic.com -Original Message- From: Tony Gruen [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 21, 2001 12:15 PM To: CF-Talk Subject: RE: CF_Forum Source www.cfcode.com - forum is great and you can buy

RE: Client storage woes

2001-11-18 Thread Tony Gruen
Compare the field types in your SQL Server databases on Dev and Production. Your production database field type may need modified. Tony Gruen sfnetworks -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: Sunday, November 18, 2001 1:54 PM To: CF-Talk Subject: Client

RE: User Login

2001-10-26 Thread Tony Gruen
Avena, This will become a trusty and reliable friend in your endeavor to learn CF (along with this list of course) http://www.amazon.com/exec/obidos/ASIN/0789725843/qid=1004112851/sr=2-1/ref= sr_2_7_1/104-0587791-4898344 Tony Gruen sfnetworks -Original Message- From: Avena Weddle

RE: Access Question

2001-10-25 Thread Tony Gruen
Try ... WHERE message_date = '#attributes.datebox#' -Original Message- From: Greg Luce [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 18, 2001 5:45 PM To: CF-Talk Subject: Access Question I haven't used access much, so I'm sure this is going to sound dumb, but can you think of

RE: Submitting forms without showing the action pages

2001-10-24 Thread Tony Gruen
Tom, use the application scope and cfform. I will email you examples off list. Tony Gruen sfnetworks -Original Message- From: Tom Jacobs [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 23, 2001 8:01 PM To: CF-Talk Subject: Submitting forms without showing the action pages

  1   2   >