Re: Submitting a form inside of cfdiv

2008-02-01 Thread Sam Farmer
If you have multiple cfforms and cfdivs on a page make sure to give each one distinct names and things should work fine. Otherwise you will get some interesting behavior. On Feb 1, 2008 11:41 AM, Dave Watts [EMAIL PROTECTED] wrote: cfform name cfinput type=text yada cfinput type=text

Re: Forms within CFWINDOW

2008-01-09 Thread Sam Farmer
Yeah, your right, I see what Pete is after now. The easiest way is to use cfform otherwise you need to use the ColdFusion JavaScript functions. I misread and thought you wanted a form on the main page to submit to a cfwindow. On Jan 8, 2008 8:01 PM, Azadi Saryev [EMAIL PROTECTED] wrote: iirc,

Re: Forms within CFWINDOW

2008-01-08 Thread Sam Farmer
Pete, You mean something like this: html head body script type=text/javascript function submitPoll() { ColdFusion.navigate(pollEcho.cfm,pollResults,,,POST,pollForm); ColdFusion.Window.show(pollResults); } /script form name=pollForm id=pollForm input type=text name=echoMe input

Re: 2 cfforms on same page problem

2007-11-07 Thread Sam Farmer
Do the forms have different names? On Nov 7, 2007 2:16 PM, Michael Appenzellar [EMAIL PROTECTED] wrote: ColdFusion 8: I have 2 cfforms on the same page. One in not a flash form, the other is. The flash form won't work because I have another cfform on the same page. Any thoughts on how to fix

Re: Weird CF8 issue, Customer gets asked for RDS login after redirect from app login

2007-11-07 Thread Sam Farmer
That occurs when the user is requesting a cfc directly and the access for the method is not remote. It is strange that only one person sees this though. On Nov 7, 2007 11:18 AM, Keith, Jeremy [EMAIL PROTECTED] wrote: Also the page that it's redirecting to is the CFC explorer

Re: Custom tags per application in CF 8

2007-08-17 Thread Sam Farmer
Claude, I wrote a blog posting on how to do it (its real easy but you do have to use Application.cfc) http://samfarmer.instantspot.com/blog/index.cfm/2007/6/1/ColdFusion-8-Per-App-Dynamic-Mappings-and-Custom-Tag-Paths-Create-Dropable-Applications Cheers, Sam On 8/17/07, Claude Schneegans

Re: Query Result Problem

2007-07-12 Thread Sam Farmer
Can you share your code? On 7/12/07, Bill Fears [EMAIL PROTECTED] wrote: We have a query that returns 53 records in Query Analyzer (which is correct) but that same query in a CF Page will only return 50 records. The query is not cached, no maxrows, no TOP keyword and there is nothing that

Re: cfchart reversal?

2007-04-20 Thread Sam Farmer
making it negative and messing with the scale. Just thinking out loud. HTH, Sam Farmer On 4/19/07, Will Tomlinson [EMAIL PROTECTED] wrote: I have a ranking system in which items are scored, say 1-3. 1 being the highest ranking. I'm displaying these in a bar chart, but the item

Re: changing directory

2007-04-13 Thread Sam Farmer
and a status code of 302 (I think) as that will tell browsers and search engines that the page has moved permanently. See Google for more. Cheers, Sam Farmer http://samfarmer.instantspot.com/blog/ On 4/12/07, daniel kessler [EMAIL PROTECTED] wrote: I'm in a shared hosting environment, so I

pie cfchart, start with a vertical?

2007-03-09 Thread Sam Farmer
Hi, i have the following code for a chchart: cfchart chartheight=190 chartwidth=160 cfchartseries type=pie colorlist=Red,Green datalabelstyle=none cfchartdata item=Used value=5 cfchartdata item=Free 245 MB

Re: Browserhawk / browser stats generation?

2007-03-09 Thread Sam Farmer
I believe all of the stats you mention are included in the free version of Google Analytics. http://www.google.com/analytics/ Sam On 3/9/07, Andy Matthews [EMAIL PROTECTED] wrote: My company uses a product called Browserhawk. This is a middleware that runs on the first page the user hits on

Re: dynamic form in SQL Server

