RE: multi page (wizard like) forms

2006-08-28 Thread Jeremy Bunton
Hello, There is a form to session custom tag out there somewhere that I have used, it pretty much turns every form var to a session var with the same name at post time. You could use that and then run some large queries at the end to do all the inserts from those session vars. JLB

RE: HTML Emails

2006-08-24 Thread Jeremy Bunton
We supply bulk email services. www.webdecisions.com -Original Message- From: Che Vilnonis [mailto:[EMAIL PROTECTED] Sent: Thursday, August 24, 2006 9:23 AM To: CF-Talk Subject: RE: HTML Emails Would anyone care to recommend any of these email services? Just wondering who is out there

RE: List of states, cities, zips

2006-08-11 Thread Jeremy Bunton
We have that here, I can't remember where we bought it, but we get new files every 3 months. Zip codes are added and changed a lot more often than most people think. I don't think the subscription was all that much, I'll see what I can find out. -Original Message- From: Charlie Griefer

Possible in SQL?

2006-05-22 Thread Jeremy Bunton
Hello, I have a table that looks something like this. Com1 genderfname lname 001 M Matt Smith 001 M Bill Wright 005 FKara Brown 005 M Mike White What I need

RE: Possible in SQL?

2006-05-22 Thread Jeremy Bunton
Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED] Sent: 22 May 2006 13:34 To: CF-Talk Subject: Possible in SQL? Hello, I have a table that looks something like this. Com1 genderfname lname 001 M Matt Smith 001 M Bill

vb.net's version of the evaluate() in cf and eval() in javascript

2006-04-18 Thread Jeremy Bunton
Any help would be great. I am having a hard time finding it. I need to set the value of a var to the name of a new var. Dim temp as string = sr a Dim eval(temp) as stringreader or something like that. Jeremy ~|

cfhttp?

2006-04-12 Thread Jeremy Bunton
Hello, I want to use cfhttp to post a form var back to the same page (index.cfm posting to index.cfm) Like below. I get form.project undefined with this. Should this not work? What I need to do is set a form var without a from being on the page. I thought this would be an elegant way of doing so.

RE: cfhttp?

2006-04-12 Thread Jeremy Bunton
You know I didn't think about that until after I posted this, and I tried that and it almost worked. It just came down to how the include files I am using (which I can't change) need that var. I ended up doing a cflocation back the same page if that form.project is not defined then seting the

RE: SQL 2005 and getiing data out

