assess/

2013-07-02 Thread Matthew Friedman
A Sent from my iPhone ~| Order the Adobe Coldfusion Anthology now! http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion Archive:

CFHTTP and Amazons dynamic Load Balancer tool

2011-11-15 Thread Matthew Friedman
We are trying to post information to an API on A3 with their dynamic Load Balancer tool. The issue is that the IP constantly change and CF is caching the DNS so it is failing with a connection failure all the time. Does anyone have a solution to this - I have asked the client to set up a

WebCharts

2011-10-14 Thread Matthew Friedman
I created a custom xml file in WebCharts and it is doing everything but I need to turn the data lables vertical in the bar chart. I can not see any options in the xml or tool to set this. any incite would be great. Thanks in advance. Matt Friedman

remove high ASCII chars from text

2011-07-11 Thread Matthew Friedman
Is there a simple way to remove bad ascii chars form a textarea. We are using TINYMEC as an html editor and it works great. the issue is when we copy from MS Word we get back chars that will not render correctly in HTML. We are using and have enhanced the UDF DeMoronize to pull bad chars but

Scripting of adding a Database - CF8

2011-05-09 Thread Matthew Friedman
Does anyone now of a library - tag or tutorial on how to script the process of adding a database to CF8. I am looking to streamline a process of on boarding new clients with out having to go into cfadmin site for each. Thanks in advance. Matt

Regex help needed

2011-02-14 Thread Matthew Friedman
I am having an issue creating a regex to strip out the XML content that Word 2007 is adding our HTML editor. we are using TINYMEC and when one of our client upgraded recently it has created a large number of issues. what we need to do is to pull out the flowing content. it starts with

Re: Regex help needed

2011-02-14 Thread Matthew Friedman
FYI I figure it out was simple once you looked at the content. since it is all in commented tags ReReplaceNoCase(str,!--(.*?)--, , ALL); Just incase anyone else has this issue. I am having an issue creating a regex to strip out the XML content that Word 2007 is adding our HTML editor.

Trying to create a Webservice for SAP Client

2010-11-02 Thread Matthew Friedman
I somewhat new to webservices (ie creating them) not consuming them... We need to create a webservice for an SAP intergrtaion that will send us an XML file and we will return an a packet of information that will tell them if it is success and provide a url to open a new window or some error

Re: question about this error - The request has exceeded the allowable time limit Tag: cfmail

2010-09-21 Thread Matthew Friedman
btw a backup is to also have a CFERROR or default error template so u can catch cfcatch errors We have a cferror on the application page and that is catching it at the end. what I did was I did not know that there was an option to set the timeout at the cfinvoke calls. ends up one of the

question about this error - The request has exceeded the allowable time limit Tag: cfmail

2010-09-20 Thread Matthew Friedman
We are getting this error to happend and I am trying to figure out how to do the following. what we are doing is running muliple external processed - ie ending job posting information out to sites. we are doing this in a trycatch and if the process errors out or we recieve an notice of a

Re: cfhttp all of a sudden getting connection failure.

2010-08-27 Thread Matthew Friedman
Could it be a caching issue. CF is set to resolve the DNS forever and the location you are hitting might have moved DNS locations. - URL the same just pointed to a new box. You can change this setting by modifying an xml file in the lib folder. google it and there are a bunch of blogs on this.

UPS calculator

2010-06-09 Thread Matthew Friedman
Does anyone know of a Coldfusion UPS calculator. We have weight, from address and to address. looking to get the cost to ship ground. thank you in advance. Matt Friedman ~| Order the Adobe Coldfusion Anthology now!

CFHTTP and APSX

2010-04-27 Thread Matthew Friedman
Ok this one has me stumped. We need to send a simple xml package to a partners site. We have set up the cfhttp to post to their site and we have tired both as an XML type and a form type. When we make the call cfhttp url=#form.post_url method=POST timeout=30 cfhttpparam type=Header

Re: CFHTTP and APSX

2010-04-27 Thread Matthew Friedman
Working with the developer on this. We have it just looking for the Request.xmlresponse value. I have tired it both ways also. Matt, Make sure they aren't expecting that form field to be submitted as an XML type and not a form field. I've run into that a few times when dealing with .NET form

