RE: Need recommendations for charting engines

2004-07-28 Thread Hagan, Ryan Mr (Contractor ACI)
If you have the ability to run PHP, I'd strongly recommend JPGraph.  It's the best charting and graphing software I've ever used.  It's much easier to use than PopCharts and I'm fairly certain it has more features. http://www.aditus.nu/jpgraph/index.php -Original Message- From: Dave W

RE: Problem preventing a text input field from getting focus

2004-07-26 Thread Hagan, Ryan Mr (Contractor ACI)
Readonly attribute isn't supported by all browsers.  Try something along the lines of: -Original Message- From: Kevin [mailto:[EMAIL PROTECTED] Sent: Monday, July 26, 2004 11:07 AM To: CF-Talk Subject: Problem preventing a text input field from getting focus Hi all, After the awesome

Strange XML/XPath behavior

2004-07-09 Thread Hagan, Ryan Mr (Contractor ACI)
Greetings, I'm seeing strange behavior when working with XML files that concerns me a bit and I was hoping someone could help explain what was going on here.  I have a simple XML file: Victor Hugo French Sophocles Greek Leo Tolstoy Russian Alexander Pushkin Russian

RE: Project Management System in CF

2004-07-07 Thread Hagan, Ryan Mr (Contractor ACI)
I really like Pro Work Flow: http://www.proworkflow.com/ -Original Message- From: Ciliotta, Mario [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 07, 2004 12:18 PM To: CF-Talk Subject: Project Management System in CF Hi, Does anyone know of good project management system written in CF

RE: OT: ANY GMAIL ACCOUNTS LEFT?

2004-06-30 Thread Hagan, Ryan Mr (Contractor ACI)
While we're on the subject, I saw this over at Lockergnome the other day: GMail accounts for overseas troops. http://www.gmail4troops.com/ -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 30, 2004 3:06 PM To: CF-Talk Subject: Re: OT: ANY GMAIL ACCOUNT

RE: mysql query help - SOLVED

2004-06-16 Thread Hagan, Ryan Mr (Contractor ACI)
What I finally ended up doing is creating a temporary table and inserting the needed rows into that: INSERT INTO tmp_weekly_lineup (tournamentId, week, userId, modDate) SELECT ul.tournamentId, ul.week, ul.userid, max(ul.modDate) AS modDate FROM users_lineups ul WHERE ul.tournamentId = 1 AND ul.w

mysql query help

2004-06-16 Thread Hagan, Ryan Mr (Contractor ACI)
Good morning, I'm having a devil of a time with a mysql (v3.23) query and was hoping someone here could give me a hand. I have a fantasy football project I'm working on and I allow registered users to pick a lineup every week and then I score them at the end of the week depending on how well thei

RE: Autoincrement feature with MySQL?

2004-06-07 Thread Hagan, Ryan Mr (Contractor ACI)
And it would have been really nice of me to take a half-second to look that up before I hit send...sorry: http://www.cfmyadmin.com/ -Original Message- From: Hagan, Ryan Mr (Contractor ACI) [mailto:[EMAIL PROTECTED] Sent: Monday, June 07, 2004 11:59 AM To: CF-Talk Subject: RE

RE: Autoincrement feature with MySQL?

2004-06-07 Thread Hagan, Ryan Mr (Contractor ACI)
I'm pretty sure someone on this list has created a "CFMyAdmin" program... -Original Message- From: Mark Drew [mailto:[EMAIL PROTECTED] Sent: Monday, June 07, 2004 11:32 AM To: CF-Talk Subject: Re: Autoincrement feature with MySQL? Create the table as follows: CREATE TABLE my_table (    

RE: which prog language would be the best choice for ...

2004-06-07 Thread Hagan, Ryan Mr (Contractor ACI)
Java or C++.  Either can run on any platform, although C++ will have to be compiled on the targeted platform before release.  Java is easier to learn than C++, but there are some pretty good windowing libraries in C that will take a bit of the learning curve out of C++.  You need to have a solid un

RE: Question about Licensing my CF Web Application