2007-01-26 Thread Sam Farmer
Brad, Here is a system stored proc for getting columns: cfstoredproc procedure=sp_columns datasource=#variables.dsn# cfprocparam type=In cfsqltype=CF_SQL_CHAR value=#arguments.table# null=No cfprocresult name=getColSP /cfstoredproc sp_tables gets tables, sp_pkeys gets primary

Re: Custom Tag in CFC not working

2006-11-15 Thread Sam Farmer
Double check that the prefix you specify in the cfimport tag is mycustomtag otherwise CF will just ignore that mycustomtag call. Cheers, Sam On 11/15/06, Chris Velevitch [EMAIL PROTECTED] wrote: On 11/15/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: What does it do It writes to a

Question About xtreme-host.com WAS Best CF7 Hosting company

2006-11-14 Thread Sam Farmer
Dawn, I use xtreme-host.com and am very happy with them. However, do you have problems with keeping an FTP connection? Its my one gripe but I'm unsure if its my software, ISP, etc or xtreme-host.com. Cheers, Sam On 11/2/06, Dawn Sekel [EMAIL PROTECTED] wrote: I use xtreme-host.com. I have

Re: Ajax and CF...*sigh*...again...

2006-10-06 Thread Sam Farmer
I started by working with an example like below and found it quite useful. For my current project I am going to use ajaxCFC which I'm liking as it does a lot of stuff and is simple to implement. Cheers, Sam On 10/6/06, Kevin Aebig [EMAIL PROTECTED] wrote: Here's a painfully simple

Re: cfchart jpg format

2006-10-02 Thread Sam Farmer
I've tried this before and it doesn't work because cfchart does not actually return an image (of flash file) but instead the html to call that image that is has placed on the server. In other words what cfchart below returns is something like: img src=/temp/123123.jpg and not the actual image.

Re: Oracle XE CFMX7 Standard

2006-09-22 Thread Sam Farmer
Just set this up on a dev machine. The only trick was to use 'XE' as the SID Name. Everything else worked with the usual Oracle settings and the provided Oracle driver. Cheers, Sam On 10/31/05, Pete Ruckelshaus [EMAIL PROTECTED] wrote: Now that Oracle has released a free database

Re: Datediff help

2006-08-16 Thread Sam Farmer
The problem lies in the order that things are being executed. The DateDiff function is being processed by CF before it goes to the database. So CF is looking for a variable called MEB.MembShpDate and ORD.ProcessedDate not the database columns! You want to use the database function for dateDiff

Re: Problem with cflogoff tag

2006-07-24 Thread Sam Farmer
Can you provide the code? For both logging in and logging out. Also livedocs provide a good background for this tag: http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0289.htm Cheers, Sam On 7/24/06,

Re: Coldspring

