DTS from SP

2004-01-14 Thread Dan O'Keefe
I have combed the archives, and then net, and I think I have found the info I need to be able to do this. I used the DTSRUNUI to create this string: 'DTSRun /S "TESTDATA" /U "sa" /P "password" /N "frDay01_upload" /G "{F96F01E6-D82C-4ECF-899E-7DDADB1976C6}" /W "0" ' When I run it from the DOS pr

Re: Detecting SQL Update success

2004-01-13 Thread Dan O'Keefe
Thank you Paul and Nate. Dan [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Re:Structures native order

2004-01-12 Thread Dan O'Keefe
I agree that my original choice of structure over array may not have been correct, but I might have been using the structure elsewhere in the app to seek a value based on the key. That's good to know though that you cannot count on the order and i will avoid it in the future. Thansk, Dan [Todays

Detecting SQL Update success

2004-01-12 Thread Dan O'Keefe
Is there a way to detect if a SQL update statement in resulted in a record being updated? I guess I would want to know the number of rows updated. Dan [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Structures native order

2004-01-12 Thread Dan O'Keefe
If I loop over a query, which I have retrieved in the order I want it in, and add the data to a structure, I am finding it does not stay in that order. A few records from the query: 262 Alabama  211 Alaska  212 Arizona 

Cybersource

2003-12-12 Thread Dan O'Keefe
Anybody here implemented one of the API's from Cybersource for a payment = gateway (Java,XML,COM)? Dan [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: (Admin) List upgrades

2003-09-15 Thread Dan O'Keefe
Good point Dave (actually, cheap shot), but I think he would like to get something across without having to write a novel, as I am sure we would like to understand it without having to read a novel. Dan === Previous Message Below === -Original Message- Fro

RE: MAC & Linux laptops (was about blue dragon.)

2003-09-09 Thread Dan O'Keefe
, Senior Development Engineer AudienceCentral [EMAIL PROTECTED] voice : 360.756.8080 x12 fax : 360.647.5351 www.audiencecentral.com > -Original Message----- > From: Dan O'Keefe [mailto:[EMAIL PROTECTED] > Sent: Tuesday, September 09, 2003 4:22 PM > To: CF-

RE: about blue dragon.

2003-09-09 Thread Dan O'Keefe
>PowerBooks are awesome development machines! >Sean A Corfield -- http://www.corfield.org/blog/ What advantages do you think they have over WIN based. What about homesite and the other MX product line? Dan ~| Archives: http:/

RE: QForms and Containers

2003-09-05 Thread Dan O'Keefe
Are you trying to pass all values in a multi select box? I have a page similar to this, and when I click on the submit button, I see all of my values get highlighted and then the page posts. That is what the: objForm.fieldname.makeContainer(); method performs. Dan === Previous Me

RE: shared hosting security (was Re: DWMX 2004 - Whats new for us?)

2003-09-05 Thread Dan O'Keefe
Matt, Is it possible the hosting company can remove that object from the File class? Dan === Previous Message Below === -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2003 3:56 PM To: CF-Talk Subject: Re: sh

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Dan O'Keefe
kind of approaching the point of being a little hell bent, aren't you? Dan -Original Message- From: Angel Stewart [mailto:[EMAIL PROTECTED] Sent: Thursday, August 28, 2003 11:55 AM To: CF-Talk Subject: RE: DWMX 2004 - Whats new for us? Be that as it may, *I* am a CF Developer. I want to

RE: DWMX 2004 - Whats new for us?

2003-08-28 Thread Dan O'Keefe
Remember the additional tab that came out in Studio 4.0 or 4.5 or something like that. I think it was called Design or Layout or something like that. Everyone quickly dismissed it since it caused mayhem in the code. I was always hoping MM would supply just the page layout engine for studio to fulfi

RE: PayPal integration

2003-08-27 Thread Dan O'Keefe
I think that is incorrect, and should become clearer once you review the tutorial. I have to do this myself today for the first time also. Dan -Original Message- From: Ryan Stille [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 10:22 AM To: CF-Talk Subject: Re: PayPal integrati

RE: DWMX 2004 - Whats new for us?

2003-08-27 Thread Dan O'Keefe
Gee, how cute Dan === Previous Message Below === -Original Message- From: Calvin Ward [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 7:15 AM To: CF-Talk Subject: Re: DWMX 2004 - Whats new for us? I agree, the problem is there isn't a tool be

RE: Outputting Data as an Excel File

2003-08-27 Thread Dan O'Keefe
? Dan === Previous Message Below === -Original Message- From: Richard Crawford [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 26, 2003 6:54 PM To: CF-Talk Subject: Outputting Data as an Excel File We have Cold Fusion MX running on top of JRun 4 on a So

RE: PayPal integration

2003-08-27 Thread Dan O'Keefe
I think it was easycfm.com. Dan === Previous Message Below === -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 27, 2003 1:16 AM To: CF-Talk Subject: RE: PayPal integration Look into paypal IPN. It still isn't p

RE: SQL Data types

2003-08-26 Thread Dan O'Keefe
Good question. I once dug through this a little in BOL to understand all of the data types and the differences. Since then, I use bit, small int, varchar always unless it is a Social Security Number or 1 character, small datetime, etc. It is important to understand how the data is stored both for s

RE: SQL aggregate question

2003-08-25 Thread Dan O'Keefe
>Try this: >select count(ptssn) as numid, sum(sumar) as totalar >from (select ptssn, sum(arbalancedue) as sumar > from ga_temp > group by ptssn > having sum(arbalancedue) < 50 > ) arsum __ >Bil

RE: OT: SQL aggregate question

2003-08-24 Thread Dan O'Keefe
That would be a bingo Jochem, thank you very much. Dan === Previous Message Below === -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Sunday, August 24, 2003 10:10 AM To: CF-Talk Subject: Re: OT: SQL aggregate question Dan

RE: SQL aggregate question

2003-08-24 Thread Dan O'Keefe
sumar FROM ga_temp WHERE sum(arbalancedue) < 50 GROUP BY by ptssn Mike -Original Message----- From: Dan O'Keefe [mailto:[EMAIL PROTECTED] Sent: Sunday, August 24, 2003 9:50 AM To: CF-Talk Subject: OT: SQL aggregate question Is what I am trying to do possible, and

OT: SQL aggregate question

2003-08-24 Thread Dan O'Keefe
sum(arbalancedue) < 50 Thanks, Dan -------- Dan O'Keefe 954-501-3115 ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubs

RE: Congressional Data

2003-08-20 Thread Dan O'Keefe
I was one of them. Found what I was looking for. This is the mother of all data, for government data any ways. It is called Yellow books at leadershipdirectories.com. Dan -Original Message- From: Chuck Rodgers [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 20, 2003 12:34 PM To: CF-Talk

RE: CFadministrator question / scheduled tasks

2003-08-19 Thread Dan O'Keefe
Doesn't the coldfusion executive service handle that? Did you make sure it is running, especially since you have someone else's fingers in the pot (webmaster)? Dan -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 10:00 AM To: CF-Talk Subject

RE: Need to write Dispatcher!

2003-08-19 Thread Dan O'Keefe
Good question. I do not think there are too many options due to the amount of time it would take cf to process the files. Off the top of my head, I am thinking maybe executing an attrib /r command to mark them all read only, preventing another thread from moving them. Dan -Original Message---

RE: OT: Optimizing W2k Professional

2003-08-17 Thread Dan O'Keefe
I think someone posted this link here before, but here is a good resource describing the services and what they do. http://www.blackviper.com/WIN2K/win2kservice411.htm#IPSEC_Services Dan === Previous Message Below === -Original Message- From: Jochem van D

OT: Streaming bandwidth

2003-08-15 Thread Dan O'Keefe
Anyone know where I can get some figures for calculating potential bandwidth for streaming music? Dan ~| Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Uns

RE: Coldfusion Code analyzer

2003-08-14 Thread Dan O'Keefe
These links are generating a JRUN error right now. Dan === Previous Message Below === > We just released a product where developers can write their own rules > (you can write a rule with 4 lines of CFML, we provide over 30 > built-in rules), and perform checks ag

RE: WOT: Demoing software

2003-08-14 Thread Dan O'Keefe
Converting to Flash works like a dream. Dan -Original Message- From: Marlon Moyer [mailto:[EMAIL PROTECTED] Sent: Thursday, August 07, 2003 3:50 PM To: CF-Talk Subject: Re: WOT: Demoing software We use camtasia studio for demoing and training of our web apps. It basically captures the

RE: Brain Teaser2

2003-08-14 Thread Dan O'Keefe
I have used the database but did not know you can use the server also. I have found that the database attribute specified in the cfquery tag can be either of the databases and it works fine since it is specified in the sql string. Dan -Original Message- From: Bill Grover [mailto:[EMAIL PR

RE: Demoing software

2003-08-14 Thread Dan O'Keefe
thorough. Dan O'Keefe 954-501-3115 -Original Message- From: Parker, Kevin [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2003 11:51 PM To: CF-Talk Subject: RE: Demoing software Try ViewletBuilder from qarbon www.qarebon.com You can see an example on our site at

RE: OT: sites seen from some places not others .. how can that be?

2003-08-10 Thread Dan O'Keefe
Good stuff. Also replacing the domain name with the IP number in the url eliminates DNS as an issue. Dan Dan === Previous Message Below === -Original Message- From: Rafael Bleiweiss [mailto:[EMAIL PROTECTED] Sent: Sunday, August 10, 2003 4:46 PM To: CF-T

RE: Coldfusion Code analyzer

2003-08-10 Thread Dan O'Keefe
I was able to connect earlier today, but did not finish, and now there is a problem again. Sorry to be the bearer of a problem. Dan === Previous Message Below === -Original Message- From: Pete Freitag [mailto:[EMAIL PROTECTED] Sent: Friday, August 08, 200

RE: Page Expiring when back button used

2003-08-09 Thread Dan O'Keefe
Is this happening in a frameset by any chance? Dan -Original Message- From: Dustin Snell [Unisyn Software, LLC] [mailto:[EMAIL PROTECTED] Sent: Wednesday, August 06, 2003 7:35 PM To: CF-Talk Subject: Page Expiring when back button used Hello All, Using CFMX 6.1 on Windows 2003 Server w

RE: PDF Question

2003-08-08 Thread Dan O'Keefe
Interesting. Are you using CF and generating the XML to feed the report generator? Dan === Previous Message Below === -Original Message- From: Sean Daniels [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 4:20 PM To: CF-Talk Subject: Re: PDF Quest

RE: ezedit

2003-08-04 Thread Dan O'Keefe
Very cool. I just popped it into an app where I had the soEditor. Fixed a couple of issues for me that I had with soEditor. Dan -Original Message- From: Erik Yowell [mailto:[EMAIL PROTECTED] Sent: Monday, August 04, 2003 3:34 PM To: CF-Talk Subject: RE: ezedit Found this the other day:

RE: ezedit

2003-08-04 Thread Dan O'Keefe
When I tried to do the demo, MS office installation started up like it needed to install some components for the demo. Canceling the installation, the demo still worked OK. I have noticed the same issue with Siteobjects and one other editor. Anyone know the technical reason this happens? Dan

RE: ezedit

2003-08-04 Thread Dan O'Keefe
What a name. I can understand the guy wanting to incorporate his initials, but fckeditor?? -Original Message- From: Erik Yowell [mailto:[EMAIL PROTECTED] Sent: Monday, August 04, 2003 3:34 PM To: CF-Talk Subject: RE: ezedit Found this the other day: http://www.fredck.com/fckeditor/ Ope

RE: Bloody CFReport

2003-07-31 Thread Dan O'Keefe
What about calling it from an ASP page. I played around with that some time ago, and I have a project where I will need to do that soon. Dan === Previous Message Below === -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Thursday, July

RE: RE: re: Mach-II

2003-07-31 Thread Dan O'Keefe
Anyone knowledgeable with Mach-II that can offer a comparison with http://www.cfobjects.com ? Dan === Previous Message Below === -Original Message- From: Angus McFee [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 30, 2003 5:09 PM To: CF-Talk Subject: RE:

RE: Warning: Page Has Expired (how to stop?)

2003-06-29 Thread Dan O'Keefe
>I ran across this as well. You can add the following code to the top of your page. > > > >I've had success w/this. > >Regards, > >Ed. Dave Carabetta also submitted "" as a solution. I have tried both ways with a frameset site and I cannot get it to resolve the problem. Are any of the sites that

RE: SQL - String or binary data would be truncated.

2003-06-26 Thread Dan O'Keefe
EMAIL PROTECTED] Sent: Thursday, June 26, 2003 10:13 AM To: CF-Talk Subject: Re: SQL - String or binary data would be truncated. Is a Mac IE browser giving the issue? - Calvin - Original Message - From: "Dan O'Keefe" <[EMAIL PROTECTED]> To: "CF-Talk" <

RE: SQL - String or binary data would be truncated.

2003-06-26 Thread Dan O'Keefe
the maxlengths of your form fields? -Original Message- From: Dan O'Keefe [mailto:[EMAIL PROTECTED] Sent: Thursday, June 26, 2003 9:06 AM To: CF-Talk Subject: SQL - String or binary data would be truncated. Any one ever see this error in the browser, then copy and past the same que

SQL - String or binary data would be truncated.

2003-06-26 Thread Dan O'Keefe
have some type of control character in it. I wonder if it might be a log issue. Dan Dan O'Keefe 954-501-3115 ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Macromedia needs your feedback

2003-06-25 Thread Dan O'Keefe
almost Dan === Previous Message Below === -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 25, 2003 3:55 PM To: CF-Talk Subject: Re: Macromedia needs your feedback At 03:01 PM 6/25/03 -0400, Christian Cantrell w

RE: Called as module or include?

2003-06-19 Thread Dan O'Keefe
>From the other side, after using fusebox the last couple of years, I have grown accustomed to not having to worry about the origination of the var, and that I can just refer to it by attributes.var - This is helpful in modularizing your code as well as reusing some functionality in other parts of

RE: Spamcop probs w/list - anyone else?

2003-06-19 Thread Dan O'Keefe
You are right, that sounds like exactly what I am looking for. I'll give it a peek. Thanks. Dan === Previous Message Below === -Original Message- From: Stephen Moretti [mailto:[EMAIL PROTECTED] Sent: Thursday, June 19, 2003 7:58 AM To: CF-Talk Subject: R

RE: Spamcop probs w/list - anyone else?

2003-06-19 Thread Dan O'Keefe
For the exact reason a couple of people have stated the few emails have not come through. All I would need is one mysterious email that someone said they sent me and I did not receive, and I would be wondering what else am I missing, especially from my customers. Dan === Previous M

RE: Spamcop probs w/list - anyone else?

2003-06-19 Thread Dan O'Keefe
Michael, How will it work? Will you have to route your email through a different server like these other options. On the client would be ideal, if anyone knows of one? I hate to route my incoming mail through another server. Dan === Previous Message Below === ---

RE: Web based Project Management

2003-06-13 Thread Dan O'Keefe
> overly complex. Free is good, but I am open to suggestions, and no MS > Project. Dan === Previous Message Below === -Original Message- From: Michael Tangorre [mailto:[EMAIL PROTECTED] Sent: Friday, June 13, 2003 10:16 AM To: CF-Talk Subject: Re: Web b

RE: Web Log Analysis of CF sites

2003-06-04 Thread Dan O'Keefe
Sounds like the one that Steve Nelson did at secretagents.com might do the trick for you. Dan === Previous Message Below === -Original Message- From: Dennis Powers [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 6:13 PM To: CF-Talk Subject: OT: Web

RE: CF and Mail Engines

2003-05-31 Thread Dan O'Keefe
emails within organizations who need to send out newsletter, etc... Gr - Original Message - From: "Dan O'Keefe" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, May 30, 2003 3:41 PM Subject: RE: CF and Mail Engines > 500,000/h

RE: CF and Mail Engines

2003-05-31 Thread Dan O'Keefe
500,000/hour?? Can I get the IP so I can block it? Dan === Previous Message Below === -Original Message- From: Michael Tangorre [mailto:[EMAIL PROTECTED] Sent: Friday, May 30, 2003 12:54 PM To: CF-Talk Subject: CF and Mail Engines Does anyone know of a

RE: Address standardization

2003-03-28 Thread Dan O'Keefe
I did a couple of years ago using First Logic. http://www.firstlogic.com/downloads/demo1.asp It was a pretty simple COM-XML implementation. Dan -Original Message- From: Andres [mailto:[EMAIL PROTECTED] Sent: Friday, March 28, 2003 11:58 AM To: CF-Talk Subject: Address standardization

List

2003-03-17 Thread Dan O'Keefe
Is every getting the immediate emails from this list? Dan - Dan O'Keefe 954.501.3115 ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: force a download - .txt file

2003-03-17 Thread Dan O'Keefe
This method forces the download, but names the file index.cfm instead of the actual filename that you are downloading. Anyone know how to name it properly? Dan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 5:18 PM To: CF-Talk Subject: R

OT: .pst files as datasource

2003-03-13 Thread Dan O'Keefe
Anyone ever played around with extracting data from pst files to a database? Michael Dinowitz, do I recall you doing that for some of the archive work you were doing with HOF? Is the list having problems today? Dan - Dan O'Keefe 954.501

RE: Writing Query Results to a CSV using CFFILE

2003-03-12 Thread Dan O'Keefe
What creating a DTS package which accepts a few parameters from CF. The DTS would run the query, and export it also, like lickety split too. Dan -Original Message- From: Wendy Copley [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 6:25 PM To: CF-Talk Subject: Re: Writing Query Res

RE: cfgrid issues

2003-03-11 Thread Dan O'Keefe
SmartSurf? They have some pretty cool stuff. I am not overjoyed with email responses, but I have found their tags to be very functional. Dan -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 11:19 AM To: CF-Talk Subject: Re: cfgrid issues

RE: Foxpro databases: does CF use indexes?

2003-03-10 Thread Dan O'Keefe
My memory of using VFP databases with CF was not a good one and seem to remember running into the same issues. I then turned to getting the data into SQL. I realize that may not be an option for you. You might want to check some ASP forums and see if that have any threads on using these databases.

RE: address validation software/systems

2003-03-10 Thread Dan O'Keefe
Way back when, I integrated one for superletter.com with a company by the name of First Logic. It worked using a COM object, which takes your input and send an XML packet, which you receive back. Worked pretty nicely as I remember, and was fairly easy to integrate. http://www.firstlogic.com/home.a

RE: 2 Selects Related

2003-03-06 Thread Dan O'Keefe
Why didn't you ask me? I have it -Original Message- From: Luce, Greg [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 11:58 AM To: CF-Talk Subject: 2 Selects Related Does someone have a copy of the 2 Selects Related Custom Tag? I finally found it on the new MM site after having t

OT: Popping Exchange Server from CF

2003-03-05 Thread Dan O'Keefe
Dan ----- Dan O'Keefe 954.501.3115 ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription: http://www.houseoffusion.com/cf_lists/index.cfm?method=subscribe&forum

OT: DbNetGrid

2003-01-25 Thread Dan O'Keefe
Anyone ever take a stab at integrating this grid component in a CF app? http://www.dbnetgrid.com/dbnetgrid/default.aspx Dan - Dan O'Keefe 954.501.3115 ~| Archives:

RE: Government data list

2002-09-20 Thread Dan O'Keefe
th AL Cold Fusion Users Group http://www.nacfug.com Sr. Systems Analyst Sverdrup/CIC [EMAIL PROTECTED] (256) 842-8342 -Original Message----- From: Dan O'Keefe [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 19, 2002 1:53 PM To: CF-Talk Subject: OT: Government data list Does anyone know

OT: Government data list

2002-09-19 Thread Dan O'Keefe
Agriculture Secretary of Commerce Secretary of Defense -Donald Rumsfeld --Legislative --Judicial Dan - Dan O'Keefe TriPoint Technologies 954.501.3115 __ Signup for the Fusion Auth

RE: CFX_QueryDump

2002-08-02 Thread Dan O'Keefe
you registered the tag in CF Admin? Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: "Dan O'Keefe" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, August 02, 2002 11:10 AM Subject: CFX_QueryDump > Anyone

CFX_QueryDump

2002-08-02 Thread Dan O'Keefe
Anyone use this tag? I am getting the following error: Error loading CFX custom tag library The library associated with the custom tag CFX_QUERYDUMP (C:\CFusion\cfx\querydump.dll) was not found. Dan - Dan O'Keefe TriPoint Technologies 954.501

CFusion_VerifyMail()

2002-07-30 Thread Dan O'Keefe
Dan ----- Dan O'Keefe TriPoint Technologies 954.501.3115 __ This list and all House of Fusion resources hosted by CFHosting.com. The place for dependable ColdFusion Hosting.

RE: Write Acrobat File via CF

2002-07-25 Thread Dan O'Keefe
Are those forward slashes mixed in with the backslashes in the path? Dan -Original Message- From: Whiterod, David (PLNSA) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 24, 2002 11:43 PM To: CF-Talk Subject: RE: Write Acrobat File via CF Speaking of CF_HTML2PDF3. Can anyone shed lig

RE: Printing : Revisited

2002-07-24 Thread Dan O'Keefe
) to their default printer (network or local). So it worked when they were attached to our network OR when they were on the road. If you want an IE tested only solution, let me know and I'll try to dig up the code. SK -Original Message- From: Dan O'Keefe [mailto:[EMAIL PROTEC

RE: Printing : Revisited

2002-07-23 Thread Dan O'Keefe
- From: Dan O'Keefe [mailto:[EMAIL PROTECTED]] Sent: Saturday, July 13, 2002 5:30 PM To: CF-Talk Subject: RE: Printing You know what though, I need to print to a clients printer, so I assume I will be talking JavaScript and the window.print method. I will need to print a number of letters

RE: RE: Printing

2002-07-15 Thread Dan O'Keefe
orks on. Joshua Tipton -Original Message- From: Dan O'Keefe [mailto:[EMAIL PROTECTED]] Sent: Friday, July 12, 2002 2:58 PM To: CF-Talk Subject: Printing What is the easiest way to send a text document to a printer from CFML. I would imagine writing the file out with CFFILE and some

RE: Printing

2002-07-13 Thread Dan O'Keefe
ter that everyone works on. Joshua Tipton -Original Message- From: Dan O'Keefe [mailto:[EMAIL PROTECTED]] Sent: Friday, July 12, 2002 2:58 PM To: CF-Talk Subject: Printing What is the easiest way to send a text document to a printer from CFML. I would imagine writing the file out wit

Printing

2002-07-12 Thread Dan O'Keefe
What is the easiest way to send a text document to a printer from CFML. I would imagine writing the file out with CFFILE and somehow initiating a DOS command such as: copy file.txt > PRN Dan ----- Dan O'Keefe TriPoint Technologies 954.

RE: SSL

2002-07-09 Thread Dan O'Keefe
Is this only if you host with them though? Dan -Original Message- From: Jack Dalaa [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 09, 2002 2:58 PM To: CF-Talk Subject: RE: SSL These hosting people resell Geotrust 128bit ssl certificates for $49/year. http://www.rackshack.net/quickssld

RE: CF - Web Based Org Charts

2002-07-03 Thread Dan O'Keefe
Where id you find the examples? Dan -Original Message- From: chris.alvarado [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 03, 2002 12:10 PM To: CF-Talk Subject: RE: CF - Web Based Org Charts Actually, an update; I found some nice examples of doing just this is XML / VML so I have d

RE: EXCEL COM Object

2002-06-25 Thread Dan O'Keefe
usion.com/imssecomparison.cfm - Original Message - From: "Dan O'Keefe" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, June 25, 2002 9:08 AM Subject: EXCEL COM Object > Is there an Excel COM object that can be registered on the server instead of

EXCEL COM Object

2002-06-25 Thread Dan O'Keefe
Is there an Excel COM object that can be registered on the server instead of installing the Excel application on the server? Dan - Dan O'Keefe TriPoint Technologies 954.501.3115 _

RE: CommerceBlocks anyone?

2002-06-24 Thread Dan O'Keefe
http://www.commerceblocks.com -Original Message- From: Andy Ousterhout [mailto:[EMAIL PROTECTED]] Sent: Monday, June 24, 2002 9:59 AM To: CF-Talk Subject: RE: CommerceBlocks anyone? What are you referring to? -Original Message- From: Patric Stumpe [mailto:[EMAIL PROTECTED]] Sen

RE: CommerceBlocks anyone?

2002-06-24 Thread Dan O'Keefe
I worked with database blocks way back hen it first came out, or shortly there-after. It was early 2000. I know it has changed and improved a lot since then, and creates a pretty slick HTML interface for database tables. I have been curious myself if the additional modules mentioned on the site ar

OT State Sales Tax Tables

2001-01-10 Thread Dan O'Keefe
Does anybody know of a source where I can get the 50 records for the state sales tax percentage? Dan - Dan O'Keefe TriPoint Technologies 954.675.3115 ~~ Structure your ColdFusion code with Fusebox. Ge

RE: 2 instances of Studio [Its a Registry Setting]

2000-11-15 Thread Dan O'Keefe
That's funny. You should post that in the beta forum. -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 15, 2000 9:56 AM To: CF-Talk Subject: RE: 2 instances of Studio [Its a Registry Setting] > HKEY_CURRENT_USER\Software\Allaire\Studio45

FW: Amaya is out!

2000-11-15 Thread Dan O'Keefe
Anyone else ever heard of this? -Original Message- From: Tracy [mailto:[EMAIL PROTECTED]] Sent: Monday, November 15, 1999 8:33 AM To: [EMAIL PROTECTED] Subject: Amaya is out! Webmonkey, my favorite tutorial website in the whole world announced toda

RE: Installing CF4.5 SP 1

2000-11-09 Thread Dan O'Keefe
I have applied it with success also, but was wondering if on a clean Win2k install, since 4.5.1 SP1 is a complete install, if this would eliminate the MDAC problem being rolled back by CF. In other words, clean Win2k install, and install only 4.5.1 SP1. Dave Watts, Do you know? -Original Mes

RE: OFF TOPIC - HEALTH INSURANCE

2000-11-08 Thread Dan O'Keefe
He apologized immediately after that as a mistake. Lighten up. Dan -Original Message- From: Peter Theobald [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 08, 2000 10:27 AM To: CF-Talk Subject: Re: OFF TOPIC - HEALTH INSURANCE Why is this wasting space in MY mailbox? Take it off l

RE: Curious Object Expected error

2000-11-07 Thread Dan O'Keefe
Your JS is referencing an object that has to be within the . I remember chasing one of these for a while, and I believe the syntax of the tag was incomplete. Dan -Original Message- From: Kay Smoljak [mailto:[EMAIL PROTECTED]] Sent: Monday, November 06, 2000 8:47 PM To: CF-Talk Subject:

RE: MSDE Management Tool for End Users and ISV's? - Need Feedback and Support

2000-11-02 Thread Dan O'Keefe
Can't you also use Enterprise manager to manage a MSDE database? -Original Message- From: paul smith [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 02, 2000 11:38 AM To: CF-Talk Subject: Fwd: MSDE Management Tool for End Users and ISV's? - Need Feedback and Support I thot some here

RE: Will PVCS source control work with Studio?

2000-11-02 Thread Dan O'Keefe
: RE: Will PVCS source control work with Studio? Dan, 4.5.1 is already out and has a service pack as well, unless its the service pack your waiting for! regards Andrew Scott Senior Cold Fusion Application Developer -Original Message- From: Dan O'Keefe [mailto:[EMAIL PROTECTED]] Sen

RE: Will PVCS source control work with Studio?

2000-11-01 Thread Dan O'Keefe
ignored me. So, I am not sure if it works or not, but as a stand alone app it works great. Dan O'Keefe -Original Message- From: Sharon Curlee [mailto:[EMAIL PROTECTED]] Sent: Wednesday, November 01, 2000 11:23 AM To: CF-Talk Subject: Will PVCS source control work with Studio? This is a

RE: Storing passwords in database as one way hash

2000-10-17 Thread Dan O'Keefe
I believe the way it is used is when a user logs in, hash the password they entered, retrieved the hashed password from the db, and compare them. Dan -Original Message- From: Robert Everland [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 17, 2000 2:39 PM To: CF-Talk Subject: RE: Stori

RE: NASDAQ.com... ERRRRR!

2000-10-17 Thread Dan O'Keefe
What is a siteobject? > fuseobjects... hah, i mean siteobjects -- Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_

RE: Reason for Alliare Stocks

2000-09-23 Thread Dan O'Keefe
what is this guys name? -- Dan O'Keefe TriPoint Technologies [EMAIL PROTECTED] 954.675.3115 |-Original Message- |From: Bill Killillay [mailto:[EMAIL PROTECTED]] |Sent: Friday, September 22, 2000 11:36 AM |To: CF-Talk |Subject: RE: Reaso

RE: Reason for Allaire Stocks

2000-09-22 Thread Dan O'Keefe
ke to hear someone else from Allaire try to defend that type of position, which I am sure they would not want to do. Dan ------ Dan O'Keefe TriPoint Technologies [EMAIL PROTECTED] 954.675.3115 |-Original Message- |From: William J Wheatley [mai

RE: Template not found. Which template?

2000-09-22 Thread Dan O'Keefe
Has anyone noticed if this option lists the templates in the order they were called? -- Dan O'Keefe TriPoint Technologies [EMAIL PROTECTED] 954.675.3115 |-Original Message- |From: Reynolds, Adam [mailto:[EMAIL PROTECTED]] |Sent: F

RE: [CF-Talk] ideas for project management apps

2000-09-20 Thread Dan O'Keefe
There is also http://www.eproject.com. -- Dan O'Keefe TriPoint Technologies [EMAIL PROTECTED] 954.675.3115 |-Original Message- |From: Reynolds, Adam [mailto:[EMAIL PROTECTED]] |Sent: Wednesday, September 20, 2000 5:55 AM |To: '[EMAIL

RE: Microsoft Visual SourceSafe

2000-09-15 Thread Dan O'Keefe
was coming out and they ignored me. So, I am not sure if it works or not, but as a stand alone app it works great. Dan -- Dan O'Keefe TriPoint Technologies [EMAIL PROTECTED] 954.675.3115 |-Original Message- |From: Rice, David [mailto:[

RE: Microsoft Visual SourceSafe

2000-09-15 Thread Dan O'Keefe
the Web from Microsoft, and one that I had created for a past employer on how to set it up. Contact me off list and I will send them to you. Dan -- Dan O'Keefe TriPoint Technologies [EMAIL PROTECTED] 954.675.3115 |-Original Message- |From:

RE: Microsoft Visual SourceSafe

2000-09-15 Thread Dan O'Keefe
It does work with CF Studio just fine, 4.0. 41., 4.5, 4.5.1. I do have 2 docs. One is titled VSS and the Web from Microsoft, and one that I had created for a past employer on how to set it up. Contact me off list and I will send them to you. Dan -- Dan

RE: registering Excel COM object

2000-09-14 Thread Dan O'Keefe
dll as well as the correct name for the dll. You should receive a message that it was registered successfully. ---------- Dan O'Keefe TriPoint Technologies [EMAIL PROTECTED] 954.675.3115 |-Original Message- |From: Pete [mailto:[EMAIL PROTECTED]] |Sent:

<    1   2   3   4   >