RE: CF Vertical Expanding Menu

2009-02-11 Thread Bryan Hogan
when the page is loaded? OR does it start at it's default closed state?? Hope that was clear... On Tue, Feb 10, 2009 at 3:08 PM, Bryan Hogan bho...@edonor.com wrote: Joel, It can not be done in in CF alone. See http://jquery.bassistance.de/treeview/demo/ -Original Message- From

RE: CF Vertical Expanding Menu

2009-02-10 Thread Bryan Hogan
Joel, It can not be done in in CF alone. See http://jquery.bassistance.de/treeview/demo/ -Original Message- From: Joel Polsky [mailto:polskystud...@gmail.com] Sent: Tuesday, February 10, 2009 12:56 PM To: cf-talk Subject: CF Vertical Expanding Menu Hi.. Need a easy solution to

RE: iPhone Development

2009-01-04 Thread Bryan Hogan
, please immediately notify us by telephone at (602) 489-7800 and delete the original message. Thank you. -Original Message- From: Ryan Stille [mailto:r...@cfwebtools.com] Sent: Sunday, January 04, 2009 5:01 PM To: cf-talk Subject: Re: iPhone Development Bryan Hogan wrote: Can someone point

RE: iPhone Development

2009-01-04 Thread Bryan Hogan
On Sun, Jan 4, 2009 at 8:41 PM, Bryan Hogan bho...@edonor.com wrote: Of course it can't be built with CFML. ;) I understand that, what I'm looking to do is get started building applications for the iPhone. The first of which is simple enough as Barney explained, just create the application to fit

iPhone Development

2009-01-03 Thread Bryan Hogan
Can someone point me into the right direction to get started developing iPhone applications with CFML? I would like to develop on Windows if at all possible. Bryan F. Hogan Product Manager eDonor(r) - Recruit, Retain, Repeat A Global Med Technologies(r) Company P 602.489.7844 F 602.489.7801

RE: Easy Credit Card Processing Service?

2008-11-21 Thread Bryan Hogan
Authorize.net is great but I wanted to mention charge.com. Their site looks crappy but I implemented them on my site http://www.stylishgiftware.com with Visa, MasterCard, Discover and American Express in a matter of minutes. They have a very simple API and they have an API that emulates

RE: Easy Credit Card Processing Service?

2008-11-21 Thread Bryan Hogan
I know. Just throwing it out there for you as a potential option. It took me a while to give them a try but when I finally did I was impressed. I had a budget of 0 and with no setup costs and them having the gateway and merchant account all in one; it was what I went with. If you can afford

RE: (ot) URL Hack Attempt Leaves Me Scractching My Head...

2008-07-24 Thread Bryan Hogan
It will be secured, but it is better IMO to use the maxlength attribute. It should match your schema. If I were doing this the maxlength on both my cfqueryparam and column would be the maximum length of allowed email addresses. My standard length for passwords can be no longer than 8 characters.

RE: CF running a Java Process- Making sure that it completes

2008-06-11 Thread Bryan Hogan
It depends on how your methods are setup in your class; however, you shouldn't have to call the run method on the thread unless you are overriding it. I would try calling the start method on the thread instead of the run method. I too have experienced weird issues while running a new thread

RE: Asynchronous Web Service Response

2008-06-09 Thread Bryan Hogan
You should consider providing a getStatus function that returns the status of the job. The client needs to be aware that their request may be batched and they should poll your service to get the status. You would not want the client to keep the request open until the batch completes so therefore

RE: For all those interested in OO...

2008-03-30 Thread Bryan Hogan
Could you post the code? -Original Message- From: Dominic Watson [mailto:[EMAIL PROTECTED] Sent: Sunday, March 30, 2008 7:51 AM To: CF-Talk Subject: For all those interested in OO... Just a little thought and action on the subject of object properties in ColdFusion if anyone is

SOT: Bulk SMS out.

2008-03-20 Thread Bryan Hogan
All, I need to send ~100K SMS messages out a day (No worries, not spam.) I am looking at two options. The first is buying a server solution and the second is using a web service. If I chose the server solution I would have to contract with the carriers and call their APIs directly. The cost

RE: Bulk SMS out.

2008-03-20 Thread Bryan Hogan
. -Original Message- From: Bryan Hogan [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2008 5:38 PM To: CF-Talk Subject: SOT: Bulk SMS out. All, I need to send ~100K SMS messages out a day (No worries, not spam.) I am looking at two options. The first is buying a server

OT: Creating a JS Library Init

2008-02-15 Thread Bryan Hogan
I would like to create a factory.js file that has an init method that accepts an attribute of which library to load. So say I had a string library called string.js and a library called date.js. I would like to include one default.js file in the site and dynamically load up the functions from

RE: Creating a JS Library Init

2008-02-15 Thread Bryan Hogan
(); stringjs.returnMyName=function(strName) { return strName; } -Original Message- From: Bryan Hogan [mailto:[EMAIL PROTECTED] Sent: Friday, February 15, 2008 2:44 PM To: CF-Talk Subject: OT: Creating a JS Library Init I would like to create a factory.js file that has an init method

Re: CFMX Upgrade Woes

2003-02-17 Thread Bryan Hogan
Check your syntax. You missed a few pounds cfoutput query=searchByDate tr td#DateFormat(Visit_Date,mm-dd-)#/td td#PatientLName, #Patient_FName#/td tdVisit_Type_Name#/td td#Visit_Description/td td#Patient_Phone#/td td#Medical_Record_No#/td

RE: CFMX Upgrade Woes - Tony

2003-02-17 Thread Bryan Hogan
Candace, try ctrl-0 on the columns which are coming up empty, than mouseout to save the nulls and then re-enter your data in the columns and mouseout again Requery the page and cfdump. There may be some corrupt data. -- Original Message -- From: Candace

Re: Parsing *.html files with CF

2003-02-17 Thread Bryan Hogan
Yes, I believe you can. But if you do then all of your static files will also be parsed by CF. Is that what you want? -- Original Message -- From: Austin Govella [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Date: Mon, 17 Feb 2003 16:34:27 -0600 I want

Re: Parsing *.html files with CF

2003-02-17 Thread Bryan Hogan
It depends, on if you want to scale or not. If you are planning a site that is expected to get hundreds or more visitors, I do not suggest to have cf process everything. Keep your static, static and your dynamic, dynamic. There is no problem with running includes and sessions with CF. I don't

Re: OT: FlashMX accessing local DB without remoting

2003-02-17 Thread Bryan Hogan
Not a flash guy but first thing that came to my mind was XML and XSL. I think flash could treat your xml file(s) as a db. So flash writes to your db.xml , your db.xml would have stylesheet attached so when you call your db.xml it returns to you, XML, ActionScript whatever you like. This is