Re: AW: Railo Hosting or a very basic VPS to install it on

2009-01-21 Thread David Strong
Do you need SQL Server 2008? Will MySQL do? If you can live with LINUX, check out eapps.com. They specialize in Java related hosting. Been using them for over 6 months. very happy. All their plans include root access. I am using railo/jetty/litespeed setup, with Percona performance patched

Send generated output programmatically to specific printer

2008-11-19 Thread David Strong
Trying to get coldfusion server to send generated output to printer automatically. The output is NON PDF, so CFPRINT won't help. Anyone know of any Java techniques or COM? ~| Adobe® ColdFusion® 8 software 8 is the most

Re: Send generated output programmatically to specific printer

2008-11-19 Thread David Strong
PDF is possible, just trying to conserve server CPU. Here is the scenario: Batch signal is sent to server from client. UPS labels printed on the Thermal printer, then report sent to Accounting Department, then copies sent to fulfillment warehouse Printer. All network printers. I'll look at

Re: Data Import

2008-11-19 Thread David Strong
Take a look at DataMgr by Steve Bryant. Helpful tool in migrating data from various db sources. Make sure you grab the 2.2 alpha version as its the last version that supports MSAccess. http://www.bryantwebconsulting.com/cfcs/ Otherwise: Load Candidates into query object. Load Cand_codings

Re: cfdocument issue - header / footer cutting off content

2008-10-31 Thread David Strong
Hi everyone, FYI here is the answer: You have to set your page size, top and bottom margins correctly? It's part of the CFDOCUMENT tag. Cheers Matthew ~| Adobe® ColdFusion® 8 software 8 is the most important and

Re: CF8 Dev Environment

2008-10-31 Thread David Strong
I use a combo of CFEclipse, Dreamweaver, and Notepad ++. CFEclipse for CFC development. Dreamweaver for UI, notepad for quick and dirty code fixing. Been using the cs4 beta, and quite frankly the code hinting / completion aspects of Dreamweaver is way better than CFEclipse. Also the new

Re: soEditor

2006-06-07 Thread David Strong
POSeditor... ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242810 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe:

Re: CF, Ajax and shared hosting.

2006-06-07 Thread David Strong
Jacob Wrote: Would those socket gateways be configured in the Event Gateways section? If so, isn't that only available in CF enterprise edition? I'm not saying this is bad, I'm just curious. True. But you could always use another socket server there are plenty XML Socket servers. Or write

Re: soEditor

2006-06-06 Thread David Strong
I second the motion for FCK Editor. Lots of functions and with the new 2.3 beta release loads relatively fast for what its loading. Open source and most importantly an ongoing active project with constant updates for performance and security. Wouldn't you rather be FCK'ing?

Re: CF, Ajax and shared hosting.

2006-06-06 Thread David Strong
If your using AjaxCFC by rob gonda, you need cfadmin access only if you need to configure and use socket gateways for realtime socket driven data updates. He's doing some wonderful things with sockets. ~| Message:

Re: Best Multipart File Upload Tool? Recommend ation Needed

2006-06-06 Thread David Strong
http://www.jupload.biz Excellent documentation and support in the forums. The author doesn't really have much time these days to implement a whole bunch of updates but he states the project isn't dead. I've been using it for 2 years. Commercial use pricing is very fair.

Re: How to convert a number into date?

2006-06-05 Thread David Strong
Michael wrote: Now, you have asked the right question. ;-) See if this helps: http://www.cflib.org/udf.cfm?ID=1339 Tried to test your function with Johnny's number but it kicks an invalid date parsing error. ~| Message:

Re: How to convert a number into date?

2006-06-04 Thread David Strong
Remember the EPOCH times for Unix and Windows are different. Try this, read the comments I have included for you: !--- Problem: LDAP date is returned as NANOSECONDS and if you try to write a function to parse it CFMX returns an error saying the number is too big to fit in integer

Stored Procedure support in Doug Hughes Reactor

2006-06-03 Thread David Strong
What is the best practice/method for integrating sql stored procedures within a reactor/MG framework? ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:242261 Archives:

Re: How to convert a number into date?

2006-06-03 Thread David Strong
The number can be a misinterpreted representation of the Unix Epoch time. (The number of seconds passed since January 1 1970 00:00:00). But I believe your number is way too big. Please we need more info on the origins of your number.

Decimal to Fraction to nearest 1/16

2006-03-16 Thread David Strong
I have this formula works fine for converting into fractions. function decimal2frac(xvalue) { // x value is decimal portion var numer = xvalue; var denom1 = 1; var i = 0; for (i=0; i lt (len(xvalue) -1);i=i+1) { numer

Re: Decimal to Fraction to nearest 1/16

2006-03-16 Thread David Strong
I have this formula works fine for converting into fractions. function decimal2frac(xvalue) { // x value is decimal portion var numer = xvalue; var denom1 = 1; var i = 0; for (i=0; i lt (len(xvalue) -1);i=i+1) { numer