2006-04-07 Thread Jeremy Bunton
to a csv file in my user specific directory. Seems easy, hopefully it is in SSIS. Jeremy -Original Message- From: Jim Wright [mailto:[EMAIL PROTECTED] Sent: Friday, April 07, 2006 7:36 AM To: CF-Talk Subject: Re: SQL 2005 and getiing data out On 4/6/06, Jeremy Bunton [EMAIL PROTECTED

SQL 2005 and getiing data out

2006-04-06 Thread Jeremy Bunton
I have an application that needs to run a query against a 2005 database and then export that data to a .csv file. I tried BCP first and it didn't do what I needed really so then I moved to sqlcmd, which had the options I needed. The problem is sometimes the queries the users build in the interface

RE: SQL 2005 and getiing data out

2006-04-06 Thread Jeremy Bunton
[mailto:[EMAIL PROTECTED] Sent: Thursday, April 06, 2006 10:45 AM To: CF-Talk Subject: RE: SQL 2005 and getiing data out What about using CF to do it? Query the DB and use cffile to dump out a csv. -Original Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED] Sent: Thursday, April 06

RE: Save sessions to repopulate at a later date

2006-04-03 Thread Jeremy Bunton
() cfdump var=#session# !--- user logs in, get the data, recreate the structs --- !--- dewddx back to session --- cfwddx action=wddx2cfml input=#mysavedforms# output=session.forms cfdump var=#session# Job done. -Original Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED] Sent: 30 March

RE: Save sessions to repopulate at a later date

2006-04-03 Thread Jeremy Bunton
scope you will have to loop over session2 putting each variable in the session one at a time: cfwddx... cfloop collection=#session2# item=i cfset SESSION[i] = session2[i] /cfloop Not tested, but something like that. Adrian -Original Message- From: Jeremy Bunton [mailto:[EMAIL

Save sessions to repopulate at a later date

2006-03-30 Thread Jeremy Bunton
I have an application that has many forms that are saved in sessions as the user jumps from page to page, allowing them to see what they had entered on any page at any given time. Now the users want to be able to hit a button, save the entry and come back weeks later and see what they had entered.

result.columnList order

2006-03-23 Thread Jeremy Bunton
Hello, I am using the result. columnList attribute of cfquery to print out the columns of my table. I then want to insert them in a file. Problem is the columns are in alpha order, I want them in the same order as they appear in my table. Is there a way to do that? Jeremy

RE: result.columnList order

2006-03-23 Thread Jeremy Bunton
Great, that works just like I need it to. jeremy -Original Message- From: Michael T. Tangorre [mailto:[EMAIL PROTECTED] Sent: Thursday, March 23, 2006 3:18 PM To: CF-Talk Subject: RE: result.columnList order From: Jeremy Bunton [mailto:[EMAIL PROTECTED] I am using the result

cfexecute

2006-03-20 Thread Jeremy Bunton
I am trying to use a cfexecute to execute a sql bcp command to write a file out. It appears to work fine from the command line but when I try to use cfexecute I don't get an error but I don't get a file. All my double quotes are escaped with double quotes. Is there a way that I can see what

How do you all handle saving checkboxes that have been checked?

2006-03-20 Thread Jeremy Bunton
I have several forms that have check boxes. I set the vales of the checkboxes to sessions after the form is submitted so that a user can surf around the site and come back and change their selections. The code I use is below and it sort of works - but not really. Its checks to see if the value is

RE: How do you all handle saving checkboxes that have been checked?

2006-03-20 Thread Jeremy Bunton
that have been checked? You would need to validate the form items against the session variables. Thus if the form variable does not exists or set to false, kill the Session variable. All should be done on the Save (submit) event. -Original Message- From: Jeremy Bunton [mailto:[EMAIL

Large count query caching

2006-03-17 Thread Jeremy Bunton
I have a query counting records in a 25 million plus database. Even with indexing and what not it takes about 25 seconds to run this query. (count * from table where date 19000101) Is there a way I could cache the query so that if it is ran in that same way it very quickly returns the full count.

RE: Large count query caching

2006-03-17 Thread Jeremy Bunton
myDate '1900-01-01' /cfquery This will cache your query for one day. You could also put the result of the query into an application variable or something like that, but this way the query will only be cached if the query text is the same. M. Jeremy Bunton wrote: I have a query

RE: Large count query caching

2006-03-17 Thread Jeremy Bunton
possibly needed so that you could then do QoQ on that for the dynamic where clauses. That means that your master cached query is not pulling a count() and would probably be massive in space. I think it would be best to pursue solutions through the DB to speed things up. On 3/17/06, Jeremy Bunton

RE: Large count query caching

2006-03-17 Thread Jeremy Bunton
server look up all your columns? It's an unecessary step and it will cost you in execution time - maybe not a lot, but when you are dealing with 25 million rows ever millisecond counts :) -Mark -Original Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED] Sent: Friday, March 17

save cfquery select statement to var

2006-03-15 Thread Jeremy Bunton
Hello, I have a pretty large cfquery with 30 or so cfif's building the where clause. What I want do is save the actual select statement generated by that cfquery so that I can then plug it in to bcp in sql server to extract the data. I have tried to wrap cfsave content both inside and outside the

RE: save cfquery select statement to var

2006-03-15 Thread Jeremy Bunton
+, you can use the results attribute of cfquery to get the sql statement that ran. If not cf 7+, you are going to have to use the (undocumented) service factory to do it. On 3/15/06, Jeremy Bunton [EMAIL PROTECTED] wrote: Hello, I have a pretty large cfquery with 30 or so cfif's building the where

RE: save cfquery select statement to var

2006-03-15 Thread Jeremy Bunton
[EMAIL PROTECTED] wrote: What version of cf are you using? If it is cf 7+, you can use the results attribute of cfquery to get the sql statement that ran. If not cf 7+, you are going to have to use the (undocumented) service factory to do it. On 3/15/06, Jeremy Bunton [EMAIL PROTECTED] wrote

RE: maintaining state in multipage form

2006-03-13 Thread Jeremy Bunton
You could call a javascript function to submit the form, then boot off to the page in the href -Original Message- From: Christophe Maso [mailto:[EMAIL PROTECTED] Sent: Monday, March 13, 2006 8:33 AM To: CF-Talk Subject: Re: maintaining state in multipage form It sounds like a session

can one Submit button submit multiple forms in a specific order?

2006-03-07 Thread Jeremy Bunton
I need to be able to hit a submit button have it submit one form (that it is not in) then after that submit has been processed submit a second form (form the submit button is in). They have to be in order because processing in the first form is needed for the second one. I'm thinking I need a CF

javascript submit form and then location in same function

2006-02-20 Thread Jeremy Bunton
I have hrefs that call this function script type=text/javascript function submitandgo (url) { window.document.theform.submit(); window.document.location=url; } /script If I don't use the location portion it works fine, but it seems to boot off to the new page before the form submit. An

RE: javascript submit form and then location in same function

2006-02-20 Thread Jeremy Bunton
That function gets called in the nav as you go from page to page. I have about 20 form pages each with a form called theform. I want to be able to have the user select the checkboxs and fill in the form fields ect they want then just click to another page and have that info saved without them

RE: javascript submit form and then location in same function

2006-02-20 Thread Jeremy Bunton
. Or, try to make them submit the form, I think people are pretty used to that, rather then having them click a nav element. -- Josh - Original Message - From: Jeremy Bunton [EMAIL PROTECTED] To: CF-Talk cf-talk@houseoffusion.com Sent: Monday, February 20, 2006 10:20 AM Subject

tag to allow access to foxpro .dbf

2006-02-16 Thread Jeremy Bunton
Hello, I have a foxpro table that I can't open because its locked up by CF and its on a live server so I can't just stop the CF ODBC service. I was sure I heard of a tag that would break that connection so I can open that table and change what I need to. Its seems like I have used it in the past

ArrayAppend oddity

2006-02-16 Thread Jeremy Bunton
I have the code below doing this where 01011 is a zip code. So I would like the output to be 01018 as the appended value in the array but right now I am getting 1018 (leading 0 getting cut off) I tried listappend and it does the same thing. Val() and tostring() didn't seem to do much either. Any

RE: tag to allow access to foxpro .dbf

2006-02-16 Thread Jeremy Bunton
I ended up just restarting the odbc server service, it was the only way I could free it up. Jeremy -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Thursday, February 16, 2006 12:22 PM To: CF-Talk Subject: Re: tag to allow access to foxpro .dbf this function

RE: ArrayAppend oddity

2006-02-16 Thread Jeremy Bunton
Yeah I like that one best, I did the length check, but that seems alittle much. Jeremy -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Thursday, February 16, 2006 2:50 PM To: CF-Talk Subject: Re: ArrayAppend oddity Or just use numberFormat(01011+7, 0) in

Saving form vars from page to page

2006-02-13 Thread Jeremy Bunton
Hello, Its been a while since I have done any cfing and I have to build an app with quite a few forms. Some forms will have a lot of check boxes, some regular text fields and some will be drop downs. I need to be able to save the selected items or field values on any given form page (session I

RE: Saving form vars from page to page

2006-02-13 Thread Jeremy Bunton
ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -Original Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED] Sent: Monday, February 13, 2006 7:29 AM To: CF-Talk Subject: Saving form vars from page to page Hello, Its been a while since I have done any cfing

VB.net equivalent of coldfusion's Evaluate

2005-08-08 Thread Jeremy Bunton
Any idea's. I can't seem to find anything in the MSDE. I know there has to be something similar, but I just can't find it. I'm trying to dim an array value as a stringreader object. Ex. Dim ARprmfile(T, 0) As StreamReader = New StreamReader(Args(0)) Thanks Jeremy

RE: Gene 6 FTP Server vs Serv-U Secure?

2005-06-29 Thread Jeremy Bunton
I've used serv-U in the past and really liked it, now I am using Titan and WS_FTP Server, WS is good but I seem to recall serv U had more options. JLB -Original Message- From: Damien McKenna [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 29, 2005 10:35 AM To: CF-Talk Subject: OT: Gene

time conversion

2005-06-09 Thread Jeremy Bunton
I have a form that collects 3 pieces of time data each as separate form vars. Hour, min and AM/PM in the format of 03 04 PM. I need to convert that to military time so here 15:04. I have looked at createtime() but it seems to not have a way to handle the AM/PM data. How do you all handle this?

Javascript to coldfusion

2005-05-09 Thread Jeremy Bunton
I want to set a javascript var to a coldfusion variable, what I am doing looks like below. The value being a true false Boolean. I keep getting an error that doit is undefined in CF. I've gone from coldfusion to JS before, but not the other way around. Thanks Jeremy script var doit = confirm(Are

Get column names with query

2005-05-06 Thread Jeremy Bunton
Hello, I know there is a way to do this and I looked around and can't find it. How would I go about getting the column/fieldnames from a query. I'm just doing a select * from table and I want to label the fields as they are in the SQL server db. Thanks Jeremy

RE: Get column names with query

2005-05-06 Thread Jeremy Bunton
Yes that works, Thanks JLB -Original Message- From: JediHomer [mailto:[EMAIL PROTECTED] Sent: Friday, May 06, 2005 10:07 AM To: CF-Talk Subject: Re: Get column names with query They should be returned in myQuery.ColumnList HTH On 5/6/05, Jeremy Bunton [EMAIL PROTECTED] wrote

Wrap custom tag

2005-01-18 Thread Jeremy Bunton
I'm currently stuck using MX 6.0 and was wondering if there is a custom tag out there that will function like the wrap() function in 6.1. After searching the Maco site I turned up nothing, but I hear there is such a thing. Jeremy

RE: Wrap custom tag

2005-01-18 Thread Jeremy Bunton
: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 18, 2005 9:08 AM To: CF-Talk Subject: RE: Wrap custom tag If at all possible, you want to move to 6.1, there's a number of issues that were resolved with that update. - Calvin -Original Message- From: Jeremy Bunton [mailto

Where to place .vtm tag insight files

2005-01-07 Thread Jeremy Bunton
Hello, I use Dreamweaver 2004 for all my Cf'in and have some .vtm tag insight files I need to add. What folder do I need to place those in? It seems pretty straight forward in homesite, but I can't find the equivalent in DW. JB

Printing to label Printer in CF

2005-01-06 Thread Jeremy Bunton
Hello, I have never tried to do this before so here goes. I need to print a label from a cf app that will contain various information Client name, job number, due date, client code, ect. This is part of our project management app and the labels will be used for folders. Any pointers on how to

RE: Printing to label Printer in CF

2005-01-06 Thread Jeremy Bunton
Cool thanks all, I'll take a peek at it. -Original Message- From: Scott Stroz [mailto:[EMAIL PROTECTED] Sent: Thursday, January 06, 2005 11:53 AM To: CF-Talk Subject: Re: Printing to label Printer in CF On Thu, 6 Jan 2005 08:34:35 -0800, Bryan Stevenson [EMAIL PROTECTED] wrote: I'm

RE: Printing to label Printer in CF

2005-01-06 Thread Jeremy Bunton
Has anyone used that tag under mX6 or 6.1? Jeremy -Original Message- From: Scott Stroz [mailto:[EMAIL PROTECTED] Sent: Thursday, January 06, 2005 11:53 AM To: CF-Talk Subject: Re: Printing to label Printer in CF On Thu, 6 Jan 2005 08:34:35 -0800, Bryan Stevenson [EMAIL PROTECTED]

Printing to label Printer in CF / Selecting the printer?

2005-01-06 Thread Jeremy Bunton
How about this one. We have 3 printers here with one being our main printer and one with nicer color one and then we will soon have a little label printer. Everyone pretty much has their default printer set to the laser. So the question is - is there a method I could use to have a label printer on

RE: Printing to label Printer in CF / Selecting the printer?

2005-01-06 Thread Jeremy Bunton
over your computer like that? -- Damien McKenna - Web Developer - [EMAIL PROTECTED] The Limu Company - http://www.thelimucompany.com/ - 407-804-1014 #include stdjoke.h -Original Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED] Sent: Thursday, January 06, 2005 1:33 PM

cffile read to read JUST the top line of the txt file.

2004-12-03 Thread Jeremy Bunton
Hello, I want to use cffile to read just the top line (header line with field names) of a very large .csv file, say 5 million records. Is there a way to just read the top record into the variable in the cffile tag, with out having to read the whole file. Jeremy

RE: cffile read to read JUST the top line of the txt file.

2004-12-03 Thread Jeremy Bunton
cfoutput#line#/cfoutput -joe On Fri, 3 Dec 2004 15:55:01 +0100, Pascal Peters [EMAIL PROTECTED] wrote: No, but I think you can do it with java. -Original Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED] Sent: 03 December 2004 15:52 To: CF-Talk Subject: cffile read

RE: CFFile or CFDirectory?

2004-12-02 Thread Jeremy Bunton
That would be cffile. -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Thursday, December 02, 2004 9:36 AM To: CF-Talk Subject: CFFile or CFDirectory? I'm using cfdirectory successfully to list the directory names and then list them in a drop-down menu. Now after

cfexecute and vb.net return

2004-11-11 Thread Jeremy Bunton
Hello, I have a vb.net console/commandline app that prompts for various inputs after hitting the return key. Somewhat like this Input file (csv): C:/test/my.csv then return key is pressed Outputfile (csv): C:/test/new.csv return again First header name: addressone return You get the

RE: cfexecute and vb.net return

2004-11-11 Thread Jeremy Bunton
So I'm guessing this isn't possible with cfexecute and I should go the route of altering my commandline app. -Original Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED] Sent: Thursday, November 11, 2004 1:25 PM To: CF-Talk Subject: cfexecute and vb.net return Hello, I have

6.1 and 2003 server standard - iis 6

2004-07-14 Thread Jeremy Bunton
Hello, I am building a dev/test box with 2003 server and iis 6 running 6.1. The install seemed to go fine. I am moving some sites over to the new machine and one has the .htm extension mapped to be processed by CF. I did this on 2000 server but ccan't recall what i did and am sure it is

Re: 6.1 and 2003 server standard - iis 6

2004-07-14 Thread Jeremy Bunton
Solutions, Inc. - www.CoolFusion.com inFusion Mail Server (iMS) - The Award-winning, Intelligent Mail Server PrismAV - Virus scanning for ColdFusion applications Find out how iMS Stacks up to the competition: http://www.coolfusion.com/imssecomparison.cfm - Original Message - From: Jeremy Bunton

Re: 6.1 and 2003 server standard - iis 6

2004-07-14 Thread Jeremy Bunton
on the server by making CF handle htm files?I have seen this once before when a client wanted that set up on a shared server.IIS 6.0 handles htm files so much easier and with a lot less CPU load. Doug - Original Message - From: Jeremy Bunton To: CF-Talk Sent: Wednesday, July 14, 2004

Re: 6.1 and 2003 server standard - iis 6

2004-07-14 Thread Jeremy Bunton
have seen this once before when a client wanted that set up on a shared server.IIS 6.0 handles htm files so much easier and with a lot less CPU load. Doug - Original Message - From: Jeremy Bunton To: CF-Talk Sent: Wednesday, July 14, 2004 12:41 PM Subject: 6.1 and 2003 server standard

query troubles

2004-07-13 Thread Jeremy Bunton
I have a table that looks like this contactno, orddate, amount 0013352004012299.23 0013352004120212.23 11233320031201100.23 The query I am useing now looks like this, in foxpro by the way. SELECT contactno, orddate, amount as ldol FROM ordertemp4b; where contactno in (select contactno,

RE: query troubles

2004-07-13 Thread jeremy Bunton
There isn't one yet, it's a temp table _ From: G [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 4:24 PM To: CF-Talk Subject: Re: query troubles Jeremy, what is the primary key for the ordertemp4b table? - Original Message - From: Jeremy Bunton To: CF-Talk Sent: Tuesday

cfinclude meta info?

2003-06-05 Thread Jeremy Bunton
Is it a bad idea to cfinclude meta tags, does it hurt search engine performance. ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

MX and Page caching

2003-06-03 Thread Jeremy Bunton
I had a directory set up called new and in that folder I had a page called test.cfm. I deleted that page and the entire directory new and if I browse to that directory and page - it still shows up minus the images. I just don't get it. I mean I deleted the entire folder. I went and look in the

Search and count occurrences of a word in a template

2003-05-31 Thread Jeremy Bunton
I have a .cfm page that I would like to find and display the number of times a certain word appears. I have looked at some of the functions like find() and the like but they don't seem to be what I am looking for, or maybe I just am not seeing how I would use them to search a page and count the

RE: MDAC 2.7

2003-03-18 Thread Jeremy Bunton
- From: Jeremy Bunton [mailto:[EMAIL PROTECTED] Sent: 17 March 2003 22:04 To: CF-Talk Subject: RE: MDAC 2.7 Actually when I run the Component Checker it says I have more than one MDAC configured for my system. So I think select the newest one 2.7 SP1(WinXP) and run the analyze and it says 10 file

MDAC 2.7

2003-03-17 Thread Jeremy Bunton
Hello, I just installed MDAC 2.7 on my win 2k pro machine with CF4.5. Everythign seemed fine during the install, but now I can't connect to any of my data sources. None of them will verify in the administrator. Currenly they are all access DB's. Any ideas. Any way to uninstall MDAC 2.7. Every

RE: MDAC 2.7

2003-03-17 Thread Jeremy Bunton
I tried that and still no luck. What do you think about me reinstalling office 2000. I would think that would reinstate the old drivers. jeremy -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED] Sent: Monday, March 17, 2003 3:20 PM To: CF-Talk Subject: RE: MDAC 2.7 I just

RE: MDAC 2.7

2003-03-17 Thread Jeremy Bunton
Actually when I run the Component Checker it says I have more than one MDAC configured for my system. So I think select the newest one 2.7 SP1(WinXP) and run the analyze and it says 10 file versions mismatched, one looks like so. odbccp32.cpl,File,Field 'FileVersion' mismatch: Expect

ASP.NET

2003-03-10 Thread Jeremy Bunton
Hello, Odd spot to ask this question but here goes. I am CF user have been for a few years now, but I wishing to branch out a little and widen my knowledge to the use of asp.net. Not that I am leaving CF. I have been looking on amazon for books and don't really see anything that stands out to me.

RE: ASP.NET

2003-03-10 Thread Jeremy Bunton
started on that, and it was a great tool. Granted, since then, there are so many resources on the web for learning ASP ASP.net, that you almost don't need to buy a book. HTH! Scott -Original Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED] Sent: Monday, March 10, 2003 2:38 PM

RE: Correct CFFILE Syntax for uploading PDF: Accept = document/pdf ???

2003-02-06 Thread Jeremy Bunton
May be helpful. http://www.asahi-net.or.jp/en/guide/cgi/mimetype.html jeremy www.jeremybunton.com ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: [offtopic] Javascript to open a url in another frame

2003-01-29 Thread Jeremy Bunton
Can you not just use the target attribute of the link. a href=what.htm target=framenamesomelink/a -Original Message- From: Darren Adams [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 1:40 PM To: CF-Talk Subject: [offtopic] Javascript to open a url in another frame Hello

RE: cfif does not contain for file input

2003-01-20 Thread Jeremy Bunton
, Form.filea) AND NOT findnocase(.jpg, Form.filea) or cfif right(Form.filea, 3) NEQ gif AND right(Form.filea, 3) NEQ jpg or cfif listlast(form.filea, .) NEQ gif AND listlast(form.filea, .) NEQ jpg ...sorry, got carried away heh - Original Message - From: Jeremy Bunton [EMAIL PROTECTED] To: CF-Talk

cfif does not contain for file input

2003-01-16 Thread Jeremy Bunton
Hello, I am trying to do something like bleow before I do a file upload to check for an extension and it always hits the cflocation. Makes me think maybe the file feild is not being read properly. If I take the cfif out it uploads fine. cfif Form.filea does not contain .gif and Form.filea does

cfoutput formatting

2003-01-13 Thread Jeremy Bunton
I have an output block that looks like so, tr tdimg src=images/spacer.gif width=71 height=1 alt= border=0/td cfoutput query=getclients td valign=top width=26 class=copyinput class=copy name=theid type=checkbox value=#id#/td td valign=top width=200 class=copy#UCase(cusername)#br(#cpassword#)/td

RE: cfoutput formatting

2003-01-13 Thread Jeremy Bunton
Ahh yes many thanks that seems to work well. JLB -Original Message- From: Scott Brady [mailto:[EMAIL PROTECTED]] Sent: Monday, January 13, 2003 1:06 PM To: CF-Talk Subject: Re: cfoutput formatting I use mod to do this... table tr cfoutput query=getReviews

submit cfform without submit button

2003-01-09 Thread Jeremy Bunton
Hello all, I know this isn't strictly a CF issue but I am using CF at the momeny so here we go. I have a simple form with two text fields one for username and one for password. Here is the code. cfform action=checkin.cfm method=post enctype=multipart/form-data cfinput class=copy required=yes

RE: submit cfform without submit button

2003-01-09 Thread Jeremy Bunton
PM To: CF-Talk Subject: RE: submit cfform without submit button Tell your boss I think he's an idiot. That such a usability no-no. Adam Wayne Lehman Web Systems Developer Johns Hopkins Bloomberg School of Public Health Distance Education Division -Original Message- From: Jeremy Bunton

RE: submit cfform without submit button

2003-01-09 Thread Jeremy Bunton
times ... clients or bosses have asked me for things that I knew was wrong, but I've given it to them ... and then ... they don't like it. Sometimes battles are won by not fighting them. H. -Original Message- From: Jeremy Bunton [SMTP:[EMAIL PROTECTED]] Sent: Thursday, January 09

supposedly simple query

2002-10-15 Thread Jeremy Bunton
I have this VERY simple query like cfquery name=getmessages datasource=mydns select * from message where thread = #threadnumber# /cfquery where #threadnumber# is set by cfset threadnumber=#trim(URL.thread)# coming from a cflocation url=messages.cfm?thread=cfoutput#formthread#/cfoutput If I

RE: supposedly simple query

2002-10-15 Thread Jeremy Bunton
of: cflocation url=messages.cfm?thread=cfoutput#formthread#/cfoutput Adam. -Original Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 15, 2002 3:23 PM To: CF-Talk Subject: supposedly simple query I have this VERY simple query like cfquery name=getmessages

XML CF5 parser

2002-10-04 Thread Jeremy Bunton
Can anyone point me in the right direction for XML parsing in CF5. I have a XML file like rss version=0.91 channel item titleGood, Microsoft form handheld alliance/title linkhttp://rss.com.com/2100-1040-960886.html?type=ptamp;part=rssamp;tag= feedamp;subj=news/link descriptionStart-up Good

download PWS

2002-07-10 Thread Jeremy Bunton
Anyone know where I can download personal web server. I looked for 10 mins on the microsoft site. Can't find it anywhere. __ Get the mailserver that powers this list at http://www.coolfusion.com FAQ:

RE: Pez convention moves after teen is cited

2002-06-10 Thread Jeremy Bunton
Not alot, but it is interesting. -Original Message- From: Costas Piliotis [mailto:[EMAIL PROTECTED]] Sent: Monday, June 10, 2002 1:02 PM To: CF-Talk Subject: RE: Pez convention moves after teen is cited What exactly does this have to do with Cold Fusion Development? -Original

RE: MAC File Upload Issues

2001-12-04 Thread Jeremy Bunton
I agree with James, I have tried almost everything mentioned here and in the archives at some point and none of them have worked for me. Everyone here knows of the problem and uses netscape whenever they need to upload a file. JLB -Original Message- From: James Sleeman [mailto:[EMAIL

RE: stop reposting of form data

2001-01-19 Thread Jeremy Bunton
Now that is an interesting little trick. I think I will try that one. The only way I could figure out how to do it was to query the bd first to see if there was a record matching the info from the form and then do the cflocation if a match was found, which would cause a performance decrease.

RE: random record

2001-01-18 Thread Jeremy Bunton
Your method is actually the one that I ended up using, not because I saw that there may be a problem with the other method, but because it seemed a little more straight forward to implement. It seems to be working just fine. JLB -Original Message- From: BORKMAN Lee [mailto:[EMAIL

RE: random record

2001-01-17 Thread Jeremy Bunton
usiness URL: http://www.fusioneers.com ICQ: 346566 ------ -Original Message- From: Jeremy Bunton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 16, 2001 1:32 PM To: CF-Talk Subject: random record Can anyone point me in the right direction regarding how I wo

random record

2001-01-16 Thread Jeremy Bunton
Can anyone point me in the right direction regarding how I would go about pulling a random record from a table every time a user visits the page. JLB ~~ Structure your ColdFusion code with Fusebox. Get the official book at

time in CF

2000-11-27 Thread Jeremy Bunton
Hello, I was wondering how to display the time and date in CF. In asp it is %date%. I know there must be an equally easy way of doing it in CF. Jeremy ~~ Structure your ColdFusion code with Fusebox. Get the official book at

time in CF

2000-11-27 Thread Jeremy Bunton
M Subject: Re: time in CF #DateFormat(Now(), "mm/dd/yy, hh:mm:ss tt")# That will give you: "11/27/00, 3:17:00 PM" - Original Message - From: "Jeremy Bunton" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, November 27, 2000 2:01 PM