2006-07-10 Thread Sam Farmer
Take a look at the Factories Presentation by Sean Corfield (http://corfield.org/blog/index.cfm). That helped me understand it a lot. Cheers, Sam On 7/10/06, Robertson-Ravo, Neil (RX) [EMAIL PROTECTED] wrote: I have been reviewing Coldspring recently and to be honest - I don't get it :-) even

Re: Strip dots out of ip address

2006-06-27 Thread Sam Farmer
On 6/27/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I'm trying to use it as part of a unique numeric value for e-mail confirmation. Be careful though. IP addresses can change all the time. I rebooted today and got a different one. Cheers, Sam

Re: form.fieldnames does not bring all values.

2006-06-27 Thread Sam Farmer
Any form variable ending in _date or _time is reserved. http://livedocs.macromedia.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhelp.htm?context=ColdFusion_Documentationfile=0188.htm Cheers, Sam On 6/27/06, Brian Dumbledore [EMAIL PROTECTED] wrote: Here is a weird one unless I

Re: SOT: Getting data into a web site

2006-06-13 Thread Sam Farmer
If the spreadsheets are in a standard layout you could allow users to upload them. Then in CF connect to the spreadsheet via a datasource and get the data that way. Cheers, Sam F On 6/13/06, Chris Mueller [EMAIL PROTECTED] wrote: Actually, applications like Google Spreadsheets support this

CFC Weird 500 Error

2006-05-22 Thread Sam Farmer
Something strange has just started happening on our production server. CreateObject calls to cfc's cause CF to output this and then stop: 500 cfConventionSessionUtility2ecfc1296777452$funcSEARCHSESSIONS I can catch it using cferror and I get this stack trace: java.lang.NoClassDefFoundError:

Re: Question about counting in SQL

2006-04-27 Thread Sam Farmer
Chris, You can use the WHERE clause. This should work fine: SELECT Author.AuthorID, Author.AuthorName, COUNT(*) AS NumBooks FROM Author RIGHT JOIN Book ON Author.AuthorID = Book.AuthorID WHERE Book.Active =1 GROUP BY Author.AuthorID Cheers, Sam F On 4/27/06, Chris Mueller [EMAIL PROTECTED]

Re: Why is there query.recordcount with non-SELECT queries?

2006-04-20 Thread Sam Farmer
On 4/18/06, Mike Klostermeyer [EMAIL PROTECTED] wrote: I wouldn't say that. Sometimes it is helpful to know how many records were updated or deleted without having to do a select query beforehand. Is there a Java service factory way of getting at this information? CF7 has a result attribute

Re: Any way to suppress a tag at the applicaiton level?

2006-03-16 Thread Sam Farmer
The cftimer tag only runs when debugging is turned on AND the option called 'Timer Information' is checked. And hopefully you have debugging turned off in production. Cheers, Sam F On 3/16/06, S. Isaac Dealey [EMAIL PROTECTED] wrote: I was wondering if it's possible to suppress the

Strange, strange CFC Error: Null Pointer

2006-03-15 Thread Sam Farmer
I am getting the strangest CFC error on the code below (and all cfc's I have on this site). They work in development but not in production. Any ideas what is going on? Code: cfcomponent name=test cffunction access=remote name=out cfdump var=#server# /cffunction /cfcomponent URL:

Re: Strange, strange CFC Error: Null Pointer

2006-03-15 Thread Sam Farmer
Message- From: Sam Farmer [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 15, 2006 8:10 AM To: CF-Talk Subject: Strange, strange CFC Error: Null Pointer I am getting the strangest CFC error on the code below (and all cfc's I have on this site). They work in development

Re: getDate()

2006-03-06 Thread Sam Farmer
Its probably because in SQLServer getDate() returns a full date with time information down to the millisecond. Depending on how accurate your dates are this might be a simple fix: dateAdded BETWEEN getDate()-1 and getDate() Cheers, Sam F On 3/6/06, Richard Cooper [EMAIL PROTECTED] wrote: Hi

Re: cfdocument how to use on a .cfm to print a form?

2006-02-15 Thread Sam Farmer
Something like this is, I think, what you are looking for: cfif structKeyExists(url,print) cfdocument /cfif cfform content etc cfif structKeyExists(url,print) /cfdocument /cfif Then have a link a href=#cgi.script_name#?print=Print This/a Cheers, Sam F On 2/15/06, carol Tobey [EMAIL

Re: page layout: cfmodule vs customtags

2006-02-12 Thread Sam Farmer
cfimport is quicker I believe than cfmodule from a processing point of view. On 2/12/06, dave [EMAIL PROTECTED] wrote: you know what i mean ray. ok lets rephrase thats cfmodule vs cfimport ~Dave the disruptor~ ~| Message:

Re: Smallest, coolest function I ever wrote: Struct()

2006-01-05 Thread Sam Farmer
You could use the built in listToArray myarray = listToArray('homer,marge,bart'); Cheers, Sam F On 1/4/06, Ryan Guill [EMAIL PROTECTED] wrote: How about one for an array? This is pretty cool. ~| Message:

Re: Dumb CF methodology question

2005-12-19 Thread Sam Farmer
I wrote about a framework we use, CFMVC, for CFDJ: http://coldfusion.sys-con.com/read/49185.htm Cheers, Sam F On 12/16/05, Sean Corfield [EMAIL PROTECTED] wrote: On 12/16/05, Phill B [EMAIL PROTECTED] wrote: I know there is Mach II and Model-Glue out there but are there any other MVC

Re: CF Flash Forms and FCKeditor - do they work together?

2005-12-19 Thread Sam Farmer
It won't work. In Flash forms you can only use simple html and nothing anywhere near as complex as required for FCK Editor. Flex has a built in WYSIWYG editor but its not availible to flash forms (though maybe in a future release?) Cheers, Sam F On 12/19/05, David Adams [EMAIL PROTECTED]

Best Practice: Additional Functions in Application.cfc

2005-12-09 Thread Sam Farmer
Working on a website where cfc's will go in a cfc folder. In an effort to not cause additional mappings I created a function called newObj that I want to put in the application scope. The easiest way to do this is to put the function in the Application.cfc. What are peoples thoughts on a best

Re: Custom Tags Folder

2005-12-07 Thread Sam Farmer
Take a look at using cfimport taglib=, that may solve your problem, although you will have to change how you call each tag. You can define a custom tag folder in the administrator but they are global settings so would affect all code you run on that machine. Cheers, Sam F On 12/7/05, Brian

Re: Bar Code Scanners ColdFusion

2005-12-01 Thread Sam Farmer
Our registration system prints a bar code on the back of attendees name badges. Attendees can then let exhibitors scan their barcode to get all their contact information. We use TBarCode software to create the bar code (it produces an image that we put in a web page). There are also fonts that

Re: Get path of page calling cfinvoke?

2005-11-29 Thread Sam Farmer
GetCurrentTemplatePath() might get you what you want. But Barney's second paragraph hits the nail on the head. CFC's should never need this type of information (except _perhaps_ for logging?? and if you needed that). Cheers, Sam F On 11/28/05, Barney Boisvert [EMAIL PROTECTED] wrote: You

Re: PDF Question

2005-11-18 Thread Sam Farmer
Thats a great start. I'm on CF 7 so didn't install iText but was able to get your code to work fine and display the number of pages. I then created an object to the concat_pdf class and get it to return methods. I can call all methods except main which is the one I want. Error says The selected

Re: PDF Question

2005-11-17 Thread Sam Farmer
Bryan and Neil, Is there any chance you could post some code showing how you did this? I'm about to start a project where I will need to do exactly this. Thanks, Sam On 11/17/05, Bryan Stevenson [EMAIL PROTECTED] wrote: iText from SourceForge will do thatand iText is installed as part of

Re: PDF Question

2005-11-17 Thread Sam Farmer
Yeah, I'm familiar with both createObject and Java. It looks like com.lowagie.tools is the package needed for concatenating. I'll see what I can do. Cheers, Sam F On 11/17/05, Bryan Stevenson [EMAIL PROTECTED] wrote: I haven't done itbut I've seen the docs on SourceForge (and have use

Re: Is this possible

2005-10-27 Thread Sam Farmer
It sounds like you already have next Monday worked out after that do something like this: cfloop from=1 to=20 index=variables.ii option#dateAdd(ww,variables.ii,variables.firstMonday)# /cfloop Cheers, Sam On 10/27/05, Kurt Kaptein [EMAIL PROTECTED] wrote: I need quick advice on if this is

Re: cferror problem

2005-10-14 Thread Sam Farmer
Most likely you have an error in CustomError.cfm. If CF can't call the error template page it gives the error of the original page. Cheers, Sam On 10/14/05, Chad McCue [EMAIL PROTECTED] wrote: I am running CF7on windows 2003. I am trying to use CFERROR in my application.cfm file and it

Re: security suggestions?

2005-10-14 Thread Sam Farmer
On 10/14/05, Ian Vaughan [EMAIL PROTECTED] wrote: --snippet--- WHERE Password = '#Hash(form.Password, SHA-512)#' /CFQUERY Any ideas on where I am going wrong? Its hashing the string form.Password not the value of form.passwordbecause of the quotes. Try: WHERE Password =

Re: will cfimport slow down your page?

2005-10-14 Thread Sam Farmer
I use it all the time and have seen no change in performance. Cheers, Sam On 10/14/05, Johnny Le [EMAIL PROTECTED] wrote: Hi, If you have a library of custom tags, should you use cfimport prefix='ct'/ to import the whole library in? This way, I can use ct:tagName like in Java instead of

CFDocument, FlashPaper and Table Borders

2005-10-13 Thread Sam Farmer
I am having problems with CFDocument creating a Flashpaper and then displaying table cell borders. The pure html in a browser shows borders but Flashpaper completely ignores the Styles whether in the td or in a style block. Any ideas? Here is the code: cfdocument format=flashpaper style

Re: QueryNew() question

2005-05-10 Thread Sam Farmer
In CF7 you can specify the column type: *QueryNew*(*columnlist *[, *columntypelist*]) Sam ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking and documenting hours spent on a

Re: ListAppend and delimiter question

2005-03-30 Thread Sam Farmer
I'll leave it to others to classify it as a bug or a feature. I get around it by doing this: cfset tmpWhere = ListAppend(tmpWhere,c,~) and then when done with all my list appends: cset tmpWhere = replace(tmpWhere,~, AND ,all) Cheers, Sam On Wed, 30 Mar 2005 11:07:53 -0800, Charles Heizer

Re: Empty list for an IN clause

2005-03-28 Thread Sam Farmer
Put the whole clause in a cfif statement: cfif Safetrace.recordCount RDT_MOBLID IN (cfqueryparam value=#valueList(Safetrace.R_MDL_MOBLID)# list=yes cfsqltype=cf_sql_varchar) /cfif Sam On Mon, 28 Mar 2005 09:19:35 -0800, Ian Skinner [EMAIL PROTECTED] wrote: What is the simplest way to

Re: Empty list for an IN clause

2005-03-28 Thread Sam Farmer
That will work fine but if there is an empty list you are asking the database to search for a clause that you know it will not find. Depending on your set up this could cause a performance hit. Sam On Mon, 28 Mar 2005 09:27:27 -0800, Ian Skinner [EMAIL PROTECTED] wrote: Ok, this seems to be

Re: randomize

2005-03-25 Thread Sam Farmer
How about: #queryName.questID[randRange(1,queryName.recordCount)]# Haven't tested it so the randRange may need to be pulled out and set to a variable. Cheers, Sam On Fri, 25 Mar 2005 12:31:51 -0500, CFDEV [EMAIL PROTECTED] wrote: Hi, I have a query and i want to display the results

Re: Looping through lines in a file

2004-08-27 Thread Sam Farmer
You could also use ListToArray instead of multiple listgetat calls. cfset arItems = ArrayNew(1) cfloop list='#myish#' index='myishrow' delimiters=' ' cfset arItems = listToArray(myishrow) /cfloop - Original Message - From: joe velez [EMAIL PROTECTED] Date: Fri, 27 Aug 2004 14:53:16

Re: ColdFusion and MVC model...

2004-07-19 Thread Sam Farmer
In addition to others mentioned I have found this site to be very useful: http://www.benorama.com/coldfusion/index.htm Personally I don't like Fusebox and have been trying out other MVC implementations before deciding on one to go forward with. Thanks, Sam [Todays Threads] [This Message]

Re: SQL UNION Trouble

2003-12-09 Thread Sam Farmer
What error message are you getting? Also your column order is different in the two queries which will cause problems.Make them the same order (email, firstname, lastname) and see if that works. Sam [EMAIL PROTECTED] 12/09/03 11:39AM In the following query I want the email addresses from two

cfstoredproc yields no response

2003-12-04 Thread Sam Farmer
This is a bizzare one.I have a stored procedure that updates a status field as soon as it is called and when called through SQLPlus works just fine.When I call it from ColdFusion I get neither an error message nor any indication the procedure runs.Any ideas? Here is the code: cfstoredproc

Re: Shall I start Pulling my Hair

2002-12-03 Thread Sam Farmer
I've used aliases longer than 11 characters in the same set up as you have so thats not it. My guess is some sort of reserved word issue? Cheers, Sam - Original Message - From: Shahzad.Butt [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, December 03, 2002 10:23 AM

Re: Can a form pass a structured variable to target template? (EBW)

2002-11-26 Thread Sam Farmer
Look into using wddx and the cfwddx tag. In short you would create a structure, use the cfwddx to convert it to wddx, use a hidden variable to pass the wddx packet to the receiving page and then use cfwddx to convert the packet back to a structure. Its exactly what wddx and cfwddx is designed

SOT: 2D Barcodes

2002-11-11 Thread Sam Farmer
All, Has anyone any experience printing 2d barcodes in the pdf417 format with CFMX? Not finding too much on the web about it. Cheers, Sam ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

Re: Hidden frame in frameset

2002-11-01 Thread Sam Farmer
frameset rows=90,0,*,35 frameborder=no id=allFrames name=allFrames In the example above the second frame will be hidden HTH Sam - Original Message - From: Kris Pilles [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Friday, November 01, 2002 2:28 PM Subject: Hidden frame in

Re: Need assistance with listbox on a form

2002-10-31 Thread Sam Farmer
Or you can use StructKeyExists(form,fieldname) HTH, Sam - Original Message - From: CF-DEV [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, October 31, 2002 2:31 PM Subject: RE: Need assistance with listbox on a form On the action page test to see if the value exists:

Re: Sending multi-part messgaes with CFMAIl and CFMX

2002-10-22 Thread Sam Farmer
This should work for html and plain text. cfscript variables.boundary=Replace(CreateUUID(), -, , 'all'); variables.contenttype=multipart/alternative; boundary=#boundary#; /cfscript cfmail to=#variables.emailTo# from=#getEmailInfo.emailFrom# subject=#getEmailInfo.emailSubject# cfmailparam

Re: How Good is the Job Market for ColdFusion?

2002-10-16 Thread Sam Farmer
Not surprising really when you consider it takes an asp programmer about 4 times longer to do something!! :) - Original Message - From: Mike Brunt [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 16, 2002 2:06 PM Subject: RE: How Good is the Job Market for

Re: PDF to HTML on-the-fly

2002-10-15 Thread Sam Farmer
There is the html2pdf3 tag in the gallery that works quite well. And its free. Sam - Original Message - From: Joshua Miller [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 15, 2002 1:13 PM Subject: RE: PDF to HTML on-the-fly How about the other way around?

Re: HTML2PDF3 on CFMX

2002-10-15 Thread Sam Farmer
I have it working fine on two different machines running cfmx. Make sure when you installed the htmldoc.exe file that you ran it...its a self-extracting file. That got me for about an hour. Heres a sample of the tag: CF_HTML2PDF3 myHTMLDOC=c:\cfusionMX\bin\pdf\htmldoc.exe

Re: group by in cfoutput

2002-10-15 Thread Sam Farmer
look at the group attribute of cfoutput. Should do what you want. HTH, Sam - Original Message - From: Dowdell, Jason G [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, October 15, 2002 2:30 PM Subject: group by in cfoutput Hi all, Here's a bit of a challenge. I

Re: cfflush on mx small data pools

2002-10-09 Thread Sam Farmer
My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Sam Farmer [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 08, 2002 6:07 PM To: CF-Talk Subject: cfflush on mx small data pools I am trying to flush a very small amount of data on mx

cfflush on mx small data pools

2002-10-08 Thread Sam Farmer
I am trying to flush a very small amount of data on mx but don't seem to be able to get the following to flush: cfoutput html head titleProcessing./title /head body processingbr /cfoutput cfflush interval=1 I would like it to flush immeadiately--its a payment page and I want to

Re: CF 5 Hack

2002-10-07 Thread Sam Farmer
Yeah, change the registry setting. Either with the cfregistry tag or regedit. cfregistry action=SET branch=HKEY_LOCAL_MACHINE\Software\Allaire\ColdFusion\CurrentVersion\Server entry=UseAdminPassword type=String value=0 Cheers, Sam - Original Message - From: Mark A. Kruger - CFG

Re: Converting new lines to br

2002-10-02 Thread Sam Farmer
paragraphFormat() function cheers, Sam - Original Message - From: Luis Lebron [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, October 02, 2002 5:52 PM Subject: Converting new lines to br I'm new to Cold Fusion so bear with me. Is there a way of converting new

Re: Query of Queries Error

2002-10-01 Thread Sam Farmer
, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Sam Farmer [mailto:[EMAIL PROTECTED]] Sent: Monday, September 30, 2002 12:22 PM To: CF-Talk Subject: Query of Queries

Re: Query of Queries Error

2002-10-01 Thread Sam Farmer
? === Raymond Camden, ColdFusion Jedi Master for Hire Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Sam Farmer [mailto:[EMAIL PROTECTED]] Sent: Tuesday

Query of Queries Error

2002-09-30 Thread Sam Farmer
Hi, I have a query of queries that has been working fine until today when I started getting the following error: Query Of Queries runtime error. Unsupported Numeric type conversion in Query of Queries. Thats the extent of the error message provided! The columns seem to match up exactly on

Re: Can't use UNION

2002-09-25 Thread Sam Farmer
Use Q of Q. It provides support for UNIONS. HTH, Sam - Original Message - From: Paul Giesenhagen [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, September 24, 2002 8:50 PM Subject: Re: Can't use UNION It is a distributed app .. Paul Giesenhagen QuillDesign

Re: Referencing a dynamically named form field

2002-09-20 Thread Sam Farmer
My first question is, what are you trying to do with the data that is returned from the form? I think you are on the right path but might be getting muddled along the way. For instance, by giving each radio button a different name you are negating the use of radio buttons because it becomes

CF_VerisignEZ CFMX

2002-09-19 Thread Sam Farmer
Has anyone used the CF_VerisignEZ with CFMX? Just want to make sure it works before forking over 70 bucks. Also a little suspicious as the download from Macromedia's Devex produces a completely different tag. Thanks, Sam

Re: cfinclude, how granular can you make it?

2002-09-19 Thread Sam Farmer
A complete cfif block has to be on the same page. You can of course use includes/custom tags/components between the cfif statements. Also for better performance you almost never nead to use pound signs in if statements and you will also get better performance by scoping variables. For example:

Re: Many or Minimal CFOUTPUTS

2002-08-26 Thread Sam Farmer
Don't think anyone has mentioned the issue of how much whitespace you may be sending to the browser. By just putting an cfoutput at the top and close at the bottom you run the risk of sending a lot of whitespace to the browser. And, yes, the browser will ignore it but it still has to be sent

Re: days between function in Oracle...

2002-08-20 Thread Sam Farmer
Use the Ceiling or Ceil function (can't remember exactly which one it is) Cheers, Sam - Original Message - From: Alex Ninan [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, August 20, 2002 11:32 AM Subject: days between function in Oracle... Hi, Does anyone know of

Re: Calling Queries

2002-08-02 Thread Sam Farmer
]# etc === Raymond Camden, ColdFusion Jedi Master for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus My ally is the Force, and a powerful ally it is. - Yoda -Original Message- From: Sam Farmer

Re: Calling Queries

2002-08-02 Thread Sam Farmer
-Original Message- From: Sam Farmer [mailto:[EMAIL PROTECTED]] Sent: Friday, August 02, 2002 9:31 AM To: CF-Talk Subject: Re: Calling Queries Thanks Raymond. I am on MX is there a magic cure on that? Thanks, Sam - Original Message - From: Raymond

Calling Queries

2002-08-01 Thread Sam Farmer
Hi, I am trying to rewrite an old custom tag of ours that takes in a query and outputs it with right options selected. Nothing too tricky...except that I can not work out how to get around using evaluate. Anyone got any pointers? This is the code: cfoutput query=caller.#attributes.query#

Re: update table

2002-07-10 Thread Sam Farmer
You are almost there: update people set num = num + 5 That will work. Cheers, SAm - Original Message - From: Bruce, Rodney S HQISEC/SIGNAL [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, July 10, 2002 4:04 PM Subject: update table Hello all Is there any way of

Mac Editors with RDS or equivilant?

2002-06-05 Thread Sam Farmer
Mac users, Does anyone have any suggestions for an editor that runs on Mac OS that has something like RDS? Cheers, Sam __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable

Mail MIME Talks

2002-04-30 Thread Sam Farmer
Anyone know a good custom tag that will send email in both HTML and plain format (with the correct MIME type) that allows the users email reader to display the email in the correct format? Thanks, Sam __ This list and all

Re: hosting

2002-04-08 Thread Sam Farmer
They look really good. Out of interest which version of ColdFusion do they run? Thanks, Sam - Original Message - From: Matthew R. Small [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Monday, April 08, 2002 9:48 AM Subject: RE: hosting Yes, I use Advances.com for about 6

gettickcount() in 10 milliseconds

2002-03-22 Thread Sam Farmer
I am getting in to some serious optimization and using gettickcount quite extensively to see how long some loops are taking. getTickCount, however, only seems to go up in 10 millisecond intervals. As an example I have two loops taking 0 seconds and then one loop taking 10 on a consistant basis.

VTML Builder

2002-03-07 Thread Sam Farmer
? Its the language that all tag editors in ColdFusion studio are written in. Thanks, Sam Sam Farmer Senior Developer INTELIX, Inc. 12500 Fair Lakes Circle, Suite 150 Fairfax, VA 22033 www.intelixinc.com http://www.intelixinc.com Intelix Gains Washington TECHWAY Magazine's FAST 50 Recognition

Re: cflocations, macs, and IE

2002-02-06 Thread Sam Farmer
My advice is not to use cflocation at all. Sam - Original Message - From: David Schmidt [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, February 05, 2002 5:47 PM Subject: RE: cflocations, macs, and IE BTW, someserver.com is not really the server name (no offense to

Re: Why no error.type in CF5

2002-02-05 Thread Sam Farmer
Yeah I just found it again...debugging cferror errors ain't much fun! - Original Message - From: chris.alvarado [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, February 05, 2002 4:48 PM Subject: Re: Why no error.type in CF5 the type attribute is there for me. what

Re: SQLServer Stored Proc Permissions

2002-01-23 Thread Sam Farmer
- Original Message - From: Andrew Tyrone [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Wednesday, January 23, 2002 4:25 PM Subject: RE: SQLServer Stored Proc Permissions Stored Procedures in the master database can be accessed globally, that is why you can perform the operation

Software with Partner Programs

2002-01-22 Thread Sam Farmer
In some places the Macromedia site seems to suggest that partners get developer only copies of all their software and in others that partners get only CF Server and JRUN. Can any current partners let me know which it is? Thanks, Sam

Re: RegExp help needed

2002-01-08 Thread Sam Farmer
Don't forget to cflock the call to cffile! :) Sam - Original Message - From: Jeff Beer [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Tuesday, January 08, 2002 2:18 PM Subject: RE: RegExp help needed Holy cow, Don - I was hoping for some tips - you wrote the whole darn

Re: pb with cfmail, in plain text.

2002-01-03 Thread Sam Farmer
Try using #chr(10)##chr(13)# where you want a line break. Those characters are the ascii characters for line breaks. Example: #sel_cmde.firstname# #sel_cmde.lastname# #chr(10)##chr(13)# #sel_cmde.address# #chr(10)##chr(13)# #sel_cmde.zip# #sel_cmde.city# #chr(10)##chr(13)# Thanks, Sam

Re: Stupid Back Button

2002-01-03 Thread Sam Farmer
Try putting this in the head: META HTTP-EQUIV=Expires CONTENT=0 If that doesn't solve it then its a feature of IE. Sam Sam Farmer - Senior Developer Certified Advanced ColdFusion 5 Developer [EMAIL PROTECTED] INTELIX - Intelligent Solutions http://www.intelixinc.com 12500 Fair Lakes Circle

Re: Disable form field based on select box

2001-12-20 Thread Sam Farmer
Another solution is to use a combination of onFocus=this.blur() or take the focus elsewhere with a function. Will be cross browser more than the nicer, easier disabled feature (IE only?). Thanks, Sam Sam Farmer - Senior Developer Certified Advanced ColdFusion 5 Developer [EMAIL PROTECTED

Address Verification

2001-12-12 Thread Sam Farmer
Doing some research on address verification software and was wondering if anyone had used some in the past? There seem to be several that provide a COM interface. Has anyone used this? How much did it cost? Thanks, Sam Sam Farmer - Senior Developer Certified Advanced ColdFusion 5 Developer

Re: QUASI OT: Opening Office Documents in a spawned browser.

2001-12-11 Thread Sam Farmer
in their implementation. In short though you will always run in to problems and the best solution I would offer is to provide some help text explaining how to always have it open. Thanks, Sam Sam Farmer - Senior Developer Certified Advanced ColdFusion 5 Developer [EMAIL PROTECTED] INTELIX - Intelligent Solutions

SOAP and Java Objects

2001-11-30 Thread Sam Farmer
, Sam Sam Farmer - Senior Developer Macromedia Advanced Certified ColdFusion Developer [EMAIL PROTECTED] INTELIX - Intelligent Solutions http://www.intelixinc.com 12500 Fair Lakes Circle, Suite 150 Fairfax, VA 22033 703-815-2500 ~~ Your ad could

Re: 10 Step Program

2001-11-29 Thread Sam Farmer
This is a great solution and one we use. I would suggest making them request variables though (easy access in custom tags) Sam - Original Message - From: Rich Wild [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Sent: Thursday, November 29, 2001 12:31 PM Subject: RE: 10 Step Program

  1   2   >