Re: Create keyboard shortcuts???

2006-06-04 Thread Ryan Guill
They are done with javascript, you will have to create an event listener to listen for the keystroke and check to see what has focus, if nothing has focus on the page or if nothing that matters has focus then apply the action. But you want to make sure the user does not have a text field focused

Re: Create keyboard shortcuts???

2006-06-04 Thread Ryan Guill
Guys, he knows about the access keys. What he is talking about is not an access key, you do not have to hit alt with the key, just the key itself. gmail users are used to this within gmail, it allows you to hit c and the page changes for you to write an email, inside of an email you can hit j or

Re: Fetching last record

2006-06-02 Thread Ryan Guill
A lot of times, I put a field in my database that is the time inserted. Then what you can do is set a varaible before your insert with the time you are going to insert, then do your insert using that time, and then you can do a select with that time right after it. If you are using a timestamp

Re: Find in an array...

2006-06-01 Thread Ryan Guill
StructFind() searches for a key in a structure, not a value. The arrayFind() they are talking about is looking for a value. Its not the same. there is a StructFindValue() but it will only search for simple variables, not complex ones. On 6/1/06, Mike Klostermeyer [EMAIL PROTECTED] wrote: and

Re: Resetting a CF application.

2006-05-18 Thread Ryan Guill
Im not sure, but im pretty sure you could call the onApplicationStart() directly. Maybe add a flag to your onRequestStart(), if structKeyExists(url,reloadApplication) and url.reloadApplication EQ Truecfset onApplicationStart() //cfif On 5/18/06, Ian Skinner [EMAIL PROTECTED] wrote: How could

Re: ColdFusion and MapPoint

2006-05-18 Thread Ryan Guill
Sorry I dont have a response for you, but would be very interested if you came across a solution (for 6.1 or 7 either). On 5/15/06, James Hunt [EMAIL PROTECTED] wrote: Has anyone used MapPoint and ColdFusion MX 6.1 together? I'd like to use it to find driving distances from one address to

inline vs cfinvoke...

2006-05-16 Thread Ryan Guill
clear enough... -- Ryan Guill A Deep Blue [EMAIL PROTECTED] www.ryanguill.com (270) 217.2399 got google talk? Chat me at [EMAIL PROTECTED] The Coldfusion Open Application Library - COAL - http://coal.ryanguill.com Use CF and SQL? Try qBrowser - http://www.ryanguill.com/docs/ www.ryanguill.com

Re: inline vs cfinvoke...

2006-05-16 Thread Ryan Guill
Definately, and I agree, but there are times when I am passing several arguments to a method I prefer to use cfinvoke because it makes the code much easier to follow in case I or anyone else has to come back to it. And I have no problem with following the cfinvoke with a cfset afterwards to get

Re: DAO CFC and NULL values

2006-05-11 Thread Ryan Guill
So then you write your own method called isValueNumeric() that will return true for an empty string. you will then just need to set the type to any and then check on the inside of your methods. Sucks, but its about the only way I know... at the end of the day its going to be some sort of

Re: unable to see certain CGI variables :(

2006-05-10 Thread Ryan Guill
Like Ian said, all coldfusion can see is what the webserver gives it. Also, a simple dump of cgi variables does not give you all of the variables that are available from the webserver, and also note that if you ever do a structKeyExists() or isDefined() on any cgi variable, it will always come

Re: Working with BLOBS

2006-05-10 Thread Ryan Guill
The handling of blobs and clobs are generally done by the driver itself. Which database are you using and what version? the ability to read and write blobs/clobs to the database should be a walk in the park, the same as any other datatype. On 5/10/06, Tom Chiverton [EMAIL PROTECTED] wrote: On

Re: Looping through Directories

2006-05-10 Thread Ryan Guill
Its even easier than that. Anywhere you reference the parent query inside the child, reference the parent queries current row... parentquery.columnname[parentquery.currentrow] The current row attribute gets update correctly throughout the loops and will force the reference to be correct. On

Re: cgi.scriptname and url parameters

2006-05-09 Thread Ryan Guill
i think you want cgi.path_info instead of script_name On 5/9/06, Ben Nadel [EMAIL PROTECTED] wrote: Andy, Careful, that will give you the server-side template path, not the web-page path: GetTemplatePath() == D:\sites\www.foo.bar\index.cfm CGI.script_name = /foo.bar/index.cfm

Re: JRE Error w\CFMX7

2006-05-09 Thread Ryan Guill
http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=tn_19016 google knows ;) On 5/9/06, Love Sponge [EMAIL PROTECTED] wrote: Hi all, I am trying to set up database connections using CFMX7 Administrator but I am getting this message: This applet displays a file-tree of the server to

