RE: Ways to test cfmail tag

2006-03-30 Thread Michael T. Tangorre
From: Steve Kahn [mailto:[EMAIL PROTECTED] Were not getting any mail thru our cfmail tag and want to test it. If I put the following code on a page and call the url will it work, or what would you recommend as a way to test the cfmail tag? Thanks 'cfmailtest.cfm' cfmail

RE: result.columnList order

2006-03-23 Thread Michael T. Tangorre
From: Jeremy Bunton [mailto:[EMAIL PROTECTED] 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

RE: counting downloads

2006-03-21 Thread Michael T. Tangorre
From: Brian Coleman [mailto:[EMAIL PROTECTED] Does anyone know of a way to serve up files and record how many times the file's been downloaded? Assuming the download is served based on an ID or document name, use that ID or name to increment a counter (in the DB most likely) THEN serve the

RE: counting downloads

2006-03-21 Thread Michael T. Tangorre
From: Munson, Jacob [mailto:[EMAIL PROTECTED] I'm not sure what you want is possible. The document download happens in the client, and unless you can embed something to communicate back to your server, I don't think you'll ever know if they actually download it or not. Someone else

RE: usability skills

2006-03-19 Thread Michael T. Tangorre
For the love of god, SHUT UP! WHO CARES? You two sound like little kids arguing over the toughest GI Joe.. guess what, they are both plastic and harmless. Move on to something else. -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Sunday, March 19, 2006

RE: Strip $ and , from entered numbers

2006-03-18 Thread Michael T. Tangorre
From: Les Mizzell [mailto:[EMAIL PROTECTED] Trying to turn $123,456 into 123456 Getting rid of the $ sign is easy... #Replace(mynumber, $, , ALL)# But I'm not sure how to kill the $ and the , at the same time with the least amount of fuss... Les, I just solved the same problem for a form

RE: Who's up for...

2006-03-18 Thread Michael T. Tangorre
From: Rick Root [mailto:[EMAIL PROTECTED] some saturday night chat? www.opensourcecf.com/cfopenchat/demo I'm in. ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:235720 Archives:

RE: Inches

2006-03-13 Thread Michael T. Tangorre
From: Jennifer Gavin-Wear [mailto:[EMAIL PROTECTED] very funny .. now can you come up with something that works ;) ? What's the problem exactly... just store it as a string if that is how you need it stored. ~| Message:

RE: Scheduled task File Not Found errors

2006-03-13 Thread Michael T. Tangorre
WTF? I didn't send that! From: Michael T. Tangorre Sent: Monday, March 13, 2006 1:15 PM To: CF-Talk Subject: Scheduled task File Not Found errors I have a scheduled task that runs quite often. It saves its results to a file, just for troubleshooting. Several times over the past few

RE: I still use HomeSite+ 5.5 - Should I Upgrade to something else?

2006-03-09 Thread Michael T. Tangorre
From: Dawson, Michael [mailto:[EMAIL PROTECTED] My main gripe with DW is that it really can screw up your XML. My main gripe with DW 8 is that is constantly tells me I am low on memory and the buttons, toolbars, and gutters get all greyed out... images on the toolbars, buttons, and gutters

RE: SQL Problem

2006-03-09 Thread Michael T. Tangorre
From: Mark Leder [mailto:[EMAIL PROTECTED] SELECT TOP 1 (controlID, memberID, memberSubmitDate) FROM tblList WHERE memberSubmitDate ??? SELECT TOP 1 controlID, memberID, memberSubmitDate FROM tblList ORDER BY memberSubmitDate DESC

RE: Javascript character errors outputting HTML

2006-03-08 Thread Michael T. Tangorre
From: Chris Musial [mailto:[EMAIL PROTECTED] So the tag that creates each node looks something like this: cf_treenode id=#id# pid=#pid# value=input type=checkbox value=#id# onClick='return SelectParents('#id#','#list_of_parents#')' #Name# cfset x = JSStringFormat(input type=checkbox

RE: Query Problem - sorting

2006-03-08 Thread Michael T. Tangorre
From: Dennis Powers [mailto:[EMAIL PROTECTED] SELECT FilesCategory.Cat_Name, Avg(Comments.Numeric1) AS Userrating, Count(Comments.Numeric1) AS Responses FROM (FilesData LEFT JOIN Comments ON FilesData.ID = Comments.LinkID) LEFT JOIN FilesCategory ON

CFMX 6.1 SQL Server

2006-03-07 Thread Michael T. Tangorre
I am encountering empty strings being inserted into varchar(6000) fields in a SQL 2K table. I have tried adjusting the settings in cfadmin as well as scouting the MM website looking for an answer... The cf_sql_type is set to varchar (even tried long varchar)... Is a driver update in order? I am

RE: Stored Procedures and when to use them

2006-03-02 Thread Michael T. Tangorre
From: Mike | NZSolutions Ltd [mailto:[EMAIL PROTECTED] Is there any advantage having this type of query in a SP over calling a simple CFC ?? Mike, Stored Procedures were a good choice for me when I was working at a place that had two, top-notch DBAs who could really analyze some of the more

RE: Compare data within 2 CFCs

2006-03-02 Thread Michael T. Tangorre
From: Baz [mailto:[EMAIL PROTECTED] Is there an easy way to compare the data within 2 CFCs? For example these 2 CFC instances contain different data: CFC1=createObject('Customer').Read(ID=10) CFC2=createObject('Customer').Read(ID=99) Provide a method in the Customer CFC that

RE: cfsavecontent and cfqueryparam

2006-02-21 Thread Michael T. Tangorre
From: Russ [mailto:[EMAIL PROTECTED] I am trying to optimize some queries, and as such, trying to put several 1 row insert queries into one. I am trying to use a function to generate the sql, and then just loop through each record and generate the sql I need. The issue I'm running into

RE: A very specific message board/forum question...

2006-02-21 Thread Michael T. Tangorre
From: Jeff Small [mailto:[EMAIL PROTECTED] I'm looking at this board www.phpbb.com and would love to hear from anyone in the CF community who has experience with a CF equivalent. There really aren't any equivalents to the big PHP based forum apps. FuseTalk is a CF based forum app as is

RE: Is there a better way to do this?

2006-02-21 Thread Michael T. Tangorre
From: Will Tomlinson [mailto:[EMAIL PROTECTED] I'm outputting a shipping option form from a cfc. Will, is that a typo? You're outputting from a CFC! BLASPHEMY! :-) ~| Message:

RE: Dhtml Menu System

2006-02-20 Thread Michael T. Tangorre
From: fsu__grad [mailto:[EMAIL PROTECTED] I have tried just about every DHTML menu I could find online. I have been using this one in all our internal applications; it is a piece of cake to use and seems to be the most flexible in terms of dynamically generating.

RE: multiple inserts - same fields

2006-02-18 Thread Michael T. Tangorre
From: Roberto Perez [mailto:[EMAIL PROTECTED] My question is: what other (more elegant) ways could you think of to achieve the same results (i.e., multiple entries to the same table fields)? I'd appreciate ideas, pointers, and suggestions. cfloop from=1 to=10 index=x cfparam

RE: Javascript Calculation Problem

2006-02-17 Thread Michael T. Tangorre
From: Les Mizzell [mailto:[EMAIL PROTECTED] When I do this: var SUBTotal = (oc_hours * oc_amount) + (ic_hours * ic_amount) + ldcalls I get 1202 as the SUBTotal, not 122. parseInt(idcalls) ~| Message:

Storing Documents

2006-02-10 Thread Michael T. Tangorre
I have never stored actual documents in SQL Server. I have stored the name and location and put the document into a directory on the file server. However, a new contracts application I am working on is very document heavy, mainly for storage... not much retrieval will be done. Currently when a

RE: CFUNITED and Microsoft

2006-02-09 Thread Michael T. Tangorre
From: Rick Root [mailto:[EMAIL PROTECTED] I don't know about you guys, but when I went to CFUNITED, I was somewhat surprised to see Microsoft as a major sponsor. They were kind enough to give us copies of Visual Studio, and an ASP.NET book. The presentation about IIS7 was cool since

RE: passing multiple values from the same form field

2006-02-05 Thread Michael T. Tangorre
From: Aaron Roberson [mailto:[EMAIL PROTECTED] Thanks Will, After getting the multiple values inserted I was going to work on getting the multiple values updated as well. I have a CommunityMX tutorial (http://www.communitymx.com/abstract.cfm?cid=E68A448AE1116988) in my possession about

RE: SOT Best way to identify if a form was change

2006-02-03 Thread Michael T. Tangorre
From: Victor Moore [mailto:[EMAIL PROTECTED] What is the best way to identify if a form has been changed? Currently I set up a hidden field on the form on every onChange event. Then on the onUnload I check the status of the hidden field and let the user know. Is this the best (only) way

RE: Creating a string of len(x)

2006-02-03 Thread Michael T. Tangorre
From: Nathan C. Smith [mailto:[EMAIL PROTECTED] So I want to create a function to create string of arbitrary length before I put anything into it (well, printable characters anyway) So I'm thinking there must be something better than Loop 1 to x time cfset Thisstring = thisstring+ Loop

RE: evaluate hell Pt2

2006-02-03 Thread Michael T. Tangorre
From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] cfif isdefined(GetInventory.#GetListingFields.DBColName#) and evaluate(GetInventory.#GetListingFields.DBColName#[#GetInvent ory.currentrow#]) NEQ 0 AND Trim(evaluate(GetInventory.#GetListingFields.DBColName#[#GetI nventory.currentrow#]))

RE: Coldfusion best practice guide request

2006-02-01 Thread Michael T. Tangorre
From: Mark W. Breneman [mailto:[EMAIL PROTECTED] Does anyone have a Coldfusion best practice guide http://livedocs.macromedia.com/wtg/public/coding_standards/ ~| Message:

RE: Coldfusion best practice guide request

2006-02-01 Thread Michael T. Tangorre
From: Dave Watts [mailto:[EMAIL PROTECTED] It is important not to confuse conventions with best practices. They are very different things. For example, it really doesn't matter how you name variables, as long as you do it consistently and apply a modicum of common sense. With on

RE: IE 7 beta is available

2006-01-31 Thread Michael T. Tangorre
From: Aaron Roberson [mailto:[EMAIL PROTECTED] I can't wait until the day that we no longer have to write css hacks for IE! don't hold your breathe! ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230893

RE: IIS Authentication

2006-01-20 Thread Michael T. Tangorre
From: Justin D. Scott [mailto:[EMAIL PROTECTED] I'm wondering if there is a way in ColdFusion 4.5 (or CFMX7) to determine if the user has been authenticated by IIS or not, and if so, what the username is that they are logged in with? cgi.auth_user

RE: cfstoredproc and cache

2006-01-19 Thread Michael T. Tangorre
You can put the results into the session/application scope and manage it yourself or call the stored procedure using cfquery tags and make use of the cache attributes of the cfquery tag. Mike From: Peterson, Andrew S. [mailto:[EMAIL PROTECTED] Is there a way to cache the results of a stored

RE: How to determine the name of a file upload

2005-12-12 Thread Michael T. Tangorre
From: Burns, John D [mailto:[EMAIL PROTECTED] I'm trying to build a sort of upload status display for large file uploads. I've seen some before and I know the subject has bounced around the list some in the past, however, I'm having trouble figuring out the name of the temp file that's

RE: OT: UML programs?

2005-12-12 Thread Michael T. Tangorre
From: Dave Carabetta [mailto:[EMAIL PROTECTED] I've recently become comfortable with the Poseidon for UML Community Edition at gentleware.com. There are some limitations with it, and I admittedly don't use most features of it, but it's great for mapping out class diagrams and showing

RE: Accessing Active Directory from ColdFusion

2005-12-09 Thread Michael T. Tangorre
From: Scott Stewart [mailto:[EMAIL PROTECTED] Where can I pull the Windows domain logon and password? Scott, hit me up off-list if you need some specific help... when I cam to the company I am at now, the first project was to convert all our internal applications to single sign-on using our

RE: Accessing Active Directory from ColdFusion

2005-12-09 Thread Michael T. Tangorre
From: Ian Skinner [mailto:[EMAIL PROTECTED] As has been said, the main method to accomplish this is in the website set-up. You set the directory security of the web site in IIS to Integrated Windows Security (slight language difference between Win2000 and Win2003 servers). Also,

RE: Yahoo Answers

2005-12-09 Thread Michael T. Tangorre
From: Adrocknaphobia [mailto:[EMAIL PROTECTED] New answer system from Apple. Could prove to be valuable when looking for help with ColdFusion. http://answers.yahoo.com One of the first questions listed was define queef. How serious could that list be.

RE: UPDATE with subquery

2005-12-06 Thread Michael T. Tangorre
From: Richard Colman [mailto:[EMAIL PROTECTED] Does anyone know if this looks right: update spdinput set sequence = (select sequence from spdinput where spdinput_id = 559) where spdinput_id = 627 I am afraid of blowing up my data table in SQL-Server. Copy the table w/ data to a test

JRUN Problems.

2005-11-15 Thread Michael T. Tangorre
Has anyone seen this? This (c:\program files\infozoom\) isn't even a valid location on my box. From the logs... 1 Error,scheduler-11,11/15/05,08:54:44,,[JadoZoomOEM]java.lang.Unsati sfiedLinkError: Canapos;t load library: c:\program files\infozoom\izmjniado.dll 2

RE: JRUN Problems.

2005-11-15 Thread Michael T. Tangorre
From: Snake [mailto:[EMAIL PROTECTED] http://www.infozoom.de/jdbcurl.shtml Yeah, I have that open. The problem is that this error just came out of nowhere... not changes have been made to the system. ~| Discover CFTicket

RE: JRUN Problems.

2005-11-15 Thread Michael T. Tangorre
From: Adkins, Randy [mailto:[EMAIL PROTECTED] http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=6 7c452e5ps s=rss_coldfusion_67c452e5 Already did that. I did Google and check the archives at HOF as well as MM's website before asking... I should have mentioned that :-)

sot: Dreamweaver 8

2005-11-08 Thread Michael T. Tangorre
I have a bunch of variables in the bindings tab on the Application pane... is there a way to have the output use all lowercase scope names? Right now it outputs: Session.varnam Application.varname etc... I like all the scope names to be lowercase. Not a major deal but I want to keep the code

RE: Dreamweaver 8

2005-11-08 Thread Michael T. Tangorre
I like it too. But I never took the time to hack DW's in order to fix this :-) Sounds good. I will post the hack if I can figure it out! Thanks Massimo. MT ~| Logware (www.logware.us): a new and convenient web-based

RE: Dreamweaver 8

2005-11-08 Thread Michael T. Tangorre
From: Massimo Foti [mailto:[EMAIL PROTECTED] Feel free to ask in case you get stuck. Thanks! I am sure as I use DW8 more I will ask you more questions. BTW If you would like to handle request variables from DW's Binding panel, you can use this extension:

RE: Big Honking Queries Make Me Want To Scream

2005-10-28 Thread Michael T. Tangorre
From: Les Mizzell [mailto:[EMAIL PROTECTED] Les, without knowing the relationships between the tables (one-to-one, one-to-many, many-to-many) this may or may not produce your desired output, but lets start with the following: SELECT p.FName, p.LName, s.Title, s.Network,

RE: MINUS and INTERSECT support for query of queries

2005-10-28 Thread Michael T. Tangorre
From: wolf2k5 [mailto:[EMAIL PROTECTED] It looks like you can do an UNION in a query of queries with ColdFusion MX 6.1, while MINUS and INTERSECT are not supported. Is this a known limitation? What about ColdFusion MX 7? QoQ doesn't support all the operators

RE: printing

2005-10-28 Thread Michael T. Tangorre
From: Simon Smith [mailto:[EMAIL PROTECTED] I'm looking to develop an intranet app, that will print a browser page without the number of prints etc window appearing. I have access to client browser if that helps Luckily it is not possible to print something without the printer dialogue,

RE: debugging complaint

2005-10-28 Thread Michael T. Tangorre
From: Ray Champagne [mailto:[EMAIL PROTECTED] Tried, but couldn't get the mirror in the right position to see anything. :) LOL. That's because you are too busy watching your neighbor try on her new purchases (head over to cf-community for the rest of the story) :-)

RE: Source Control Theory.....

2005-10-27 Thread Michael T. Tangorre
From: Spike [mailto:[EMAIL PROTECTED] ok, I appreciate that you *can* solve the problem if a user isn't there, but here's an example of my typical experience with VSS: Spike, Your scenario is very typical of my experiences as well. I think one of the things a lot of developers don't

RE: Inline frames a good alternative for creating web applications?

2005-10-27 Thread Michael T. Tangorre
From: Rick Faircloth [mailto:[EMAIL PROTECTED] That's mostly what I've been considering lately...working out solutions that involve things that are more easily employed...even if that solution is not quite as effective or elegant as AS, JS, and AJAX solutions. Well, you will need to

OT: JS Calendar

2005-10-26 Thread Michael T. Tangorre
Is anyone using the JS DHTML Calendar from http://www.dynarch.com/projects/calendar/ ? I have been using it for awhile and recently redesigned some internal applications. The new CSS for the internal apps seems to be skewing the CSS for the calendar. I am not sure how to direct the calendar to

RE: Problem with MySQL

2005-10-25 Thread Michael T. Tangorre
From: Munson, Jacob [mailto:[EMAIL PROTECTED] Yeah, go ask this question on a mailing list that has MySQL experts, not a CF mailing list. Way out of line. I think you owe Mike an apology, that was extremely rude. ~|

RE: Starting Open Source Shopping Cart

2005-10-22 Thread Michael T. Tangorre
From: Snake [mailto:[EMAIL PROTECTED] I might suggest cfdeveloper.co.uk U then have everything in one place. I would also find a broader term to encompass what you guys are doing. To me, shopping cart means something to hold item(s) I want to purchase. If you get into products catalogs,

RE: Starting Open Source Shopping Cart

2005-10-22 Thread Michael T. Tangorre
From: Jeff Garza [mailto:[EMAIL PROTECTED] CMMI level 5 processes where I work are beginning to rub off on me... WOW, level 5? Pretty impressive... very few people reach that and maintain it! I thought level 3 was a lot...!

RE: When will Dave Watts finally blog?

2005-10-21 Thread Michael T. Tangorre
Subject: Re: When will Dave Watts finally blog? ENOUGH! cf-community ~| Find out how CFTicket can increase your company's customer support efficiency by 100% http://www.houseoffusion.com/banners/view.cfm?bannerid=49

RE: CFeclipse question

2005-10-21 Thread Michael T. Tangorre
From: Victor Moore [mailto:[EMAIL PROTECTED] Is it possible to have a split screen in cfeclipse and display to different files in each view? If yes how? I looked around but could not find anything Thanks Victor Nope. That missing feature along with word wrap are the two sought after

RE: CFeclipse question

2005-10-21 Thread Michael T. Tangorre
From: Spike [mailto:[EMAIL PROTECTED] Actually... That's not quite correct. Ahh, very true. I was coming at it from more of a Homesite/CF Studio functionality. Mike. ~| Find out how CFTicket can increase your company's

RE: CFeclipse question

2005-10-21 Thread Michael T. Tangorre
From: Victor Moore [mailto:[EMAIL PROTECTED] Bummer. Oh well, Thank you and have a good week end But don't let those missing features deter you, CFEclipse is pretty awesome! ~| Discover CFTicket - The leading ColdFusion

RE: cfopenbb

2005-10-20 Thread Michael T. Tangorre
From: Ewok [mailto:[EMAIL PROTECTED] and now the post initial buzz... I guess its dead all together now huh? Bummer, really. ~| Logware (www.logware.us): a new and convenient web-based time tracking application.

RE: Problems Making a CF DSN to SQL Server

2005-10-19 Thread Michael T. Tangorre
From: Mickael Elmalem [mailto:[EMAIL PROTECTED] Do you know where I can get those updates? Are they cumulative, so that if I install the lastone it will be enough? http://www.microsoft.com/downloads/details.aspx?FamilyID=8E2DFC8D-C20E-4446- 99A9-B7F0213F8BC5displaylang=en Mike

RE: [OT] SQL Express

2005-10-19 Thread Michael T. Tangorre
From: Taco Fleur [mailto:[EMAIL PROTECTED] Does anyone know where I can get a management tool for SQL Express? On the MS website they keep talking about MS SQL Express Management Studio but haven't been able to find the download for it, I have found the Express Manager but it is giving me

RE: [OT] SQL Express

2005-10-19 Thread Michael T. Tangorre
From: Taco Fleur [mailto:[EMAIL PROTECTED] Which part? I'm bad at diggin through the weed... ;-) You'll notice that Express Manager is no longer available and the earlier version will not work with this current CTP. SQL Server Management Studio (SSMS), which is included with other editions of

RE: Gvt Agency/Bureau data

2005-10-19 Thread Michael T. Tangorre
From: Dave Watts [mailto:[EMAIL PROTECTED] I don't know if this'll be helpful at all, since it's just a list of agencies: http://www.whitehouse.gov/government/independent-agencies.html Thanks Dave. Unfortunately that won't work. The data I am looking for is in the format of Agency

RE: Gvt Agency/Bureau data

2005-10-19 Thread Michael T. Tangorre
From: Ken Ferguson [mailto:[EMAIL PROTECTED] Click on Contact Us at the GAO's site and see if anyone knows where you can find it. GAO? You lost me. ~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble

RE: Moving directories via CF code

2005-10-19 Thread Michael T. Tangorre
From: Saturday (Stuart Kidd) [mailto:[EMAIL PROTECTED] ps: i know i could have all the images one directory but it just keeps them in good order this way. I would keep them in one directory and come up with a naming convention for them.

RE: OT Joins

2005-10-19 Thread Michael T. Tangorre
From: Mark Fuqua [mailto:[EMAIL PROTECTED] Can anyone explain to me what type of join is created when the join is done with the WHERE clause as opposed to the FROM clause in a sql statement. What are the advantages the joins in the FROM clause. I know it is because I am still very green

RE: Shopping Cart

2005-10-19 Thread Michael T. Tangorre
From: Don R Seibert [mailto:[EMAIL PROTECTED] I am looking for a pretty easy to use shopping cart that I can integrate with a site that is already up and running. I am using ColdFusion MX 6.1 and I can use Access or SQL server. Oh, and it needs to be inexpensive too. Can anyone recommend

RE: CFX_File

2005-10-18 Thread Michael T. Tangorre
From: Mickael Elmalem [mailto:[EMAIL PROTECTED] I am having a lot of trouble with CFFile on an NT machine. I poked around on google and found a tag called CFX_FILE, how do I get that tag? This is for CF5 What is the problem you are having, specifically?

RE: CFX_File

2005-10-18 Thread Michael T. Tangorre
From: Mickael Elmalem [mailto:[EMAIL PROTECTED] The tag is returning the message Action Unknow : Copy No, what is the problem you were having with the cffile tag on CF5 not the CFX tag? ~| Logware (www.logware.us): a new

RE: How can I make this select menu work?

2005-10-15 Thread Michael T. Tangorre
From: Will Tomlinson [mailto:[EMAIL PROTECTED] Well guys, after perusing the docs a bit, I found a nifty new addition to mx7. You can pass a csv list to the selected attribute of cfselect which pre-selects multiple items.I combined what Jeff showed me, and this, which almost made it

RE: zipping and unzipping a string

2005-10-15 Thread Michael T. Tangorre
From: John Blayter [mailto:[EMAIL PROTECTED] I am looking for a way to zip and unzip a string without going to the hard drive to perform I/O operations. I have started hacking away at some code but I don't know enough Java to get it working. I have a WDDX packet that can be between 9 -

RE: MX 7.0.1 problem

2005-10-14 Thread Michael T. Tangorre
From: Jacob [mailto:[EMAIL PROTECTED] I am running 7.0.1 on one web server, with the rest of the web servers running 7.0 HF3 (all servers Windows 2003, IIS 6) On the servers with 7.0 HF3, file names with + in them serve up fine. But on the server with 7.0.1, file names with a + give an

RE: Java IDE

2005-10-13 Thread Michael T. Tangorre
From: Phill B [mailto:[EMAIL PROTECTED] I would like to incorporate more Java into my CF sites. Since I'm new to Java, can you guys recommend a good IDE to use to write the Java? ECLIPSE! :-) ~| Logware

RE: Suggestions for javascript interaction.

2005-10-13 Thread Michael T. Tangorre
From: Aaron Rouse [mailto:[EMAIL PROTECTED] Such as qForms 2.0? It is in beta but in use by many in its current state. Did Dan post a link for 2.0 beta? I didn't run across it on the Pengoworks site... is it over at sourceforge now?

RE: cutting: aabbcc0000

2005-10-11 Thread Michael T. Tangorre
From: Uwe Degenhardt [mailto:[EMAIL PROTECTED] Hi list I have a value in a db-field like aabbcc and I always want to cut the leading nulls on the right to get: aabbcc, but only the four nulls, how can I do this ? There must be a regular expression for this, but I can't remember.

RE: Eclipse / cfeclipse - wordwrap??

2005-10-11 Thread Michael T. Tangorre
From: Sean Corfield [mailto:[EMAIL PROTECTED] So, no, the project is far from dead but the contrib list on topica is pretty dead (as is the cfeclipse list on HoF). Well at least we still have He3 :-) ~| Logware

RE: Dedicated Server Recommendations

2005-10-10 Thread Michael T. Tangorre
From: Kristopher Pilles [mailto:[EMAIL PROTECTED] I use Superb Servers and love them! http://services.superb.net/affiliate.php?affiliate=1877 Of course you do affiliate.php?affiliate=1877 :-) ~| Logware

RE: Testing File Upload

2005-10-10 Thread Michael T. Tangorre
From: Lee [mailto:[EMAIL PROTECTED] I have a file upload option on a form page where the user may or may not attach a file. How do I test on the action page if the user attached a file? Isdefined and paramaterexists always come in true. cfif len(form.formFieldName) gt 0

RE: ColdFusion Security Holes - Best Practices

2005-10-07 Thread Michael T. Tangorre
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] I heard a challenge from a security consultant that if you are using ColdFusion you do not have a secure server. He maintains that CF is full of things a hacker can access. For example he gave the following example. If you attempt to

RE: ColdFusion Security Holes - Best Practices

2005-10-07 Thread Michael T. Tangorre
From: Mark A Kruger [mailto:[EMAIL PROTECTED] From a security standpoint there is the address of the server via DNS (easily obtained) and then there is the address of the server as it exists on the internal network or DMZ of the host. Depending on the network setup this may be quite

RE: #CGI.SERVER_NAME# to display IP

2005-10-06 Thread Michael T. Tangorre
Actually, cgi.remote_addr gives you the IP of the client making the request not the server IP as Les is looking for. The only way to get the IP is if the IP appears in the URL instead of the server name or using a Java class to translate. http://localhost/test.cfm yields localhost

RE: wierd database error

2005-10-06 Thread Michael T. Tangorre
From: Ray Champagne [mailto:[EMAIL PROTECTED] I have a site that is running at CrystalTech using SQL Server 2000, and everything is running fine on the live site: http://www.nellco.org I've been making some serious improvements to the site, and have uploaded the entire (improved) site to

RE: wierd database error

2005-10-06 Thread Michael T. Tangorre
From: Ray Champagne [mailto:[EMAIL PROTECTED] Running it against the live DB - there are no changes to the DB code in my new version, so there is not really any worries of altering the DB. That's why I'm confused. There have been no changes to the DB, and that table *does* exist.

RE: File uploading with firefox

2005-10-06 Thread Michael T. Tangorre
From: Tony [mailto:[EMAIL PROTECTED] id take your frustrations out on your punching bag, not people trying to help. i hope it never works! Now Tony, is that nice? :-) ~| Logware (www.logware.us): a new and convenient

RE: Homesite+ Text on Tabs

2005-10-06 Thread Michael T. Tangorre
From: Ben Nadel [mailto:[EMAIL PROTECTED] You can use either the blue arrow on the vertical tool bar to see all open documents, or, there should be a left/right arrow at the side of the tab list that lets you scroll manually. This is not exactly the answer you were looking for, but

RE: Homesite+ Text on Tabs

2005-10-06 Thread Michael T. Tangorre
From: Claude Schneegans [mailto:[EMAIL PROTECTED] Homesite is probabilly using the standard font size defined in Windows. May be if you set Windows to use Large font, Homesite (and all other programs) will use a larger font. Tried that. Unfortunately the font size in the tabs remains

RE: Query.ColumnList Sorting?

2005-10-05 Thread Michael T. Tangorre
This will get you the columns from a table in the order in which they are defined in the DB (SQL SERVER). Replace customers with the table for which you want the columns from. SELECT column_name FROM information_schema.columns WHERE table_name = 'Customers' ORDER BY

RE: Going to MDCFUG Meeting?

2005-08-07 Thread Michael T. Tangorre
From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] Is there anyone on the list from the Eastern Shore that is planning on attending Tuesday's MDCFUG Meeting in Rockville? I live down the street from Tera Tech and keep telling myself I will make it, then I get caught up at work (in Silver

RE: My CF Affiliate Program Available for Download

2005-08-05 Thread Michael T. Tangorre
From: Will Tomlinson [mailto:[EMAIL PROTECTED] Aff. programs have the potential to make your clients ALOTTA $$$! :) Will How about our clients make US a lot of money :-) ~| Logware (www.logware.us): a new and convenient

RE: My CF Affiliate Program Available for Download

2005-08-05 Thread Michael T. Tangorre
From: Will Tomlinson [mailto:[EMAIL PROTECTED] How about our clients make US a lot of money :-) That too dude! heehee ... They go hand in hand. Just thought I'd point that out :-) ~| Find out how CFTicket can increase

RE: XML Form question

2005-08-05 Thread Michael T. Tangorre
Matt, I converted a rather large form from plain jane XHTML to a flash form and the page took about 4 years to load. Nothing to tricky either 22 form elements, 9 of which were select boxes being populated with from cached queries (average recordset was about 10 records). I was asked to change

RE: XML Form question

2005-08-05 Thread Michael T. Tangorre
I am interested to see if some MM people have some ideas as to why the execution times are so dramatically higher. If this is not a configuration issue I would be reluctant to use them for larger forms. Mike From: Matt Osbun [mailto:[EMAIL PROTECTED] I was surprised to see this kind of

RE: PL/SQL to loop over list

2005-08-05 Thread Michael T. Tangorre
From: Bryan Stevenson [mailto:[EMAIL PROTECTED] @VAR_ARRAY varchar(8000), @VAR_SEPARATOR char(1) AS SET NOCOUNT ON DECLARE @LOCAL_SEPARATOR_POSITION int DECLARE @LOCAL_ARRAY_VALUE varchar(1000) SET @VAR_ARRAY = @VAR_ARRAY + @VAR_SEPARATOR WHILE PATINDEX('%' + @VAR_SEPARATOR + '%' ,

RE: PL/SQL to loop over list

2005-08-05 Thread Michael T. Tangorre
-Original Message- From: Bryan Stevenson [mailto:[EMAIL PROTECTED] What I sent was for SQL Server... Sorry about that. See if somneone can help translate it into PL/SQL. Mike ~| Logware (www.logware.us): a new and

RE: PL/SQL to loop over list

2005-08-05 Thread Michael T. Tangorre
I gave the same snippet to a buddy last year who wanted it for Oracle. I think he wount up using INSTR and didn't have to modify too much. Good luck. From: Bryan Stevenson [mailto:[EMAIL PROTECTED] hehe...thanks Michael...I though that looked like T-SQL ;-)

RE: My CF Affiliate Program Available for Download

2005-08-04 Thread Michael T. Tangorre
From: Tony Weeg [mailto:[EMAIL PROTECTED] what does this do? what is an affiliate program? just wondering :) i like free stuff! thanks for the offer. WTF! Get on AIM. :-) ~| Discover CFTicket - The leading ColdFusion

XML XSL / XSLT

2005-07-31 Thread Michael T. Tangorre
I am playing around with the xml file that Picasa produces when you export a picture album. The xml file is pretty beefy depending on the number of images in the album. What I am wondering is what can be done with it? I can read the file, parse it, find some nodes, output some things to the

RE: XML XSL / XSLT

2005-07-31 Thread Michael T. Tangorre
From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] You can of course always use standard CFML to generate output from an XML doc by parsing the document and looping over the xmlchildren... That is what I am doing now but it doesn't seem right; I mean, I can read the contents of the directory

RE: OT/SOT: ColdFusion Word Doc Sharing

2005-07-17 Thread Michael T. Tangorre
From: E C list [mailto:[EMAIL PROTECTED] Folks- I've been tasked to come up with a way for television script writers to share and co-edit word docs. It would need to be an online solution, because they are distributed around the USA. Only one editor at a time needs to edit the

  1   2   3   4   5   6   7   8   >