2004-06-07 Thread Hagan, Ryan Mr (Contractor ACI)
You also need to get the term "revenue" defined.  Generally, it is accepted to mean gross sales, but not always.  As a matter of fact, I've been told that the US Accounting Standards defines revenue as commission on sales. A good example is that in the US: revenue = gross sales profit = gross sa

deploying fusebox apps on server farms

2004-06-01 Thread Hagan, Ryan Mr (Contractor ACI)
Greetings, We're nearing completion on a fairly large Fusebox 4 application written in ColdFusion and we've hit a bit of a snag.  Our production environment is going to be on a server farm.  Rolling out the application doesn't seem to be a problem, but we're thinking that we may have problems roll

OT: Real Log Homes

2004-05-26 Thread Hagan, Ryan Mr (Contractor ACI)
Quick question, Does anyone know who did the website for Real Log Homes? http://www.realloghomes.com/ If so, could you contact me off-list please? [EMAIL PROTECTED] Ryan Hagan ph: 540-731-3588 [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: The never-ending windows

2004-05-17 Thread Hagan, Ryan Mr (Contractor ACI)
How about doing something like this: MAIN Window     tons of stuff     event trigger: pop2(); pop2 data loader     msgWin = window.open( 'pop1.htm', 'msg', '' );     msgWin.focus();     do tons of stuff;     msgWin.close();     self.close(); pop1 message     document.write('Plea

RE: grabbing only a part of a string

2004-05-13 Thread Hagan, Ryan Mr (Contractor ACI)
ListRest( yourString, "|" ) -Original Message- From: Wurst, Keith D. [mailto:[EMAIL PROTECTED] Sent: Thursday, May 13, 2004 3:37 PM To: CF-Talk Subject: grabbing only a part of a string hi everyone. i was wondering what the best function for only grabbing a specific portion of a string. f

RE: Huge dropdown list of names...type in name as well as selecti ng it???

2004-05-13 Thread Hagan, Ryan Mr (Contractor ACI)
We do something like this in our user admin.  We've got about 1000 users. First, create a form with the select box and a text box above it: document.forms.myForm.optUsers );" value="" autocomplete="off">     #user_name#        ... loop through user lists Then create the _javascript_:
f

RE: XML and FileSystem

2004-04-23 Thread Hagan, Ryan Mr (Contractor ACI)
How about something like this?                             action = "">    directory = "#currDir#"    name = "tmpDirectory"    sort = "ASC">                       SELECT name   FROM tmpDirectory   WHERE type = 'Dir'   ORDER BY name                              qryDirectory.name & ""

RE: Uneditable textarea box

2004-04-23 Thread Hagan, Ryan Mr (Contractor ACI)
Be careful with the "readonly" attribute.  Even though it's in the HTML4.0 spec, Netscape didn't support this attribute in most browsers.  I'm sure others don't as well.  Depending on how compatible your application needs to be, this might not be the best solution. Another idea is to use the _ja

RE: msSQL management script needed

2004-04-22 Thread Hagan, Ryan Mr (Contractor ACI)
We've been using an ASP application called 1 Click DB Pro.  It's pretty nice and as close as you're likely to come to phpMyAdmin. http://www.standardreporting.net/1ClickDB/ -Original Message- From: Mystic [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 21, 2004 5:58 PM To: CF-Talk Su

Writing formatted data to Excel

2004-04-19 Thread Hagan, Ryan Mr (Contractor ACI)
Greetings, I know that MS has kept .xsl files proprietary, but I was wondering if anyone knew any tricks for spitting out some formatted data into Excel. Basically, I really just want to set the format to a column as "currency". I can dump a TAB delimited file from CFMX just fine into Excel, but t

RE: clicking on a map

2004-04-19 Thread Hagan, Ryan Mr (Contractor ACI)
Hmm, typo sorry.  It's ImageMagick: http://www.imagemagick.org/ I get the impression that it's already installed on most servers.  However, it's a bit complex.  If you can grab the color info using _javascript_ on the client side, that'd be cool.  I'm sure you could also do it using the Java A

RE: clicking on a map

2004-04-19 Thread Hagan, Ryan Mr (Contractor ACI)
Try this: If you use the image in a form (e.g. ), when you click on the image the X,Y of the image is passed to the form's action page. You can then use something along the lines of ImageMagik to find out what the color of the pixel is at that exact location.  Note that there may be other tags o

Dreamweaver MX 6.1 oddity

2004-04-12 Thread Hagan, Ryan Mr (Contractor ACI)
Hello, I just opened a PHP file in Dreamweaver and inside the file is a comment that looks like this: This file was originally built in Homesite 5.5.  I did not put this line of code into the file (knowingly, at least) and can't delete it.  Everything in the file AFTER this line can't be edited,

RE: Your Preferred Payment Gateway?

2004-04-12 Thread Hagan, Ryan Mr (Contractor ACI)
Yeah, Auth.Net's docs (at least for the AIM Implementation) are quite outdated too.  I *HAD* to contact Tech Support in order to figure out some issues I was having that weren't mentioned anywhere in the docs...for instance, the "x_currency_code" variable has been deprecated.  Wasn't in the docs, b

RE: CFIF within input

2004-04-06 Thread Hagan, Ryan Mr (Contractor ACI)
You're missing a right angel bracket after the double quotes.  It should read: value="#trim(side_1_comments)#" -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 11:21 AM To: CF-Talk Subject: CFIF within input I want to display text in a input

RE: Flash pop-up help

2004-04-02 Thread Hagan, Ryan Mr (Contractor ACI)
I have done it in the past by creating the "popup" function in the same web page that launches the Flash animation:

RE: Incorrect syntax near...

2004-03-12 Thread Hagan, Ryan Mr (Contractor ACI)
Edit your script as such:      Update wweb_status   SET status = 'custom', custom_message = '#form.custommessage#'   Where status = status    First, you don't need to put #'s inside the tag at the top. Second, you only need to use "SET" once in SQL and then follow that with a comma-sepa

RE: String Help

2004-03-11 Thread Hagan, Ryan Mr (Contractor ACI)
If the string is longer than 70 chars, it'll just return the first 70 chars. If the string is less than 70 chars, it'll return the entire string. -Original Message- From: Kristopher Pilles [mailto:[EMAIL PROTECTED] Sent: Thursday, March 11, 2004 2:49 PM To: CF-Talk Subject: String Help

RE: Insert dynamic form fields into a database - More Help Needed

2004-03-11 Thread Hagan, Ryan Mr (Contractor ACI)
ATE golfers SET golfer_purse = #evaluate("form.thefield") WHERE golfer_id = #form.# This needs to be populated from: Can this even work? -- Jillian -Original Message- From: Hagan, Ryan Mr (Contractor ACI) [mailto:[EMAIL PROTECTED] Sent: March 11, 2004 7:46 AM To: CF-Talk Su

RE: Insert dynamic form fields into a database

2004-03-11 Thread Hagan, Ryan Mr (Contractor ACI)
All you need to do is loop through your form collection on the "post_golfer_form.cfm" page.  Since your textboxes names are the golfers IDs, then you can use the textbox value to adjust the purse and the name of the textbox as the where clause.   Like so:     username="#db_username#" passwo

RE: ColdFusion Graphing Capabilities

2004-02-25 Thread Hagan, Ryan Mr (Contractor ACI)
display a scatter graph over top of a line graph?  Different data but same range on the X and Y. -Original Message- From: Philip Arnold [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 25, 2004 5:14 PM To: CF-Talk Subject: RE: ColdFusion Graphing Capabilities > From: Hagan, Ryan Mr (C

RE: ColdFusion Graphing Capabilities

2004-02-25 Thread Hagan, Ryan Mr (Contractor ACI)
ColdFusion cannot natively do complex graphs.  Only simple charts.  TeraTech has a tag called Graphics Server ( http://www.cfxgraphicsserver.com/) which I've never used, but seems prohibitively expensive given its feature set.  If you have a large budget, I'd suggest Corda's ( www.corda.com) PopCh

RE: Break the block, and SURVIVE, any way?

2004-02-24 Thread Hagan, Ryan Mr (Contractor ACI)
Yep, typo.  Sorry about that. -Original Message- From: Chunshen Li [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 24, 2004 1:51 PM To: CF-Talk Subject: Re: Break the block, and SURVIVE, any way? Yes, your follow-up makes a lot of sense to me except the GET method in the following block

RE: Break the block, and SURVIVE, any way?

2004-02-23 Thread Hagan, Ryan Mr (Contractor ACI)
When you do an request, you may or may not receive cookies FROM the server.  To determine if you have, simply look at the "responseHeader".  If you have, and you need to send those BACK to the server, that is when you want to use the code.  The following code connects to a server, gets the cookie

RE: CFC invocation performance

2004-02-20 Thread Hagan, Ryan Mr (Contractor ACI)
Yeah, there is.  I created a CFC to handle a bunch of date processing functions when spidering our intranet.  I have to run a format function on every date I run across on our pages.  There's about 500 or so.  Creating the object once and referencing the format function yields SIGNIFICANTLY better

RE: cfhttp tag failed

2004-02-12 Thread Hagan, Ryan Mr (Contractor ACI)
Have you tried connecting to other HTTPS sites using as a test? For instance: > Older versions of CFMX (ie 6.0) have had problems with the HTTPS protocal using . -Original Message- From: Chunshen Li [mailto:[EMAIL PROTECTED] Sent: Thursday, February 12, 2004 9:21 AM To: CF-Talk Su

RE: Best practises question

2004-01-29 Thread Hagan, Ryan Mr (Contractor ACI)
I've read several places that it's preferable to use the following syntax: -Original Message- From: David Adams [mailto:[EMAIL PROTECTED] Sent: Thursday, January 29, 2004 7:59 AM To: CF-Talk Subject: Best practises question In the following snippet, what is better form for rep

RE: Problems logging a user in properly

2004-01-28 Thread Hagan, Ryan Mr (Contractor ACI)
Make sure you've started session management has been turned on for the application. Do this by setting "sessionmanagement" and "sessiontimeout" vars in your tag: sessiontimeout="#createtimespan(0,1,0,0)#"> -Original Message- From: Yexley Robert D Contr AFRL/PROE [mailto:[EMAIL PROTECT

RE: Graphics editing with cold fusion

2004-01-20 Thread Hagan, Ryan Mr (Contractor ACI)
That's a good suggestion.  And I'd LIKE to eventually do this in flash. But...I REALLY want to do this without Flash.  No, I'm not trying to make this hard on myself on purpose, I just want a pure code solution.  Let me explain a little further. The paper doll is not an interactive application. 

Graphics editing with cold fusion

2004-01-20 Thread Hagan, Ryan Mr (Contractor ACI)
Greetings, I'm looking for a graphics package that will integrate with Cold Fusion that is capable of two primary operations.  The first thing that I need is to be able to layer graphics.  For instance, I have one graphic (GIF or JPG), I need to lay a smaller graphic over top of it and then spit t

RE: Map with Co-ordinates

2004-01-08 Thread Hagan, Ryan Mr (Contractor ACI)
If you're based in US, go here: http://bullseye.electricvine.com/geomapper.asp If you're anywhere else in the world, I can create exactly what you need so long as you have some database that can translate postal codes to latitude/longitude.  I've already created a product to do exactly this, b

RE: Space between images

2004-01-02 Thread Hagan, Ryan Mr (Contractor ACI)
Also, if you're still having trouble, your tag has "cellpadding=0" twice.  Make one of those "cellspacing=0". -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Wednesday, December 31, 2003 11:27 AM To: CF-Talk Subject: Re: Space between images remove line breaks in

RTF to PNG? or something?

2003-12-29 Thread Hagan, Ryan Mr (Contractor ACI)
Greetings, Is there any such thing that will take a RTF code and convert it to a PNG,JPG,TIFF,GIF,BMP?  If not, maybe there's another solution for my problem? I need to print a report.  The report will be printed in landscape mode and divided into three equal regions.  The top third is a schedule

RE: Request timed out - what does this mean?

2003-12-16 Thread Hagan, Ryan Mr (Contractor ACI)
Usually when I see this happen is when I've written a poor query and the database server is taking longer to process said query than the CF Admin allows.  In this case, the CF request is ended, but the database is still processing my request.  The database server will churn and churn on the problem

RE: OT: US Sales Tax Question

2003-12-03 Thread Hagan, Ryan Mr (Contractor ACI)
It's also important to note that if you do business in California and sell to a California resident, you must charge based on which COUNTY that your customer lives in.  California has 50 some counties and about six different tax rates between them.  I've not seen this in any other state, but I'm ce

RE: Create date problem

2003-12-02 Thread Hagan, Ryan Mr (Contractor ACI)
Try this: Mid(datetime, 7, 2) )> #DateFormat( myDate, "mm/dd/" )# #TimeFormat( myTime, "hh:mm:ss tt" )# Take a look at the docs for ParseDateTime().  It's a pretty useful function. http://livedocs.macromedia.com/coldfusion/6/CFML_Reference/functions-pt250.h tm#1110355 htm#1110355>

RE: The Last Space.

2003-12-01 Thread Hagan, Ryan Mr (Contractor ACI)
There's a UDF (wrap) at cflib.org that should do this for you.  You can view the code there too: http://www.cflib.org/udf.cfm?ID=249 -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Monday, December 01, 2003 1:03 PM To: CF-Talk Subject: The Last Space. Anybody know a

RE: Recursion and Breadcrumbs

2003-11-24 Thread Hagan, Ryan Mr (Contractor ACI)
This is what I generally use.  Let me know if you need clarification. username="#request.dsn.user#" password="#request.dsn.pass#"> SELECT catId, parentCatId, catName FROM item_categories WHERE parentId = #arguments.myCatId# ORDER BY category       )> -Original Me

Amazon.com debugging

2003-11-17 Thread Hagan, Ryan Mr (Contractor ACI)
Greetings, I find myself trying to debug Amazon.com web service calls frequently, so I wrote a little function to dump the SOAP package that Amazon.com sends me. I thought I'd post it here so others could use it and/or give me feedback on it.  It's pretty basic, but has been a huge help while deve

RE: Oracle Sequences

2003-11-05 Thread Hagan, Ryan Mr (Contractor ACI)
Try doing two separate queries: INSERT INTO ... SELECT PKSeq.CurrVal Stick them inside a transaction and you should be good to go. -Original Message- From: Tyler Clendenin [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 05, 2003 10:48 AM To: CF-Talk Subject: Oracle Sequenc

RE: Regex help

2003-11-05 Thread Hagan, Ryan Mr (Contractor ACI)
Some thoughtful soul (Dain Anderson) has already created a ColorCode script for you.  I use it on my blog website and it works wonderfully.  You can find it here: http://www.cfcomet.com/utilities/ Look for   CF_ColoredCode v3.2 -Original Message- From: Ewok [mailto:[EMAIL PROTECTED] S

RE: Still can not figure this out...JavaScript Error

2003-10-22 Thread Hagan, Ryan Mr (Contractor ACI)
function calctax(current) { var st="WI"  <- Missing semi (;) -Original Message- From: Eric Creese [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2003 2:41 PM To: CF-Talk Subject: Still can not figure this out..._javascript_ Error I keep getting an error when I tab from the Qua

RE: Form and hidden variable question

2003-10-20 Thread Hagan, Ryan Mr (Contractor ACI)
Sure thing.  First, a little info on _javascript_.  Once the page is downloaded into your browser, the browser takes the DOM and loads it into memory.  Thus, when you modify the value of your hidden field, outputselection, it is being modified in memory and not in the actual source code.  Displayin

RE: Counting CRLF

2003-09-25 Thread Hagan, Ryan Mr (Contractor ACI)
Thanks for the quick response with both those methods. Considering both methods, is one more efficient than the other? The string I'm looking at is usually not small ( >5000 characters ). -Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Thursday, September 25, 20

Counting CRLF

2003-09-25 Thread Hagan, Ryan Mr (Contractor ACI)
Hello, I'm trying to count the number of CRLF's (Chr(13)&Chr(10)) at the beginning of a string, but I can't seem to figure this one out. For instance, I have a string that is: How can I programmatically tell that I've got 3 lineBreaks at the beginning of that string? I've been trying to figu

RE: Verifying an email address exists

2003-09-24 Thread Hagan, Ryan Mr (Contractor ACI)
There are several web services that do this. Check out: http://www.xmethods.com/ And search for email validation. -Original Message- From: Claude Schneegans [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 24, 2003 4:57 PM To: CF-Talk Subject: Verifying an email address exists Hi,

RE: Find A Pattern

2003-09-22 Thread Hagan, Ryan Mr (Contractor ACI)
If you're going to need to loop through a large file and get multiple lines of the same data, try the following: I haven't tested this code, but it should be pretty close to what you're looking for. -Original Message- From: Scott Wilhelm [mailto:[EMAIL P

RE: OT: CC Processing and Recurring Billing

2003-09-19 Thread Hagan, Ryan Mr (Contractor ACI)
Paypal has a really nice (very configurable) subscription system. Once your customer pays through PayPal, you can have PayPal use their subscription service to bill that customer every month, or year or whatever. At any time, the customer can see how long they've been subscribed, how much they've

RE: Graphing Solutions Beyond CFGraph

2003-09-18 Thread Hagan, Ryan Mr (Contractor ACI)
I've used Corda PopCharts which is, in essence, a COM object. It works really well. I've also used a PHP solution called JP Graph which I can't recommend highly enough. http://www.corda.com/products/popchart/ http://www.aditus.nu/jpgraph/ -Original Message- From: Rick Walters [mailto:[

RE: Recursion and Scope problem?

2003-09-18 Thread Hagan, Ryan Mr (Contractor ACI)
As I understand it ( and I'll be quickly corrected if I'm wrong ), here's how scope works. In a CF page, all variables on that page (and 'd pages) have the same "Global" scope...functions included. By using the "var" keyword, you're telling CF to make the declared variable private scope of the fu

RE: Recursion and Scope problem?

2003-09-18 Thread Hagan, Ryan Mr (Contractor ACI)
Try using the "var" keyword in your first four statements. mailto:[EMAIL PROTECTED] Sent: Thursday, September 18, 2003 12:59 PM To: CF-Talk Subject: Recursion and Scope problem? Ok, I'm doing a bit of recursion, and my variables seem to be overwriting themselves, which makes no sense to me. He

RE: Best method for securely deleting a record

2003-09-16 Thread Hagan, Ryan Mr (Contractor ACI)
And make sure you use the "cfqueryparam" tag in the WHERE clause for your DELETE statement. -Original Message- From: Michael Traher [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2003 10:52 AM To: CF-Talk Subject: RE: Best method for securely deleting a record One possibility i

get the current line number?

2003-09-11 Thread Hagan, Ryan Mr (Contractor ACI)
Hello, Is there a way to get the current line number in Cold Fusion? Basically, I'm writing a small tag in CF to log certain events, and I'd like to be able to tell what line number (from the original cfm file) certain pieces of code were executed on. Thanks! Ryan Hagan ph: 540-731-3588 ~~

RE: Can this be done?

2003-09-08 Thread Hagan, Ryan Mr (Contractor ACI)
Here's a start. I started collecting this data quite some time ago, and it only represents search engines that people used to find sites where I've collected this data. In other words, this isn't exactly a comprehensive list and you can already see where minor variations on the URL could cause a

RE: text file to database

2003-09-05 Thread Hagan, Ryan Mr (Contractor ACI)
Hi Greg, I found this at Christian Cantrell's webblog. It's not exactly what you need, but should get you started. -- CC Says -- Anyway, did you know that CFHTTP can automatically turn a comma-delimited file into a query object for you? Let's say you have a file called data.txt that looks like t

SOLVED Dreamweaver MX adding random code

2003-09-03 Thread Hagan, Ryan Mr (Contractor ACI)
riginal Message----- From: Hagan, Ryan Mr (Contractor ACI) [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 26, 2003 3:18 PM To: CF-Talk Subject: Dreamweaver MX adding random code I've done a search in the archives and found one user that said they were having this problem. However, there wa

MapPoint Web Services

2003-09-02 Thread Hagan, Ryan Mr (Contractor ACI)
Greetings, Has anyone successfully used Microsoft's MapPoint web services through Cold Fusion? Anyone have any examples of doing this? Ryan Hagan ph: 540-731-3588 ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Sub

Dealer locator

2003-08-29 Thread Hagan, Ryan Mr (Contractor ACI)
Greetings, I'm working on a dealer locator for a manufacturing company. The company has about 5 dealers in each state. I'd like to make this as dynamic as possible, so that the company can simply use an online interface to enter in the zip code of each dealer and have a nice little dot appear on

RE: SQL : Finding element in list of values in a query field.

2003-08-27 Thread Hagan, Ryan Mr (Contractor ACI)
The suggestion Brian made about adding commas around the values is actually a VERY good suggestion. Here's why. With string items such as "dancing" or "running", you're probably okay without the commas, but what if your table looked like this: NAME | LUCKY NUMBERS - bob

RE: SQL syntax for Supertypes-Subtypes AKA Circular Reference AKA Entity Tree

2003-08-27 Thread Hagan, Ryan Mr (Contractor ACI)
I asked a very similar question a few weeks ago. One solution was posted by Jochem van Dieten: Use a nested set model, or use a 2 table model where one table holds complete trees in an XMLData field (which you only need to edit when a new element is inserted) and one holds individual messages b

Dreamweaver MX adding random code

2003-08-26 Thread Hagan, Ryan Mr (Contractor ACI)
I've done a search in the archives and found one user that said they were having this problem. However, there was no mention if this was something that could be fixed, or if I just have to trash my copy of Dreamweaver. DWMX is adding code to my Cold Fusion tags. In almost all cases, the code is

Dreamweaver MX adding random code

2003-08-26 Thread Hagan, Ryan Mr (Contractor ACI)
I've done a search in the archives and found one user that said they were having this problem. However, there was no mention if this was something that could be fixed, or if I just have to trash my copy of Dreamweaver. DWMX is adding code to my Cold Fusion tags. In almost all cases, the code is

RE: Thinking about application architecture...

2003-07-17 Thread Hagan, Ryan Mr (Contractor ACI)
Out of curiosity, what is the problem with limiting each session to the same box on a load-balanced system? We use a web farm here and we restrict each session to only one box with no problems. I don't really see this as much of a constraint and it certainly makes the programming a lot easier. I

RE: Thinking about application architecture...

2003-07-17 Thread Hagan, Ryan Mr (Contractor ACI)
MySQL has not (as of version 4.1) included stored procedures, constraints or triggers in their database. These are all planned for 5.0 release. http://www.mysql.com/documentation/mysql/bychapter/manual_Introduction.html# TODO_MySQL_5.0 -Original Message- From: Taco Fleur [mailto:[EMAIL

recursion in cold fusion ( was RE: Creating a list with infinite groupings and indents )

2003-07-09 Thread Hagan, Ryan Mr (Contractor ACI)
This brings up an interesting question for me. I tend to use recursive functions frequently, and have even had to solve a problem very similar to the original question posed in this thread. My take on the solution is the following (in php): itemIDitemparentID ---

Yahoo Web Services?

2003-06-27 Thread Hagan, Ryan Mr (Contractor ACI)
Greetings, Does anyone know if Yahoo! has, or plans to, release any web services based on their applications? There's been talk of lots of people wanting to create various types of calendar apps, and I was just thinking that it would be really nice to be able to use Yahoo!'s calendar application

RE: Simple popup window that auto loads

2003-06-24 Thread Hagan, Ryan Mr (Contractor ACI)
Actually, you can. http://aspalliance.com/peterbrunone/impossible.asp -Original Message- From: Jeff Garza [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 24, 2003 12:12 PM To: CF-Talk Subject: Re: Simple popup window that auto loads Don't forget that this will generate a message box sinc