Re: JRE Error w\CFMX7

2006-05-09 Thread Ryan Guill
My only guess then is that you installed it wrong. Every time I have run into that I just install the JRE and it works. Make sure you are getting the JRE and JVM. On 5/9/06, Love Sponge [EMAIL PROTECTED] wrote: I installed the latest version from that site but still having the problem.

Re: Typical JRUN Memory Usage CF 7 Integrated JRUN

2006-05-02 Thread Ryan Guill
I would definately say it depends ;) It would depend on your settings in your jrun and cf, and the types of things the applications are doing. I would say close to a gig of memory usage (if you have it) would not be uncalled for if even one of your sites was doing any heavy lifting. On 5/2/06,

Re: Too many connections?

2006-04-21 Thread Ryan Guill
Are you sure that it is the scheduled task that is causing it? Even if the scheduled task is the code reporting the error, if you have other things that are causing the out of memory, the scheduled task could just be the proverbial straw that does the server in. I would keep an eye on the memory

Re: Mail Error

2006-04-21 Thread Ryan Guill
can you show us the offending code? On 4/21/06, Ken [EMAIL PROTECTED] wrote: Hi. I got this error just prior to a CF crash: Could not connect to SMTP host: 206.191.0.222, port: 25; nested exception is: java.net.SocketException: No buffer space available (maximum connections reached?):

Re: URL issue

2006-04-21 Thread Ryan Guill
Woah man, you're looking for help right? I dont know how you expect anyone to help you with an attitude like that, cold medicine or not. I would have explained that to you too, because how are we to know whether or not you know what you are talking about? You're the one asking the question.

Re: CFC documentation not being displayed

2006-04-20 Thread Ryan Guill
Do you have access to the cfide? In other words, can you get to the administrator? You must have the cfide available to get to that documentation I believe. On 4/20/06, Pete Ruckelshaus [EMAIL PROTECTED] wrote: I'm breaking all of my SQL out into a CFC library as a first step towards

Re: sql question.....

2006-04-19 Thread Ryan Guill
is to say cfif len(trim(equip_idle)) NEQ 0 but yeah, this should work too. And isn't the code for the value portion of the statement also show up (as far as the field goes) if there is a value? Yep, it should show up too. -- Ryan Guill A Deep Blue [EMAIL PROTECTED] www.ryanguill.com (270) 217.2399 got

Re: sql question.....

2006-04-19 Thread Ryan Guill
No problem. On 4/19/06, David Elliott [EMAIL PROTECTED] wrote: Thanks Ryan. Ryan Guill [EMAIL PROTECTED] wrote: On 4/19/06, David Elliott wrote: Below is a part of my code And my question might be a simple onethe line that says ,equip_idle...does this mean I'll only have any

Re: isValid() question

2006-04-18 Thread Ryan Guill
I haven't heard about anything wrong with any of them so far. I would say they should be ready to roll, unless you already had some super special one written, in which case you need to be sharing! ;) Seriously, unless you have some special cases you need to test for, I would say they should work

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

2006-04-18 Thread Ryan Guill
Note on the minor comment: not all db's will allow this. On 4/18/06, Ben Nadel [EMAIL PROTECTED] wrote: Minor comment, but I often will run an Update and a select in the same CFQuery statement... This will return rows/recordcount (potentially). ColdFusion doesn't know that this is happening as

Re: Evaluate vs ?

