RE: [KCFusion] OT: Desktop automation text transfer

2003-08-27 Thread Ellis, Randy
Try using VBA in Excel, Word, or possibly Outlook. Excel Macro example: Sub GetEmails() Dim myApp As New Outlook.Application Dim myNS As NameSpace Dim myFolder As MAPIFolder Dim myItems As Items Dim intLoopCounter As Integer, Idx As Integer Set myNS =

RE: [KCFusion] Messenger Ads (OT)

2003-04-01 Thread Ellis, Randy
Stopping Advertisements with Messenger Service Titles http://www.microsoft.com/windowsxp/pro/using/howto/communicate/stopspam.asp Randy Ellis Senior Programmer Analyst City of Overland Park -Original Message-From: Adaryl Wakefield [mailto:[EMAIL PROTECTED]Sent: Tuesday,

RE: [KCFusion] IsNumeric function and hex values?

2003-03-19 Thread Ellis, Randy
It has to do with scientific notation. We are more familiar with 74e6, where this is 74 times 10 to the 6th power or 74 times 100 or 7400. The d instead of an e indicates an integer instead of a real number. Randy Ellis Senior Programmer Analyst City of Overland Park -Original

RE: [KCFusion] IsNumeric function and hex values?

2003-03-19 Thread Ellis, Randy
Correction. Scientific Notation D indicates integer notation. E indicates exponential notation F indicates floating point notation. -Original Message- From: Ellis, Randy [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 11:07 AM To: '[EMAIL PROTECTED]' Subject: RE: [KCFusion

RE: [KCFusion] MD5 Hash

2003-02-24 Thread Ellis, Randy
Try looking at the MacroMedia Developer Exchange website: Custom tag: CF_Authorize_Net_3 http://devex.macromedia.com/developer/gallery/info.cfm?ID=C0C7D513-2CD6-11D4 -AA9800508B94F380method=Full or Custom tag: CF_HMAC http://devex.macromedia.com/developer/gallery/info.cfm?ID=B60D8F14-FC9F-11D6

RE: [KCFusion] Macromedia Studio MX

2003-01-03 Thread Ellis, Randy
Title: Message You might have them upgrade to MX 6.1 http://www.macromedia.com/support/dreamweaver/releasenotes/mx/dwmx61_fixed.html Bugs fixed in Dreamweaver MX 6.1 There are intermittent occurrences of files being truncated or losing data when using Get/Put. (76640)This occurs under

RE: [KCFusion] ...in the works...

2002-10-23 Thread Ellis, Randy
Ryan, are you attending DevCon 2002 next week? -Original Message- From: Ryan Hartwich [mailto:hartwichr;asme.org] Sent: Tuesday, October 22, 2002 3:05 PM To: [EMAIL PROTECTED] Subject: [KCFusion] ...in the works... FYI I'm working on some presentation materials for a possible meeting

RE: [KCFusion] SSN Validation

2002-08-16 Thread Ellis, Randy
Chris, you may want to check out the "Social Security Number Verification" web page: http://www.ssa.gov/employer/ssnv.htm Randy Ellis Senior Programmer Analyst City of Overland Park -Original Message-From: Chris Holdman [mailto:[EMAIL PROTECTED]]Sent: Friday, August 16, 2002

RE: [KCFusion] Register now for Macromedia DevCon 2002

2002-07-29 Thread Ellis, Randy
Ryan, last year DevCon was held at the Walt Disney World Swan and Dolphin Hotels. The room rates where $235 + $34 taxes per night. Randy -Original Message- From: Ryan Hartwich [mailto:[EMAIL PROTECTED]] Sent: Monday, July 29, 2002 1:06 PM To: [EMAIL PROTECTED] Subject: [KCFusion]

RE: [KCFusion] CFMAILPARAM

2002-05-30 Thread Ellis, Randy
Try using the TYPE=HTML attribute inside of CFMAIL. Example: CFMAIL FROM=fromname.emailserver.com TO=toname.emailserver.com SUBJECT=Place email subject here TYPE=HTML table TR TDTest Application/TD

RE: [KCFusion] Parsing two lists

2002-05-02 Thread Ellis, Randy
CFIF IsDefined(form.Item) AND IsDefined(form.ItemQty) cfset ItemArray = ListToArray(Item) cfset ItemQtyArray = ListToArray(ItemQty) CFIF ArrayLen(ItemArray) EQ ArrayLen(ItemQtyArray) CFLOOP FROM=1 TO=#ArrayLen(ItemArray)# INDEX=Idx

RE: [KCFusion] CF_Wait Tag

2002-01-17 Thread Ellis, Randy
Title: CF_Wait Tag Try the CFX_Sleep tag. -Original Message-From: Rick Eidson [mailto:[EMAIL PROTECTED]]Sent: Thursday, January 17, 2002 10:17 AMTo: CF-List (E-mail)Subject: [KCFusion] CF_Wait Tag Where can I get this CFX_Wait Tag i don't see it in the tg Gallery.

RE: [KCFusion] Scheduled Datasource Updating

2001-12-13 Thread Ellis, Randy
We have a scheduled BAT file running on our web server each night that updates a database file. The unfortunate thing is we actually down the website to perform the updates and then bring the website back up. The BAT file looks look this: net stop WORLD WIDE WEB PUBLISHING SERVICE C:\Update.exe

RE: [KCFusion] arrays and querys

2001-10-19 Thread Ellis, Randy
You can view the results of a Query as an array. So your query... CFQUERY NAME="test" DATASOURCE="ReservationSystem"SELECT date_numFROM dbo.DatesTimes Where class_num = 4;/CFQUERY If test.recordcount is greater than 0, you can access the results by using the following syntax.

RE: [KCFusion] Creating a CSV file

2001-10-15 Thread Ellis, Randy
Have you tried placing single quotes around the text field? Change #LocSendTo1# to '#LocSendTo1#' Change output="#ResaleNumber#,#LocSendTo1#,#DeliveryStreet#,#DeliveryCity#,#DeliveryState#,#DeliveryZip#" to

RE: [KCFusion] dynamic dropdowns

2001-05-17 Thread Ellis, Randy
Here is a working solution I just created. If the code is not clear, email me with questions at [EMAIL PROTECTED] You will need to modify the code for your stored procedures and default values. html head titleStates and Counties/title SCRIPT LANGUAGE=JavaScript // Load every county