Re: Can this be done?

2010-04-19 Thread Matthew Friedman
We were aware of the security issues so we do upload to a temporary location, we then check the sizing of the images and create thumbnails and reduce the size to the correct size. The weird thing is the images that do not work - are images. If we pull the file down, open it in PhotoShop and

Can this be done?

2010-04-18 Thread Matthew Friedman
We have a site where people are uploading images to our site. We are using cffile upload, checking the sizing resizing them - all is working great but about 2% of the images will sometimes be upload but not able to be displayed on the site - they might be set as CMYK or some other reason

Need to create an ecrypted zip file

2010-01-29 Thread Matthew Friedman
Running CF 7 we are using the zip.cfc to create a dynamic zip file and this works great. We need to then add a password to this. we tried to use the tag cfx_zippassword to add a password and I am getting a wierd error. if you only have one file it works, but if you add more then only the first

Cfpresenter and links

2009-12-02 Thread Matthew Friedman
Does anyone know if you can add links to slide content in cfpresenter. I tried, saw the link but it is not clickable. Any thoughs or suggestions would be great. Thank Matt Friedman ~| Want to reach the ColdFusion community

Re: Jpg as a Watermark

2009-11-19 Thread Matthew Friedman
Hi Im using a JPG watermark in coldfusion to display as a background on a PDF, but the problem is its taking up quict a bit of space as i need it on every page. is there something else I could use instead of a watermark to reduce the size of the file? heres the code im using at the

cfdocument - adding information

2009-08-10 Thread Matthew Friedman
I am currently creating a PDF with the cfdocument tag. all is great, able to do everything I need, but... I was wondering if there was a way to add a tag or something to the file that I could view if people started to pass around the files we are producing. We have protected the file with the

Regular Expression help

2008-10-31 Thread Matthew Friedman
Please help, banging my head against a wall and my deadline is up... I need to search a text filed of html formatted text to see if the user enter in bad words I have it all set to go but the regexp is giving me trouble. I am looping over the list of badwords and checking the variable skills.

Re: Regular Expression help

2008-10-31 Thread Matthew Friedman
Not sure what I am doing wrong but this is not working. I have the string kissess are goodbrkissbrthe girlfriend Kiss is a badword, and this regexp is not picking it up. Please advise and thanks for your help. Matt I think you want something like this: cfif

Re: Regular Expression help

2008-10-31 Thread Matthew Friedman
Figured out the issue, this works great. Thank you, thank you, thank you ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Re: Regular Expression help