2006-04-17 Thread Ryan Guill
cfset Quantity = form.[Quantity_#i#] / On 4/17/06, Stan Winchester [EMAIL PROTECTED] wrote: I've read you should not use Evaluate(). In the following example, what would be best practice? cfloop index=i from=1 to=#FORM.itemsOnPage# set Quantity = val(Evaluate(FORM.Quantity_ i)) /

Re: Evaluate vs ?

2006-04-17 Thread Ryan Guill
Err, sorry, no period in there... On 4/17/06, Ryan Guill [EMAIL PROTECTED] wrote: cfset Quantity = form.[Quantity_#i#] / On 4/17/06, Stan Winchester [EMAIL PROTECTED] wrote: I've read you should not use Evaluate(). In the following example, what would be best practice? cfloop

Re: Big Slow Query

2006-04-16 Thread Ryan Guill
Forgive me, I didnt read the entire post, but what seems to be the problem is you are doing a subselect when an inner join will work just fine. You want all users who have orders right? instead of Select * from users where userid in ( select o.userid from orders o join

Re: adobe certification site

2006-04-12 Thread Ryan Guill
They do two totally different things, its the difference in = and ==, one is setting a variable equal to something, one is testing for equality... On 4/12/06, Mike Kear [EMAIL PROTECTED] wrote: The one that annoys me is the use of eq in a CFIF, but = in a CFSET.Does anyone know if there is

Re: input box focus

2006-04-12 Thread Ryan Guill
Yeah, it should go in your head. head script type=text/javascript the javascript... /script /head On 4/12/06, David Elliott [EMAIL PROTECTED] wrote: does this code need to appear in any certain area of the web page? i.e. body, head ?? --- Bryan Stevenson [EMAIL PROTECTED] wrote: coming

Re: input box focus

2006-04-12 Thread Ryan Guill
learning coldfusion so don't laugh yourself sick... Dave --- Ryan Guill [EMAIL PROTECTED] wrote: javascript code: window.onload = document.myformname.myforminput.focus(); where myformname is the name= of the form tag and myforminput is the id (i think, it may

Re: input box focus

2006-04-12 Thread Ryan Guill
() /script /head body cfform action=DaveActionForm.cfm name=myform Please enter yardage ticket number: cfinput type=text Name= yardage_ticket_no input type=submit Value = Submit /cfform /body /html --- Ryan Guill [EMAIL PROTECTED] wrote: You need

Re: ANNOUNCE: CFMBB Forums resurrected

2006-04-10 Thread Ryan Guill
Guys, i know your right that it is postgresql, but I did a websearch for postgres and the first (and all of the others for that matter) results are for postresql... what am I missing? What is postgres? On 4/10/06, Rick Root [EMAIL PROTECTED] wrote: Damien McKenna wrote: -Original

Re: Bad character crashing cfxml

2006-04-09 Thread Ryan Guill
use cdata? If you ever have characters that could make the xml mis-formed, especially all user entered data, put it in a cdata. root node![CDATA[ my ' bad / data ]]/node /root That will parse just fine. http://www.w3schools.com/xml/xml_cdata.asp On 4/9/06, Josh Nathanson [EMAIL

Re: cfform and bad tabindexes - wtf?

2006-04-06 Thread Ryan Guill
Isaac, you realize that it only passes the fields that have changed to the action page right? Maybe some code will help us better understand your problem. On 4/6/06, Kevin Aebig [EMAIL PROTECTED] wrote: Are you talking about Flash forms? !k -Original Message- From: S.Isaac Dealey

Re: getting the closest number to an increment of 25,000

2006-04-05 Thread Ryan Guill
i have to admit, i didnt read your whole thing, but maybe this will work. take the max, MOD 25000 to get the remainder, and then subtract that from the max... On 4/5/06, Andy Matthews [EMAIL PROTECTED] wrote: I'm working on a site for a realtor. It has a search by price feature with a low and

Re: getting the closest number to an increment of 25,000

2006-04-05 Thread Ryan Guill
, subtract the remainder from the max and add 25000. You might be able to trim that up some, but thats basically what I would try first. On 4/5/06, Ryan Guill [EMAIL PROTECTED] wrote: i have to admit, i didnt read your whole thing, but maybe this will work. take the max, MOD 25000 to get the remainder

Uninstall CF Hotfix?

2006-03-23 Thread Ryan Guill
Hey guys, Anyone know how to uninstall a hotfix on CF 7? Hopefully without reinstalling cf... -- Ryan Guill A Deep Blue [EMAIL PROTECTED] www.ryanguill.com (270) 217.2399 got google talk? Chat me at [EMAIL PROTECTED] The Coldfusion Open Application Library - COAL - http://coal.ryanguill.com

Re: weird locking error

2006-03-23 Thread Ryan Guill
To track what locks are active, you could put code inside of the lock that sets an application variable and then removes the set after the /lock. Just an idea, but not a good one for a system wide view... On 3/23/06, Steve Brownlee [EMAIL PROTECTED] wrote: Russ: You can't get a list of active

Re: Suggestions on scrambling code

2006-03-22 Thread Ryan Guill
its called cfencode. From the command line (in windows) cd c:\cfusionmx7\bin\ cfencode[enter] it will tell you how to work with it. http://livedocs.macromedia.com/coldfusion/7/htmldocs/1176.htm (last line) On 3/22/06, Steve Kahn [EMAIL PROTECTED] wrote: How do you call up the cfencrypt

Re: save cfquery select statement to var

2006-03-15 Thread Ryan Guill
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: Hello, I have a pretty

Re: save cfquery select statement to var

2006-03-15 Thread Ryan Guill
. On 3/15/06, Ryan Guill [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

Re: save cfquery select statement to var

2006-03-15 Thread Ryan Guill
think the result attribute will be the ticket though. Thanks Jeremy -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 15, 2006 9:28 AM To: CF-Talk Subject: Re: save cfquery select statement to var Also, a follow up, what you *can* do is create

Re: Cfschedule question

2006-03-15 Thread Ryan Guill
Set a flag in the database when you send them the email, then only check for customers without that flag. On 3/15/06, Mike | NZSolutions Ltd [EMAIL PROTECTED] wrote: Hi there, I have created a cfschedule that runs daily. It queries a list of customers and sends them a followup email. The

Re: Yesterday in now()

2006-03-14 Thread Ryan Guill
cfset yesterday = dateAdd(d,-1,now()) / On 3/14/06, Orlini, Robert [EMAIL PROTECTED] wrote: I have today in a cfset as: cfset today = now() How can I do a cfset with yesterday? tried this: cfset yesterday = now()-1 but it did not work. Robert O. -- No virus found in this outgoing

Re: Yesterday in now()

2006-03-14 Thread Ryan Guill
Just to be different: ;) cfset today = now() / cfset todayMonth = month(today) / cfset todayDay = day(today) / cfset todayYear = year(today) / cfif todayDay NEQ 1 cfset yesterdayDay = todayDay - 1 / cfset yesterdayMonth = todayMonth / cfset yesterdayYear = todayYear /

Re: Yesterday in now()

2006-03-14 Thread Ryan Guill
= now() I would like it to start with yesterday or better yet the first of the month to widen the search possibilities How can I set today to be the first day not the current day of the month? Robert O. -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Tuesday

Re: Flex 2 and Ben Forta

2006-03-12 Thread Ryan Guill
Right, the only difference really is that and what serial number you put in. You can install cf standard and then put in a new enterprise serial number and it just starts working as enterprise, with no reinstall. On 3/12/06, Dave Watts [EMAIL PROTECTED] wrote: Right now we have CFStandard and

Re: Flex 2 and Ben Forta

2006-03-12 Thread Ryan Guill
... -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Sunday, March 12, 2006 2:42 PM To: CF-Talk Subject: Re: Flex 2 and Ben Forta Right, the only difference really is that and what serial number you put in. You can install cf standard and then put in a new

Re: RSS site like fullasagoog.com

2006-03-08 Thread Ryan Guill
Or, you could do it like mxna does and set up a url that the site can hit when they post something new. Then use the hourly poll as a backup. On 3/8/06, Yves Arsenault [EMAIL PROTECTED] wrote: Hey Roger, Thanks for the reply. Yves: Only if you want to be hunted down by a bunch of irritated

Re: OT: Popular Open API's

2006-03-07 Thread Ryan Guill
These are great examples of API's, but I was meaning more like the Flickr API, the Yahoo! and Google maps api's, and the Paypal api's, the more mainstream API's that you always hear so much about. But keep them coming, I want to hear about these as well. On 3/6/06, Paul Hastings [EMAIL

Re: OT: Popular Open API's

2006-03-07 Thread Ryan Guill
Thanks for the comments everyone! Taking them all down. What im really looking for though is like web applications that people have developed that they have opened an API to use. Not as much tools like java and such (although keep those coming, i need those for something else!) but like flickr,

OT: Popular Open API's

2006-03-06 Thread Ryan Guill
towards things we can consume with coldfusion, but anything can work. This also includes webservices. I have a list of several, but I know there are a ton more out there and I just can't think of them all now that I actually need to ;) Thanks, -- Ryan Guill A Deep Blue [EMAIL PROTECTED

cfloop query= bug?

2006-03-03 Thread Ryan Guill
? -- Ryan Guill BlueEyesDevelopment [EMAIL PROTECTED] www.ryanguill.com (270) 217.2399 got google talk? Chat me at [EMAIL PROTECTED] The Coldfusion Open Application Library - COAL - http://coal.ryanguill.com Use CF and SQL? Try qBrowser - http://www.ryanguill.com/docs/ www.ryanguill.com

Re: cfloop query= bug?

2006-03-03 Thread Ryan Guill
But thats not the case. The current row is correct, even in the inner loop, but the value is not. On 3/3/06, Claude Schneegans [EMAIL PROTECTED] wrote: I think this issue has been discussed a few days before. It is a bug in CF (not in blue Dragon). The current row of a first level loop is

Re: Flex 2 and Ben Forta

2006-03-02 Thread Ryan Guill
of those options are free. It just seem a little excessive for Adobe to charge $999. Why not $500? Or even $600. !//-- andy matthews web developer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//- -- Ryan Guill BlueEyesDevelopment [EMAIL PROTECTED

Re: Getting the Flex2 Phones sample to work.

2006-02-20 Thread Ryan Guill
He must have the 8.5 player or he wouldnt get that far. If you run the debugging it will give you more info. Do you have the compiler arguments? Check out ben forta's entry that he posted a little while ago with a sample app, and check out the comments. That should get you started.

Re: burning the midnight oil on my chat room

2006-02-16 Thread Ryan Guill
Yeah, why don't you just yell fire in a crowded theater! ;) On 2/16/06, Martin Thorpe [EMAIL PROTECTED] wrote: See look you have started a scare now :-) would be nice to know. I'd like to hear this one too... off list of course. .:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield

Re: ArrayAppend oddity

2006-02-16 Thread Ryan Guill
arrayAppend(myArrayList2,01011) / The result of an addition statement is a numeric, so it will drop the leading 0. If you need the addition, its cfset mynewzip = 01011 + 7 / cfif len(mynewzip) LT 5 cfset mynewZip = 0 mynewzip / /cfif cfset arrayAppend(myArrayList2,myNewZip) / On 2/16/06,

Re: Open PDF

2006-02-14 Thread Ryan Guill
Sounds like a browser setting to me. It would do that in my browser because I have set all pdfs to download and then I can open them in the standalone acrobat reader. On 2/14/06, Brian Peddle [EMAIL PROTECTED] wrote: Using CF 7 and had written some code to open files that were uploads. Txt,

Re: Open PDF

2006-02-14 Thread Ryan Guill
What do you do to capture the mime-type? On 2/14/06, Brian Peddle [EMAIL PROTECTED] wrote: Found the issue and not sure why its happening. When someone uploads file I capture mime-type, its saving as image/pdf instead of application/pdf. Is there a server setting for this? -Original

Re: MS Access to large at 25MB?

2006-02-13 Thread Ryan Guill
Just an opinion, but I would be choosing a new host. On 2/13/06, I Cartanga [EMAIL PROTECTED] wrote: Thank you everyone. Now they are saying our index page takes 1800+ SECONDS to process??. I put measuring tags around the offending script and their server reported 18 ms. I emailed them

Re: Storing Documents

2006-02-10 Thread Ryan Guill
Has anyone done this in MySql? On 2/10/06, Zaphod Beeblebrox [EMAIL PROTECTED] wrote: We just recently set up a document management system using MS SqlServer. We ended up storing the documents inside the db. The way we structured it was to set up a table that had all of the meta data about

Re: OT: ColdFusion and Flex

2006-02-09 Thread Ryan Guill
Flex builder will be priced less than $1000 per developer. You will be able to get the compiler and framework for free. You will be able to get a limited version of Flex Enterprise services for free. Check out MXNA (http://weblogs.macromedia.com/mxna) for information. On 2/9/06, John McKown

Re: OT: ColdFusion and Flex

2006-02-09 Thread Ryan Guill
On 2/9/06, Adrian Lynch [EMAIL PROTECTED] wrote: That's where the confusion will come from, Flex Builder will be less than 1000k, but that on it's own isn't Flex. Yes, that is, on its own, Flex. You will be able to create and compile Flex directly in Flexbuilder on its own, much like the Flash

Re: OT: ColdFusion and Flex

2006-02-09 Thread Ryan Guill
http://weblogs.macromedia.com/cantrell/archives/2006/01/clarifying_the.cfm On 2/9/06, dave [EMAIL PROTECTED] wrote: The only confusing part is if you need to use the messaging service, which you will need the flex server for. Otherwise you don't need the flex server anymore, flex builder

Re: MySQL/CFMX7 is the death of me.

2006-02-06 Thread Ryan Guill
Im no expert here, so take my advice with a grain of salt. I put the 3.1.12 driver (mysql-connector-java-3.1.12-bin.jar) in my C:\CFusionMX7\wwwroot\WEB-INF\lib folder and then restarted. I dont see the mysql connector in my class path in the cfadmin. I am also using mysql 5.0.something. Are

Re: Query a mySQL View?

2006-02-03 Thread Ryan Guill
Sorry for the side topic on this, but I am in mysql setting up a new database for one of our new projects right now, and now that I am on mysql 5, I see Views now. I haven't ever used them before. What are they and what can they do? Thanks, On 2/3/06, Ken Ferguson [EMAIL PROTECTED] wrote:

Re: Query a mySQL View?

2006-02-03 Thread Ryan Guill
Ah, awesome. Do you know where I could get more information on them? The MySql website is hard to navigate sometimes... On 2/3/06, Rick Root [EMAIL PROTECTED] wrote: Ryan Guill wrote: Sorry for the side topic on this, but I am in mysql setting up a new database for one of our new projects

Re: Query a mySQL View?

2006-02-03 Thread Ryan Guill
--//- -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Friday, February 03, 2006 1:29 PM To: CF-Talk Subject: Re: Query a mySQL View? Ah, awesome. Do you know where I could get more information on them? The MySql website is hard to navigate sometimes... -- Ryan Guill

Anyone tried Ben Forta's CF/Flex Example?

2006-02-02 Thread Ryan Guill
the instructions to the letter as far as I can tell, twice now. thanks, -- Ryan Guill BlueEyesDevelopment [EMAIL PROTECTED] www.ryanguill.com (270) 217.2399 got google talk? Chat me at [EMAIL PROTECTED] The Coldfusion Open Application Library - COAL - http://coal.ryanguill.com Use CF and SQL

Re: Anyone tried Ben Forta's CF/Flex Example?

2006-02-02 Thread Ryan Guill
Well, I dont know what it was, but its working! Thank you very much. I had done all of this except for the clean several times, so I guess its safe to say thats what the problem was. Thanks! On 2/2/06, Bill Sahlas [EMAIL PROTECTED] wrote: I've set this up and have had success in compiling and

Re: CFC for entire box

2006-01-30 Thread Ryan Guill
you can use the cfusionmx/wwwroot/ directory to do this. You could put in a .cfc or .cfm file and just include it wherever you need to. I would make a unique foldername though and put it under that. Btw, COAL is set up to do something similar to this, although it is intended for cfcs. On

Re: mySQL 4.1 MX7

2006-01-27 Thread Ryan Guill
http://www.ryanguill.com/blog/index.cfm?mode=entryentry=C7BE3545-40CA-6D1C-8A6FDADE72B840CC :) On 1/27/06, Pete Ruckelshaus [EMAIL PROTECTED] wrote: I'm trying to set up a DSN for a mySQL database in MX7 for the first time. I am running mySQL 4.1.6; I've created a schema and a user and

cfdocumentitem type=pagebreak

2006-01-26 Thread Ryan Guill
Does anyone have any experience with cfdocumentitem type=pagebreak ? It just flat out isn't working for me. Is there a trick to it? -- Ryan Guill BlueEyesDevelopment [EMAIL PROTECTED] www.ryanguill.com (270) 217.2399 got google talk? Chat me at [EMAIL PROTECTED] The Coldfusion Open

Re: cfdocumentitem type=pagebreak

2006-01-26 Thread Ryan Guill
Sorta. I put the pagebreak in there, and it just ignores it as if its not there at all. Im not sure the hotfix is for this problem or not, but ill check it out. Thanks guys! On 1/26/06, Dave Carabetta [EMAIL PROTECTED] wrote: On 1/26/06, Ryan Guill [EMAIL PROTECTED] wrote: Does anyone have

Update, Delete, Insert recordcount?

2006-01-20 Thread Ryan Guill
Hey guys, Is there any way that you make coldfusion give you how many rows were affected from Update Delete and insert statements? Even if its not in the recordcount variable (which I have to assume would not be possible)? -- Ryan Guill BlueEyesDevelopment [EMAIL PROTECTED] www.ryanguill.com

Re: Update, Delete, Insert recordcount?

2006-01-20 Thread Ryan Guill
is it? ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Friday, January 20, 2006 11:21 AM To: CF-Talk Subject: Update, Delete, Insert recordcount? Hey guys, Is there any way that you make coldfusion give

Reload Fusebox circuts

2006-01-17 Thread Ryan Guill
I have a circuit, that has the appropriate fuses in it, but the application is saying that the fuse doesnt exist. I can see the fuse in the circuit.xml in code and in the browser. Is there a way to force fusebox to reload the circuit(s) ? I am using fb 4.1 if it makes a difference. -- Ryan

Re: Gmail thinks cf-talk is spam (since January 11th)?

2006-01-15 Thread Ryan Guill
I read cf-talk in gmail exclusively and mine have been coming through fine. About 1 out of 1000 gets tagged as spam for me. Did you mark any of the cf-talk stuff as spam? On 1/15/06, Sean Corfield [EMAIL PROTECTED] wrote: A good proportion of my cf-talk list mail is now being flagged as spam

Re: Mapping doesn't work

2006-01-14 Thread Ryan Guill
do this and just see if it works, change it to logical path /farcry_foo and leave your directory path alone. See if it works. On 1/13/06, Michael Clayton [EMAIL PROTECTED] wrote: I'm using the free CF development edition, and have been for quite a while, for personal testing. I've never had

OT: MXNA down?

2006-01-11 Thread Ryan Guill
Can anyone connect to mxna this morning? Im getting a timeout. -- Ryan Guill BlueEyesDevelopment [EMAIL PROTECTED] www.ryanguill.com (270) 217.2399 got google talk? Chat me at [EMAIL PROTECTED] The Coldfusion Open Application Library - COAL - http://coal.ryanguill.com Use CF and SQL? Try

Re: OT: MXNA down?

2006-01-11 Thread Ryan Guill
I dont guess I have an address for him. I was sorta hoping he was watching this list. Does anyone have a address? On 1/11/06, Judith Dinowitz [EMAIL PROTECTED] wrote: Can anyone connect to mxna this morning? Im getting a timeout. -- Ryan Guill I'm getting a timeout too. The best thing

Re: Get last inserted ID

2006-01-09 Thread Ryan Guill
Of course, but there is nothing stopping you from having both is there? You can have an autonumber id that is your primary key if you like, then have a uuid field that is also a key. As long as it is unique, you can use the two interchangably. Or, if you want a friendly order number, why not

Re: OT: Google Analytics

2006-01-09 Thread Ryan Guill
I signed up quick enough to get in in the beginning, and they just recently (maybe two weeks ago) allowed the ones that are already signed up to track up to 5 websites, up from 2 websites previously for me. So I would say that the time is comming. I enjoy analytics, and would say its worth the

Re: OT: Google Analytics

2006-01-09 Thread Ryan Guill
stats without seeing everyone else's... or is it one login for all 5? Sincerely, Should Have Signed up When He Had the Chance ..:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Monday

Re: OT: Google Analytics

2006-01-09 Thread Ryan Guill
Hartsfield [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 11:03 AM To: CF-Talk Subject: RE: OT: Google Analytics Nice. Thanks for the info. ...:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Ryan Guill [mailto:[EMAIL

Re: Get last inserted ID

2006-01-08 Thread Ryan Guill
What I usually do is have a column that just holds a specific timestamp or uuid of some sorts. I create a variable to hold the timestamp or uuid right before the insert query, then I select against the table looking for that timestamp or uuid. If you are using a db that stores a pretty detailed

Re: Get last inserted ID

2006-01-08 Thread Ryan Guill
-Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Sunday, January 08, 2006 8:08 PM To: CF-Talk Subject: Re: Get last inserted ID What I usually do is have a column that just holds a specific timestamp or uuid of some sorts. I create a variable to hold the timestamp or uuid

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

2006-01-04 Thread Ryan Guill
How about one for an array? This is pretty cool. On 1/4/06, Damien McKenna [EMAIL PROTECTED] wrote: -Original Message- From: Brendan Baldwin [mailto:[EMAIL PROTECTED] function Struct() { return arguments; } That's brilliant! :-D You need to get that in cflib! -- Damien

Re: Accounting for Unknown Number of Loops

2005-12-27 Thread Ryan Guill
I would create a function that will do this for you. Then you can call it recursively. Start it with the top level, have it check if it has a sub level, call the function (inside the original function) passing the sub level as the top level, rinse and repeat. On 12/27/05, Samantha Brinkley

OT: MXNA down?

2005-12-22 Thread Ryan Guill
Hey guys, im getting an application error on mxna this morning. Are others seeing this as well? Just wanted to put this out here to make sure its not just me and to let the guys know if they are on this list and haven't seen it yet. Thanks, -- Ryan Guill BlueEyesDevelopment [EMAIL PROTECTED

Re: Trying this again w/o the suject hijack (determinig if the refresh button has been clicked)

2005-12-22 Thread Ryan Guill
Im sorry if im missing something here, but why not just set the full url that the person is visiting in the session scope: cfset session.currentpage = http://localhost/mypage.cfm?foo=bar; / (you could easily string together some cgi variables together to get this) then it would just be a matter

Re: Trying this again w/o the suject hijack (determinig if the refresh button has been clicked)

2005-12-22 Thread Ryan Guill
Well yeah, you use frames, theres lots of things that go out the window! (sorry, im anti frames, I never consider them) And It just depends on if it matters if the page linking back to itself makes a difference. If not, this is a whole lot better than creating a uuid and hitting the db and all

Re: Whats wrong with this friendly URL idea?

2005-12-21 Thread Ryan Guill
If the page you want is in c:/cfusionmx/wwwroot/hendler.cfm, try this instead: cfinclude template=hendler.cfm / or cfinclude template=/hendler.cfm / On 12/21/05, Matt Robertson [EMAIL PROTECTED] wrote: On 12/21/05, Burns, John D [EMAIL PROTECTED] wrote: The only question I would have is why

Re: Which page called my custom tag

2005-12-20 Thread Ryan Guill
Could you not use cgi vars? something like path_info, i think there is even a template_path or something like it. On 12/20/05, Greg Saunders [EMAIL PROTECTED] wrote: hmm, i don't know an elegant way to get the includes. You could always say: cfif attributes.formobjectid EQ '10002'

Re: Which page called my custom tag

2005-12-20 Thread Ryan Guill
Re-reading your message again, cant you just turn on debugging and look at the stack trace and templates that are being called? On 12/20/05, jonese [EMAIL PROTECTED] wrote: Ok that helps a little bit. I'm getting out put like so

Re: MXNA contact?

2005-12-20 Thread Ryan Guill
maybe try [EMAIL PROTECTED] ? ;) On 12/20/05, jonese [EMAIL PROTECTED] wrote: I just tried to drop [EMAIL PROTECTED] an email with some questions but it bounced. can any provide me with a working email address? thanks in advance jonese

Re: CF mySQL date search query question

2005-12-14 Thread Ryan Guill
I have to say that its sort of funny that you surrounded your cf tags with [php] but i suppose you probably cross posted this to a forum. Either way, try something like this : cfif FORM.year IS NOT AND YEAR(n.due_datetime) = '#FORM.year#' /cfif cfif FORM.month IS NOT AND

Re: Snippets

2005-12-14 Thread Ryan Guill
Jacob I believe he was being facetious... On 12/14/05, Munson, Jacob [EMAIL PROTECTED] wrote: Not sure about Dreamweaver, but this is something that is available in both CFEclipse and HomeSite+. I use them every day. -Original Message- From: Lee [mailto:[EMAIL PROTECTED] Sent:

Re: CFCHART and caching

2005-12-13 Thread Ryan Guill
You could also cache the query that the charts are generated from if it is just the data you want to preserve. On 12/13/05, Adrian Lynch [EMAIL PROTECTED] wrote: You can write them to disk and do logic when displaying them. Ade -Original Message- From: Terry Ford [mailto:[EMAIL

  1   2   3   4   >