2008-10-31 Thread Matthew Friedman
I just found an issue with this regexp cfif REFindnocase(([^a-zA-Z0-9_]#badword#[^a-zA-Z0-9_]),clean_skills) this works great if it is not the first word or only word in the string. what do I need to do to update the regexp to pick up the bad word it is the first last or only word in the

getting the color palette from an image

2008-10-17 Thread Matthew Friedman
I have a tool, here users will upload an image or logo. We use cffile to upload the image, and then resize the image with CFIMAGE. What I need to be able to do is to pull the color palette from the image and then allow the user to select the color they want to set the background of the page.

cfexecute and logparser

2008-07-02 Thread Matthew Friedman
I need to be able to parse the application log file and send a team member a list of all error or issues. I have installed the MS logparser application and I am trying to connect to it using the cfexecute. When I run the script from the command promote it works fine and I get the

unicode question

2008-06-27 Thread Matthew Friedman
I am receiving an XML feed for a partner. the first line is ?xml version=1.0 encoding=UTF-8? I am being told what they are unicoding content in the file. When I review the file in firefox I am seeing a bullet in the content. When I use the xmlparse after reading the file (they ftp the files to

Re: unicode question

2008-06-27 Thread Matthew Friedman
I fugured out the issue. the problem was that when I was reading the xml file in with the cffile tag, I did not set the charset=utf-8. Once I did that it was golden. Matt I am receiving an XML feed for a partner. the first line is ?xml version=1.0 encoding=UTF-8? I am being told what

OT - Size of a chromed out window

2008-04-30 Thread Matthew Friedman
Quick question. With LCD, CRT and laptops what would a safe maximum pixel width size of a chromed window for it to be viewed with out a horizontal scrolling bar. I am wonder if 1000px is to wide or should I go with 780px. Again, full chromed only showing the status bar and scrolling bars if

Re: weird data base issue

2008-03-26 Thread Matthew Friedman
I restarted the services, everything worked great. Are you caching queries in CF? Nic Matthew Friedman wrote: ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http

weird data base issue

2008-03-25 Thread Matthew Friedman
I have a quick question and not sure how to solve this. I am working on an application CF8 connecting to a SQL database. All of my queries are working perfectly. Then I need to add a column to one of the tables in my database. Once I add the column, the queries still work but the data they

CFQUERYPARAM Question

2008-03-06 Thread Matthew Friedman
I have to modify my MSSQL database and change some of my fields from varchars to text fields. The question I have is that i have a bunch of querys that we are using the cfqueryparam function and we are binding with the cfsqltype=varchar. Do I need to go through the entire site and change this

Re: CFQUERYPARAM Question

2008-03-06 Thread Matthew Friedman
Sorry forgot to mention. we are only storing text, HTML and wddx information in these fields. Matt ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial

Currency Exchange rates - XML format

2008-01-31 Thread Matthew Friedman
and provide a conversion table as a estimated charge. I know that CC companies and banks will charge additional fees but I need to provide an estimate. So I am trying to find a service or location that I can pull the data from (free if possible) Thanks Matthew Friedman

Re: Currency Exchange rates - XML format

2008-01-31 Thread Matthew Friedman
to provide an estimate. So I am trying to find a service or location that I can pull the data from (free if possible) Thanks Matthew Friedman ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get

Re: Currency Exchange rates - XML format

2008-01-31 Thread Matthew Friedman
trying to find a service or location that I can pull the data from (free if possible) Thanks Matthew Friedman ~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http

UUID - breaking in emails

2008-01-18 Thread Matthew Friedman
I have an application where I am using UUID as the key for accessing the record. It works great, but he issue is that we email out the link to a client, they then forward the email to an person and the email program wraps the url link breaking the uuid onto two lines. Does anyone have any

Re: cfimage generating a color pallette from an image

2007-10-21 Thread Matthew Friedman
I checked out the tag and not what I am trying to do. I did find that there is a quantize() function in ImageMagick library. Does anyone know if cfimage support anytype of this function. I searched adobe's livedocs but did not find anything. Any help would be great. Matt If not, does anyone

cfimage generating a color pallette from an image

2007-10-20 Thread Matthew Friedman
I need to generate a color pallate for a user to select the correct HEX color to match a color used in an image. can CFimage pull the colors from an image? If not, does anyone have a suggestion. Thanks Matt Friedman ~| Get

accessing a URL variabled

2007-06-15 Thread Matthew Friedman
I have a page that I want to access the url variable, but I am not naming the variabled when I pass it to the url. ie. the url is www..com/url/90193|164 I have the website pointed to a default page, so I can see the url variables when I do a cfdump but how do I access the variable to use.

Re: accessing a URL variabled

2007-06-15 Thread Matthew Friedman
Macromedia ColdFusion MX 7 Developer _ http://blog.cutterscrossing.com Matthew Friedman wrote: ~| Macromedia ColdFusion MX7 Upgrade to MX7 experience time-saving features, more productivity. http

How can I do this

2007-05-18 Thread Matthew Friedman
I am not sure how I can do this. What I need to do is to set up a site that when the user hits a url to a specific domain ie: www.domain.com/codeword I can parse the codeword off the url string and preforms some actions. The only thing is that the server will not have the directory

Re: FCKeditor spell checker

2007-05-17 Thread Matthew Friedman
If you have access to ASP on the server, try aspspellcheck. It is great, we intergrated it with TINY MCE editor but you can do it with almost any text area. and it is only about $99 for the licesnse and customizable. Matt Hi Folks Has anybody found an easy route to spell checking on FCKE

cfinvoke or cfhttp

2007-05-07 Thread Matthew Friedman
I am working on intergrating a webservice call from another vendor and I am having some strange issues. I can call the page and great a SID (their session id). I can call other functions but when I try to call the function that I need I am getting an error saying the service could not be

Re: cfinvoke or cfhttp

2007-05-07 Thread Matthew Friedman
, Matthew Friedman [EMAIL PROTECTED] wrote: I am working on intergrating a webservice call from another vendor and I am having some strange issues. I can call the page and great a SID (their session id). I can call other functions but when I try to call the function that I need I am getting

Reading cookies

2007-04-17 Thread Matthew Friedman
I am trying to figure out a way that I can read a cookie that I have set on a clients browser from another domain. The other domain is a partner of ours and will allow me to any type of script or code on their site to allow this for tracking proposes. I did try to set a cookie on the users

CFinkoke

2007-04-16 Thread Matthew Friedman
I am having an issue trying to access a webserver. I am getting a timeout error. The partner that is suppling the webservice tells me I have correct information and they are not timeing out. Any insite would be helpful since I am new to webservices. Below is the code I am using to accesss the

querying the CFMX log file

2007-04-13 Thread Matthew Friedman
I am trying to implement a scheduled task that will query the applicatin log file and dump any new error messages into an email and send it to a person montoring the application. This was simple with CF5 and the Merchent Text driver. Is there any way to do this with CFMX? Thank you in

Updating my address book

2005-10-26 Thread Matthew Friedman
. +- | Matthew Friedman | [EMAIL PROTECTED] | CTO | | GTF Systems | 300 Andover Street | Peobody, MA 01960 | work: 978 720 3503 | im: [EMAIL PROTECTED] | web: www.gtfsystems.com | | Personal Information: | 21 Lorraine Terrace | Marblehead, MA 01945 | home: 781.990.1401 | e-mail

Need to share encryption between CF and ASP environments

2005-08-22 Thread Matthew Friedman
all ready to go, but the question we are struggling with is there a way to share the an encrypted credit card that can be decrypted on both the ASP server and the CF server and processed. Any help would be great. Matthew Friedman

Migrating to CFMX (7) from CF 5

2005-08-10 Thread Matthew Friedman
We are about to start migrating an application build on CF 5. I have read everything and have a clear plan of attack, but I do have a question. We had to set our CFserver service running under a specific log in profile since we had to be able to push content to multiple servers over our internal

Need a copy of CF5

2005-06-15 Thread Matthew Friedman
I am in need of a copy of CF5 (Standard edition). We have sold some of our technology that currently is running under CF5 the client want to host it themselves. Does anyone know where we can purchase a copy and a ball park price. Thanks Matthew Friedman

Looking for a good web based html editor

2005-02-17 Thread Matthew Friedman
I am in need of a good browser base WYSIWYG editor that I can place in a form. I have used the ektron product but I need a version that is not an activeX, cross platform and requires no install. I know they have a flash version but I am not sure you can customize it. I also want to limit the

RE: CF-Talk: Digest every hour

2004-09-13 Thread Matthew Friedman
Could you please send me the migration document also. I have a client and am in the same position. Please send it off list to [EMAIL PROTECTED] Thank you. Matt -Original Message- From: CF-Talk [mailto:[EMAIL PROTECTED] Sent: Monday, September 13, 2004 7:01 AM To: CF-Talk Subject:

CFFTP - Problem with a Firewall

2004-06-01 Thread Matthew Friedman
I have been FTPing files to this client for over a month and then I have been getting errors lately.The only thing that had changed is that the client updated the firewall I can connect to the FTP server using thepassive=YES But when I try to upload a file I get the following errors On open the

Quick Help

2004-03-16 Thread Matthew Friedman
I forgot the function to get the time a page took to process in CF (ie like in the debugger) I need to run a large scheduled task each night and I would like to see how long it ran. I searched the HOF site but could not find it. Thanks Matthew Friedman [Todays Threads] [This Message

Place Holder table in a query

2004-03-15 Thread Matthew Friedman
Is there any way to create a query and return an additional varible as a place holder so if I want to perform Unions with 3 other queries I can sort on later? I am running SQL2000 server on CF5 Matthew Friedman [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User

RE: State/Province Snippet?

2003-12-28 Thread Matthew Friedman
there is a udf on cflib.org that you could use for the information. matt -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED] Sent: Friday, December 26, 2003 2:33 PM To: CF-Talk Subject: State/Province Snippet? Does anyone have a code snippet that will populate a SQL

SQL Limitations

2003-08-27 Thread Matthew Friedman
Is there a maximum number of individual database and datasources that CF5 and SQL2000 can handle. these will not be accessed at the same time, but I am wonder in there a point where you can add anymore. Matthew ~| Archives:

OT: NEED HELP WITH SELLING CF TO MAJOR COMPANY

2003-08-08 Thread Matthew Friedman
I need some help or guidance where I can get some information, documentation, and imagery on the Architecture of CF MX. I am doing a code review for a Client and I would like to help them keep the CF application that they have designed in the company, and make the case for them to not have to

executive.log is missing

2003-07-23 Thread Matthew Friedman
I am doing a consulting job for a client and logged into there CF Admin system to view the logs and the executive.log is missing? Any thought on where it is, the system is set to purge the client data once a day. Matthew Friedman

Deleting an entire folder

2003-07-22 Thread Matthew Friedman
I need to have CF delete an entire folder and all files and folders in the Structure on the web server. How would I do this, I tried with cfdirectory and it would not let me. Matthew ~| Archives:

CFFTP Issues - open error code: 0 error text: 200 STRU F ok.

2003-07-17 Thread Matthew Friedman
be great, and I have tried every combination of Turing passive mode on and off and the transfer mode. Thanks. Matthew Friedman ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http

Need for scheduling tool.

2003-06-03 Thread Matthew Friedman
I am in need of way to send individuals information that they have been scheduled for a meeting in Outlook. I once saw a cf_tag that developed an attachment that went into Outlook. Does anyone know of a tool or a why to do this? thanks Matt Friedman

error text: 530 Only client IP address allowed for PORT command.

2003-04-02 Thread Matthew Friedman
is that CF is using an internal IP address and not the external ip so their FTP server is no allowing the putfile command for security reasons. Any Help would be great Matthew Friedman ~| Archives: http://www.houseoffusion.com

changing ColdFusion Log On As

2003-03-12 Thread Matthew Friedman
the Log On as to account that use access to the mapped drives, but I am not sure what other servers, or promissions that I must create to make sure that CF runs smoothly. Any help would be great. Matthew Friedman ~| Archives

Transferring Files between Web Servers

2003-02-10 Thread Matthew Friedman
the IP address also and I get an error Error: Access is denied. (error 5). Is there any why to do this, I do not want to have to FTP between the boxes that are networked together, it would be a huge wait of processor and bandwidth. Any help would be great. Matthew Friedman

SQL Question

2003-02-05 Thread Matthew Friedman
I know that you can get the column names of a query using the query.columnlist value, but is there anyway to find out if the field is a text or numeric field? Or can set in your query the value type of a field. ie select * from users where fieldtype is Varchar Any help would be great Matthew

SQL Query - Can you do this

2003-01-29 Thread Matthew Friedman
by Date_placed,company_id /CFQUERY the issue is that the USERS table is in the database users. Any help would be great. Matthew Friedman ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http

XML string question

2003-01-22 Thread Matthew Friedman
' userpin='gtf pass' firstname='fred' lastname='miller' email='[EMAIL PROTECTED]' division='' webname='f miller'/ /org_users Matthew Friedman ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http

RE: Query to Structure with keys...

2002-12-11 Thread Matthew Friedman
you could use the valuelist(query.colname) function to do this with out the loop -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 3:13 PM To: CF-Talk Subject: RE: Query to Structure with keys... First of all, if you want to use the

RE: Query to Structure with keys...

2002-12-11 Thread Matthew Friedman
- From: Matthew Friedman [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 11, 2002 3:24 PM To: CF-Talk Subject: RE: Query to Structure with keys... you could use the valuelist(query.colname) function to do this with out the loop -Original Message- From: Ian Skinner [mailto:[EMAIL

SQL Question

2002-11-27 Thread Matthew Friedman
I have a quick SQL question: I need to keep a running count of the time a specific location is requested and I could do it with 2 queries ie. cfquery name=currentHits select hits from sitecount where id = #idpassed# /cfquery cfset new_hit = currentHits.hits + 1 cfquery name=update_currentHits

Issue with accessing a structure Var

2002-11-19 Thread Matthew Friedman
be greatly appreciated. Matthew Friedman ~| 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

Purging Client Session Vars

2002-10-02 Thread Matthew Friedman
I have a quick question about the way CF 5 Purge data for clients that remain unvisited. I have set CF to remove anything that is over 10 days but when I checked the database, I saw lastvisit dates of 3/20/02 as the last visit. Do I need to write my own service to do this or did I not set up

RE: UCASING in the DB

2002-09-20 Thread Matthew Friedman
you could also do the upper function on retrevial of the query. -Original Message- From: Bryan Love [mailto:[EMAIL PROTECTED]] Sent: Friday, September 20, 2002 2:56 PM To: CF-Talk Subject: RE: UCASING in the DB in fact, why don't you just put the upper() function in your insert query

Getting integers only on CFgraph

2002-09-17 Thread Matthew Friedman
Is there a way that you can specific that only Integers appear on the vertical bar for a line graph using the cfgraph tag? Thanks in advance Matt Friedman __ Structure your ColdFusion code with Fusebox. Get the official book

RE: clustering q's

2002-09-17 Thread Matthew Friedman
You can cluster using Professional, the trick is to use a hardware load balancing system. You do get better support for the load balancer with CF enterprise but it is not required. a couple of suggestions. 1) if you are going to use session vars, then you will need to use stick tables on the

RE: textarea

2002-09-17 Thread Matthew Friedman
try this code it works great script language=JavaScript !-- !-- Begin function textCounter(field, countfield, maxlimit) { if (field.value.length maxlimit) // if too long...trim it! field.value = field.value.substring(0, maxlimit); // otherwise, update 'characters left' counter else

RE: Nth Record Selection Set

2002-09-01 Thread Matthew Friedman
is there a limit function ins SQL Server 2000? -Original Message- From: Jesse Houwing [mailto:[EMAIL PROTECTED]] Sent: Sunday, September 01, 2002 8:17 AM To: CF-Talk Subject: Re: Nth Record Selection Set Jim Gurfein wrote: Hi List, Sorry for sending this again, but the list was

RE: Looping depending on CFIF Statement

2002-08-29 Thread Matthew Friedman
try placing the cfloop and /cfloop tage both inside the cfif statement ie CFIF LoopYes EQ True cfloop index=count from=1 to=10 /cfloop cfelse cfloop index=theindex from=1 to=2 The index Is CFOUTPUT#theindex# /CFOUTPUT /cfloop /CFIF

SQL Help

2002-08-20 Thread Matthew Friedman
Does anyone have a good site to bone up on SQL. I am looking to beef up my knowledge of stored procedures and learn all of the functions that MS SQL 2000 support. Thanks. Matt Friedman __ Your ad could be here. Monies

RE: refresh and back buttom

2002-08-20 Thread Matthew Friedman
You could use the meta tag expires and expire the page immediatly from the browes cache. Remeber to use GMT for the time var. matt -Original Message- From: Tim Do [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 4:35 PM To: CF-Talk Subject: RE: refresh and back buttom I

RE: Post it like notes.

2002-08-20 Thread Matthew Friedman
if you are looking at the dhtml version, check out dynamicdrive.com they have some great stuff there that might solve your needs. matt -Original Message- From: Neil H. [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 5:24 PM To: CF-Talk Subject: Post it like notes. I am

RE: rotating mail servers - cfmail...

2002-08-16 Thread Matthew Friedman
Why not specific the server tag in the cfmail based on a round robin or looping list. Matt -Original Message- From: Buddy [mailto:[EMAIL PROTECTED]] Sent: Friday, August 16, 2002 12:33 PM To: CF-Talk Subject: rotating mail servers - cfmail... Hey everyone, I'm writing a mail app and

RE: cfchart - frequency distributions..

2002-08-13 Thread Matthew Friedman
use the #int(variable)# function will return the smallest whole number matt -Original Message- From: Al Musella, DPM [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 13, 2002 6:30 PM To: CF-Talk Subject: cfchart - frequency distributions.. I am trying to display results from a

Callling Client or Session varibles from a javascript

2002-08-09 Thread Matthew Friedman
I have a need to read and set client or session variable from javascipt. I am working on a project that has to intergrate content that uses a standard set of calls to an api to send and recieve data. I have set up the system to use a frame with the API name to recieve the calls and I can catch

RE: Callling Client or Session varibles from a javascript

2002-08-09 Thread Matthew Friedman
and most of the links were broken ... cfset x = structnew() cfset x.myvar = 8 cfwddx action=CFML2JS input=#x# output=y toplevelvariable=z script language=javascript cfoutput#y#/cfoutput /script Dan -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09

RE: Callling Client or Session varibles from a javascript

2002-08-09 Thread Matthew Friedman
- From: Matthew Friedman [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09, 2002 3:20 PM To: CF-Talk Subject: RE: Callling Client or Session varibles from a javascript I got that, but how do I call the other frame as a read only and then pull the data back to the first frame to report back

Strange Error

2002-08-09 Thread Matthew Friedman
I got a strange error and I am not sure what it is about. For over a Year everything has been great with my configuration but I am getting this error just now. Any help? Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.0), ODBC Error Code = 01000 (General warning) [Microsoft][ODBC SQL Server

RE: Client Variables vs. Session Variables

2002-08-09 Thread Matthew Friedman
are you in a clustered server configuration? -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED]] Sent: Friday, August 09, 2002 11:35 PM To: CF-Talk Subject: Client Variables vs. Session Variables Which and why would you prefer either one of these to hold shopping cart

RE: Client Variables vs. Session Variables

2002-08-09 Thread Matthew Friedman
Message - From: Matthew Friedman [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, August 09, 2002 10:51 PM Subject: RE: Client Variables vs. Session Variables are you in a clustered server configuration? -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED

RE: Coldfusion News Tickers

2002-08-02 Thread Matthew Friedman
if you look at the code it is done as an Iframe that pulls in a file that has all of the code you would need to hack it out. Matt -Original Message- From: Ian Vaughan [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 11:19 AM To: CF-Talk Subject: Coldfusion News Tickers Hi

RE: Coldfusion News Tickers

2002-08-02 Thread Matthew Friedman
here is the code from the iframe !-- Ticker version 1.09 -- HTML HEAD TITLETicker/TITLE STYLE TYPE=text/css !-- A { font-family: Verdana, Arial, Helvetica, sans-serif, MS sans serif; font-size: 11px; line-height: 11px; text-decoration: none; color: #66; font-weight: bold;

RE: Convertnig MS Access database to SQL server

2002-07-28 Thread Matthew Friedman
When you use the upsizing wizard you can define each field. So make sure that you are telling the SQL that you want the Access PK to be PK. matt -Original Message- From: Ewok [mailto:[EMAIL PROTECTED]] Sent: Sunday, July 28, 2002 4:48 PM To: CF-Talk Subject: Convertnig MS Access

RE: Populating a form with query results

2002-07-22 Thread Matthew Friedman
use the form attribute value=#query.colname# will add the value to the field. If you are using the cfinput value you will not need to wrap the call with the cfoutput if you are using just input do not forget to use the cfoutput tags. matt -Original Message- From: Yexley Robert D Contr

RE: Card Processors

2002-07-18 Thread Matthew Friedman
can download their SDK. is this where i get the custom tag? from a usability standpoint, how's the cf tag? have you had technical problems with verisign? (i should bite my tongue for THAT. :)) co. -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, June

Dynamic form actions

2002-07-18 Thread Matthew Friedman
Is there a way to have a form with two images as buttons, but will send the form fields to a different url. i.e. you have two form fields Username Password and image A and Image B If you hit image A the form is posted to www.a.com and if you hit image B the form is posted to www.b.com the

RE: Dynamic form actions

2002-07-18 Thread Matthew Friedman
=image1.gif onclick=document.formname.action = 'page1.cfm'; document.formname.submit(); input type=Image src=image2.gif onclick=document.formname.action = 'page2.cfm'; document.formname.submit(); - Matt Small -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED]] Sent: Thursday

RE: Dynamic form actions

2002-07-18 Thread Matthew Friedman
with this.formname.action and replace formname with the name of the form. - Matt Small -Original Message- From: Matthew Friedman [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 18, 2002 1:10 PM To: CF-Talk Subject: RE: Dynamic form actions I tried this code. Works great in IE

  1   2   >