RE: BlackStone Beta 1

2004-09-09 Thread Samuel R. Neff
It was never public info that you personally were on the beta.. that's also covered by NDA.So even if MM person announces that beta 1 has begun, it's still not allowed for anyone on the beta to state that they are on the beta. MM has made exceptions in the past (Flex alpha) but I'm not aware of

ODBC vs JDBC sql syntax differences

2004-08-31 Thread Samuel R. Neff
Are there differences in SQL/functions when moving from an ODBC datasource to a JDBC datasource? We're hosting an application for another contractor and their app is the only one using ODBC (all apps use Oracle).We'd like to remove the ODBC services (well, we're setting up a brand new box and

RE: RandRange ain't so Random

2004-08-23 Thread Samuel R. Neff
You're better off not calling randomize() at all.If you don't call it, then CF will default to the calling randomize() with the current time in milliseconds.However, due to argument types you can't actually pass that level of precision to randomize() yourself. To get truly random numbers across

RE: BLACKSTONE: Software Development Times Article

2004-08-17 Thread Samuel R. Neff
If what you need to do is integrate with SMS, IM, Sockets, or any of the built-in gateways, then the chances it does what you need are really good. Sam -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 17, 2004 10:08 AM To: CF-Talk Subject: RE:

RE: BLACKSTONE: Software Development Times Article

2004-08-16 Thread Samuel R. Neff
Huh?The article is primarily about the Event Gateway architecture and doesn't even mention JMS once.The Event Gateway stuff is about SMS and IM integration, listening on sockets, and asynchronous CFC calls.All great stuff that I'd use a lot in my CF development (particularly async calls). Sam

RE: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Samuel R. Neff
How does JMS compare to the ability to call CFC methods asynchronously (one of the mentioned new features in Blackstone)? Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team -Original

RE: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Samuel R. Neff
was JMS provider in anticipation of Blackstone On Sun, 15 Aug 2004 23:28:36 -0400, Samuel R. Neff [EMAIL PROTECTED] wrote: How does JMS compare to the ability to call CFC methods asynchronously (one of the mentioned new features in Blackstone)? They're unrelated really. JMS is just

RE: OpenJMS was JMS provider in anticipation of Blackstone

2004-08-15 Thread Samuel R. Neff
, 16 Aug 2004 00:42:27 -0400, Samuel R. Neff [EMAIL PROTECTED] wrote: What's the advantage of tapping into JMS as opposed to using async cfc calls for a pure CF application? If you have a pure CF app, JMS is irrelevant. JMS is useful for passing data asynchronously between applications

RE: Count logged in user sessions

2004-08-09 Thread Samuel R. Neff
You don't need to keep track of sessions, CF does it for you: Access session vars from outside the session http://www.rewindlife.com/archives/46.cfm HTH, Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team

RE: Can the following be written in cfscript?

2004-08-06 Thread Samuel R. Neff
Jochem, I expect that the cfscript version of that particular code is going to be significantly slower than the cfml version.The cfml version is taking advantage of a list loop with does a single tokenization of the list.The cfscript version tokenizes the list twice in each iteration--once for

RE: Can the following be written in cfscript?

2004-08-06 Thread Samuel R. Neff
and cfml list loop is even more efficient than array... Why is a list loop faster than an array loop? http://www.rewindlife.com/archives/56.cfm Sam -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Friday, August 06, 2004 3:29 PM To: CF-Talk Subject: RE:

RE: Can the following be written in cfscript?

2004-08-06 Thread Samuel R. Neff
Why tokenize the list twice per iteration when we can do it three times per iteration?:-) Sam -Original Message- From: Patricia Lee [mailto:[EMAIL PROTECTED] Sent: Friday, August 06, 2004 4:09 PM To: CF-Talk Subject: Re: Can the following be written in cfscript? or as an

RE: Transaction Log Size

2004-08-06 Thread Samuel R. Neff
The transaction logs get removed when you do a backup ('cause they're no longer needed). Sam -Original Message- From: David Koehler [mailto:[EMAIL PROTECTED] Sent: Friday, August 06, 2004 4:33 PM To: CF-Talk Subject: Transaction Log Size Some of our transaction logs are getting

RE: ListGetAt vs. ListToArray

2004-08-04 Thread Samuel R. Neff
Your primary concern should be normalizing the data.Issues like this don't come up with normalized data and comma separated lists are an obvious sign of a non-normalized database. Barring that, the speed question comes down to if you're accessing items by index or looping over them.If looping,

RE: CFC Practices

2004-07-30 Thread Samuel R. Neff
You could also do cfinvoke component=#this# method=... ... Which I think is easier to understand than a cfinvoke without a component attribute (didn't know that worked, but still prefer to specify component). Sam Blog http://www.rewindlife.com TeamMM

RE: .net compliant (ot)

2004-07-27 Thread Samuel R. Neff
Why would you need java components or java connectivity if you're running BD.NET, especially for a client that is asking for .net compliancy?The whole point of BD.NET is to run in a pure .NET environment using .NET components and functionality. Unless there is no other option, it's usually best

RE: .net compliant (ot)

2004-07-27 Thread Samuel R. Neff
This department uses Java and That department uses .NET and need to merge or share. rish -Original Message- From: Samuel R. Neff [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 27, 2004 12:18 PM To: CF-Talk Subject: RE: .net compliant (ot) Why would you need java components

RE: Using the internal Web server for CFAdmin

2004-07-20 Thread Samuel R. Neff
Using the internal web server is one way to protect it since you can block the port at firewall, but this only applies if admin is not accessible from the sun web server and also remember that some of the files are required for certain functionality.. wddx, cfform validation for example. Sam

RE: JS number check

2004-07-20 Thread Samuel R. Neff
What's wrong with just using isNaN?Or if something wrong with that, what about regexp? function isNumber(testNumber) { return String(testNumber).match(/^[0-9]*\.?[0-9]*$/); } Sam -Original Message- From: Robert Orlini [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 20, 2004 3:42 PM

RE: OT: JS number check

2004-07-20 Thread Samuel R. Neff
and then try alert(isNumeric(0.3.2)); :-) -Original Message- From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 20, 2004 4:12 PM To: CF-Talk Subject: Re: OT: JS number check This may help: script function isNumber2(inputStr, field) { if (!inputStr.match(new

RE: CFFile upload problem

2004-07-20 Thread Samuel R. Neff
You can handle file uploads using the form field directly without using cffile if that meets your needs.The form field value will be a path to the temp file where it's stored. This is useful for example if you want to read in the file and process it but don't need to make a copy. It's not

RE: Best choice for ColdFusion Studio IDE...

2004-07-19 Thread Samuel R. Neff
Even with a .NET application you have to program some this differently to make it work in both Windows and Mac, particularly with file handling. Mostly this involves just not making assumptions about the file system, but since the vast majority of .NET programs are written for Windows without

RE: MAX 2004 (MVC's Session)

2004-07-19 Thread Samuel R. Neff
Not even talking about hardcore sessions, just look at intermediate and advanced sessions.Someone that is only interested in ColdFusion can not go to a CF session appropriate to their level in every time slot at MAX (after taking repeats into account).The fact is if you're only interested in CF

RE: Best choice for ColdFusion Studio IDE...

2004-07-17 Thread Samuel R. Neff
I personally would not call any decision made by a knowledgeable individual that's based on a cost/benefit analysis stupid. The fact is most people use Windows and writing an application that works cross platform does take extra effort and does add an extra layer of abstraction between your

RE: Best choice for ColdFusion Studio IDE...

2004-07-14 Thread Samuel R. Neff
PrimalScript http://www.sapien.com -Original Message- From: Marco Antonio C. Santos [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 14, 2004 4:00 PM To: CF-Talk Subject: Best choice for ColdFusion Studio IDE... Hi all what's best option to change our old ColdFusion Studio IDE?

RE: SQL Server 2000 developer edition?

2004-07-13 Thread Samuel R. Neff
Express is a version of SQL Server 2005.MSDE is a version of SQL Server 2000 or 7.Hence the different requirements. Sam -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 13, 2004 10:27 PM To: CF-Talk Subject: Re: SQL Server 2000 developer edition?

Can originating mail server be spoofed?

2004-07-06 Thread Samuel R. Neff
In mail headers, it shows a trail of mail servers between the originating smtp server and the receiving user.Are any of these servers guaranteed accurate, particularly the originating server or is it easy to spoof the servers along the trail? I'm working on an app that allows submitting some info

RE: Creating Excel workbooks

2004-07-05 Thread Samuel R. Neff
Office Automation is not safe for server side use.You should avoid code similar to what you posted (anything that instantiates an office application). Office Web Components supports pivot tables.I have a small example in one presentation that talks about OWC but the example only covers using it

RE: white-space - is this a big issue?

2004-07-03 Thread Samuel R. Neff
One thing I've found helps a lot is to put a cfcontent tag right before the xml/html tag.Don't change the content type, just reset the output stream. There can't be anything before the html tag besides whitespace anyways. Sam [Todays Threads] [This Message] [Subscription] [Fast

RE: blackstone talk at CFUN

2004-07-02 Thread Samuel R. Neff
The display of the new data in the browser was a standard HTTP request/response.What happened was Ben copied the file to the drop folder. Then talk for about 15 seconds and explain that he's waiting for the event to kick in and make sure it processes.Then he refresh his browser and it display the

RE: blackstone talk at CFUN

2004-07-02 Thread Samuel R. Neff
Flash with XMLSockets or FlashComm will give you an always-on connection. Any use of a webserver on the client machine to provide local back-end functionality to a desktop app is really overkill. Sam [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: blackstone talk at CFUN

2004-07-02 Thread Samuel R. Neff
[mailto:[EMAIL PROTECTED] Sent: Friday, July 02, 2004 2:42 PM To: CF-Talk Subject: Re: blackstone talk at CFUN On Jul 2, 2004, at 10:58 AM, Samuel R. Neff wrote: Flash with XMLSockets or FlashComm will give you an always-on connection. Any use of a webserver on the client machine

RE: white-space - is this a big issue?

2004-07-02 Thread Samuel R. Neff
Whitespace is usually important when there's a lot of it.I heard at CFUN that Mach-ii initially created tons of whitespace and was very problematic until the most recent release.It still creates a lot of whitespace since it supports Blue Dragon and BD has an incompatible implementation of the

RE: Using DNS-Less connections

2004-06-28 Thread Samuel R. Neff
You can set up a datasource to an empty access database, send sql comments to that, and use either the from or in clause to redirect the query to another odbc datasource.I have an explanation and example here: http://www.rewindlife.com/archives/000118.cfm Best regards, Sam -Original

RE: Blackstone @ CF-FUN '04

2004-06-28 Thread Samuel R. Neff
You want to use CFMX and Flex to create desktop apps?You'll need at least $18,000 per installation given current pricing. Flex needs a license for each computer that serves up SWFs created by Flex (regardless of whether or not Flex is installed).Distribute the SWFs on CD, it's $12,000 per CD.

RE: Blackstone @ CF-FUN '04

2004-06-28 Thread Samuel R. Neff
It has no UI capabilities of it's own, so it's always going to be the back end to something else.That alone is enough to make it a poor choice for desktop apps. The 84mb runtime engine doesn't help either. And most of all, even if it was technically possible to make desktop apps, that certainly

RE: Books on Flash...

2004-06-24 Thread Samuel R. Neff
Or if you consider $12,000/2cpu for a compiler and a bunch of components expensive...:-) Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team -Original Message- From: Calvin Ward

RE: Follow Up on Case Sensititive ( was Determining Directory Where Current Template Is Located)

2004-06-21 Thread Samuel R. Neff
case sensitivity in the database depends on the DB, Oracle is case sensitive for example. Paths are usually case insensitive in Windows but Java is case sensitive so there are situations where differences in case can be a problem. Specifically, CFMX can generate a Wrong name error when calling a

RE: RDS support (was Re: CFEclipse release - beta

2004-06-14 Thread Samuel R. Neff
At least you got a response.:-) Thanks for sharing. Sam -Original Message- From: Matt Liotta [mailto:[EMAIL PROTECTED] Sent: Monday, June 14, 2004 5:38 PM To: CF-Talk Subject: RDS support (was Re: CFEclipse release - beta We have been talking about reverse engineering RDS

RE: TRIMMED: whats your opinion on this cfm program?

2004-06-04 Thread Samuel R. Neff
The results looks like a database admin tool and not a real website.I wouldn't want to deliver anything like that for a client.If it was on-the-fly table/form creation then I woudl say it is ok to use for back-end stuff. Of course, if that's what the client wants and is happy with it, then you

RE: IDE for ColdFusion MX

2004-05-26 Thread Samuel R. Neff
We use PrimalScript http://www.sapien.com/primalscript.aspx It's a great IDE with lots of features and supports 30+ languages (has great AS2 support). The developer is also looking for CF-specific features to add to the next version since an increased number of people have been buying it to

RE: Encrypting URLs

2004-05-22 Thread Samuel R. Neff
As Jim said, you need to URLEncodedFormat() the result of Encrypt() before putting it in the url... Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team -Original Message- From:

RE: modifying Word doc via CF

2004-05-19 Thread Samuel R. Neff
What exactly are you modifying in the uploaded docs?If it's just a small piece of text then I would suggest using fields linked to document properties and then you can read/update those properties via DSOFile.This is much faster and more stable than automating Word and doesn't require any Office

RE: MX Extensions for CF Studio 5?

2004-04-23 Thread Samuel R. Neff
There's a 6.1 updater but I'm not sure if it's cumulative or just 6.0 - 6.1.I seem to be remember it was only for 6.0 - 6.1 but could be mistaken. Listed Here: http://www.macromedia.com/software/coldfusion/downloads/ Direct links:

RE: CFMX for sale

2004-04-20 Thread Samuel R. Neff
Check the box.Usually when you win a MM product it's NFR -- Not For Resale. Sorry. Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team -Original Message- From: Susan Prosser

RE: Blocking IP address

2004-04-20 Thread Samuel R. Neff
The browser can spoof REMOTE_HOST and even REMOTE_ADDR.Try this out: !--- DumpCGI.cfm --- cfdump var=#cgi# !--- Spoof.cfm --- cfhttp url=""> cfhttpparam type=CGI name=REMOTE_ADDR encoded=false value=132.145.1.2 cfhttpparam type=CGI name=REMOTE_HOST encoded=false value=spoof.com /cfhttp

RE: Blocking IP address

2004-04-20 Thread Samuel R. Neff
I just set up IIS and ran the spoof test through that.Still spoofed. Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team -Original Message- From: Samuel R. Neff [mailto:[EMAIL

RE: Is it a bug or not a bug?

2004-04-20 Thread Samuel R. Neff
and is a boolean operator.I would expect the result to always be a boolean. In my opinion, it's a bug. Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team -Original Message-

RE: CFMX for sale

2004-04-20 Thread Samuel R. Neff
I think that would be even worse since it's almost like the UG is selling what it received from MM for free as a promotional item, just not directly. If you want to sell it, great, go sell it on ebay where nobody knows where you got it and MM isn't paying as much attention (or are they?).I agree

RE: Printing Labels from a Web Application?

2004-04-19 Thread Samuel R. Neff
This presentation sends HTML/CSS/XML to MS Word and includes examples on creating Avery labels. http://www.rewindlife.com/archives/32.cfm HTH, Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team

RE: Writing formatted data to Excel

2004-04-19 Thread Samuel R. Neff
I'd agree with John's suggestion that you should create the formatted text in Excel, save as HTML, and then view the HTML to see how it persisted the formatting information. The only difference of opinion I have is that this technique is extremely flexible and can be used to accomplish a very

RE: Flex Flash Tree Menu performance resolved

2004-04-12 Thread Samuel R. Neff
Dick, I got same error.Assumed you were using developer version (IP restricted). Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team -Original Message- From: Dick Applebaum

RE: CFX-zip

2004-04-12 Thread Samuel R. Neff
If you're using CFMX then it's a waste.You can get all the functionality using Java classes. Zip: http://www.cflib.org/udf.cfm?ID=744 Unzip: http://www.rewindlife.com/archives/41.cfm HTH, Sam Blog http://www.rewindlife.com TeamMM

RE: PDF Report Generation from ColdFusion

2004-04-12 Thread Samuel R. Neff
Not the easiest but I would say best is XSL-FO/FOP route.Large learning curve but very flexible once you get going. Easiest is various HTML to PDF converters. Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team

RE: Access 2003 ODBC

2004-04-12 Thread Samuel R. Neff
Access 2000 is the last major release of the Jet engine, so the data portion of the database, what you're using through CF, is exactly the same for Access 2000 and Access 2003.There's no point in upgrading for just a data back-end. The Jet team was disbanded soon after Access 2000 was released,

RE: ...just took 60+ seconds to load Hello World in Flex!

2004-04-10 Thread Samuel R. Neff
] Sent: Friday, April 09, 2004 7:00 AM To: CF-Talk Subject: Re: ...just took 60+ seconds to load Hello World in Flex! On Apr 9, 2004, at 1:04 AM, Samuel R. Neff wrote: I don't know of any way to get rid of the loading message.If you look at the AS code generated by a Flex app

RE: ...just took 60+ seconds to load Hello World in Flex!

2004-04-09 Thread Samuel R. Neff
-Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED] Sent: Thursday, April 08, 2004 11:25 PM To: CF-Talk Subject: Re: ...just took 60+ seconds to load Hello World in Flex! On Apr 8, 2004, at 7:41 PM, Samuel R. Neff wrote: The second

RE: ...just took 60+ seconds to load Hello World in Flex!

2004-04-09 Thread Samuel R. Neff
. Sam -Original Message- From: Christian Cantrell [mailto:[EMAIL PROTECTED] Sent: Friday, April 09, 2004 10:30 AM To: CF-Talk Subject: Re: ...just took 60+ seconds to load Hello World in Flex! On Apr 8, 2004, at 10:41 PM, Samuel R. Neff wrote: The second run should

RE: Has anyone successfully installed Flex on Coldfusion 6.1?

2004-04-08 Thread Samuel R. Neff
Flex is a J2EE web application.CFMX is a J2EE web application.The way J2EE is designed these should be installed as separate applications into either the same or different server instances.Doing that is cake--just unpack the wars. However, some people want to put them in the same application so

RE: Flex not?

2004-04-08 Thread Samuel R. Neff
-Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED] Sent: Thursday, April 08, 2004 12:29 AM To: CF-Talk Subject: Re: Flex not? On Apr 7, 2004, at 8:56 PM, Samuel R. Neff wrote: JRun url's are always case sensitive, on a PC too

RE: ...just took 60+ seconds to load Hello World in Flex!

2004-04-08 Thread Samuel R. Neff
The first run requires compilation which is very slow.A client is never meant to see compilation (although I don't think it includes any pre-built pre-compiler other than the off-line MXMLC). The second run should be significantly faster, but still a lot slower than a Flash Hello World app since

RE: RIA options, Flex Flash and others.

2004-04-07 Thread Samuel R. Neff
I think the sluggishness comes from the animation, which you can turn off. You can't really compare an animated tree to a non-animated one. That said, Flex is very sluggish in general.The base classes are much heavier than the equivalent Flash ones and they add a lot of code related to layout and

RE: browser detection script

2004-04-07 Thread Samuel R. Neff
That's fine for JS but I think the question here was about layout of HTML and CSS support.You can't use JS to tell if a browser supports the HTML/CSS you're using without browser sniffing. But I think the only real concern is NN4 or not NN4.NN4 is the only old browser we encounter on a regular

RE: Flex not?

2004-04-07 Thread Samuel R. Neff
It's not just an issue of running the server application, there are peripheral apps that aren't all available for the Mac or don't all work. Flex has the Flex server, mxmlc compiler (which is just a script that calls the right java classes in the server), fdb (again, script that calls java

RE: Has anyone successfully installed Flex on Coldfusion 6.1?

2004-04-07 Thread Samuel R. Neff
I've done it, and yes it's a huge pain.Unfortunately the simple fact is Java applications are designed to be installed as separate contexts.Just there are some restrictions when doing that and there is a desire to have them in the same instance--it simplifies remoting for example.I can't offer any

RE: Flex not?

2004-04-07 Thread Samuel R. Neff
Pretty much everything is java based except for the debug flash player. JRun url's are always case sensitive, on a PC too. Good luck, Sam -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 07, 2004 10:34 PM To: CF-Talk Subject: Re: Flex not?

RE: Hallelujah!!! Flex successfully installed on Coldfusion

2004-04-07 Thread Samuel R. Neff
Do you mean Flex pages or all pages?Flex compilation times are very slow. Flex is not meant to re-compile files for each request but only once when files are first loaded.The performance does not really allow for any significant dynamic MXML creation, even though the JSP tags provide that

RE: Coldfusion charts and graphs

2004-04-05 Thread Samuel R. Neff
You can also use OWC server side to generate charts and send down images--no client side requirement. There's an example in here:http://www.rewindlife.com/archives/000118.cfm Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team

RE: MS DRK?

2004-03-05 Thread Samuel R. Neff
The action pack mentioned earlier is only $300 and I think has everything MSDN has. http://members.microsoft.com/partner/salesmarketing/partnermarket/actionpack /actionpackus.aspx They also recently ran a special for .NET ISVs to get 5 licenses of MSDN Universal for $375. So not so expensive.:-)

RE: ColdFusion Express

2004-03-04 Thread Samuel R. Neff
This seems like a scenario where one really needs to look at all available options and choose the best one.Using a server based technology for a local application on a PDA is quite a bit of overkill..NET has very nice PDA support. My $0.02. Sam Blog

RE: OT: Interesting article on Macromedia Central...

2004-03-02 Thread Samuel R. Neff
I was trying to stay out of this thread, but oh well (thanks Dave).:-) First, if you program in ActionScript in anything other than PrimalScript then you're going through a world of hurt for no reason.PrimalScript is a real IDE and provides features of a real IDE including context-sensitive

RE: ColdFusion IDEs

2004-02-26 Thread Samuel R. Neff
PrimalScript http://www.sapien.com Windows only, has a 30-day trial. Here's a review: http://www.kodefusion.com/article/index.cfm?PrimalScript_3ArticleID=15Page Number=1 Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team

RE: CFMX and CF5 on same server

2004-02-25 Thread Samuel R. Neff
If you run them on separate ports it will work fine, but I wouldn't suggest it for a production server. Sam Blog http://www.rewindlife.com TeamMM http://www.macromedia.com/go/team -Original Message-

RE: ASP page using ColdFusion

2004-02-25 Thread Samuel R. Neff
If it's an all ASP site then isn't it really better to stick with ASP for the whole site?Mixing ASP and CF seems like it's going to create a maintenance nightmare. If you want to display charts in ASP then you can look into Office Web Components on the low end and many available charting engines

RE: problems with spam

2004-02-16 Thread Samuel R. Neff
Why would you ever set replies to sender?That basically creates a questions lists where questions go to the list and answers go only to the original poster.No one else benefits and there are no conversations. Sam Blog http://www.rewindlife.com TeamMM

RE: problems with spam

2004-02-16 Thread Samuel R. Neff
out of office type auto responders. - Original Message - From: Samuel R. Neff To: CF-Talk Sent: Monday, February 16, 2004 9:35 AM Subject: RE: problems with spam Why would you ever set replies to sender?That basically creates a questions lists where questions go to the list

RE: Macromedia.com running on top of Mach II

2004-02-08 Thread Samuel R. Neff
Jaye, You can program things from scratch all the time or you can use frameworks and available resources to make the program more efficiently.The official curriculum is always going to be about the base functionality of a language. You have to go outside that to learn about frameworks and

RE: Macromedia.com running on top of Mach II

2004-02-08 Thread Samuel R. Neff
I think there's a difference between coming out and supporting a framework/standard/whatever and using it themselves.Simply using a framework for a portion of their own applications is not like they're saying everyone should use it.Quite to the contrary, none of the DRK code uses fusebox or

RE: When is a struct not a struct?

2004-02-07 Thread Samuel R. Neff
When you call duplicate(cfcatch) it returns a structure.Then you can pass it to a UDF where the argument type is struct and use all struct functions on it. That's also how cfdump works.If it gets an exception, it duplicates it. HTH, Sam --- Blog:

RE: CFDUMP out to file?

2004-02-07 Thread Samuel R. Neff
wrap cfsavecontent around it and save the generated content to a file with cffile. HTH, Sam --- Blog: http://www.rewindlife.com Charts: http://www.blinex.com/products/charting --- -Original

RE: Fusetalk Q

2004-02-06 Thread Samuel R. Neff
And don't forget... 4.Rewrite every time MM changes the style/html and breaks your regexp/tokenizer. :-) I actually have a full mm webforum parser I wrote about a year ago to display threads I'm participating in on my blog, but it doesn't work any more since the html it triggered off changed.

RE: Partitioning Custom Tags for multiple code lines?

2004-01-28 Thread Samuel R. Neff
You can close cfmodule tags, but when you do that you have to close ALL cfmodule tags and it will call every cfmodule template twice--start and end. HTH, Sam --- Blog: http://www.rewindlife.com Charts: http://www.blinex.com/products/charting

RE: cfeclipse plug-in

2004-01-27 Thread Samuel R. Neff
I haven't heard anything about MM creating an Eclipse plug-in for CF but they are working with IBM to create a plugin for Flex.IBM demonstrated it at MAX.Had highlighting, color coding, some wysiwyg editing, and debugging. Sam --- Blog:

RE: random number cfc

2004-01-26 Thread Samuel R. Neff
You're missing ## around the cfc instance name inside the cfinvoke tag.By leaving this out you're creating a new generator in each loop and it's being seeded with the same number and producing the same results for several iterations.This is exactly the problem we were talking about earlier with

RE: random number cfc

2004-01-26 Thread Samuel R. Neff
Because passing a seed that is only accurate to the second will cause duplicate numbers in a high volume site. Read this thread: http://www.houseoffusion.com/cf_lists/index.cfm?method=messagesforumid=4th readid=30056 HTH, Sam --- Blog:

RE: random number cfc

2004-01-26 Thread Samuel R. Neff
With the code you posted, you only need 2 hits in the same second to get repeat numbers.That's not all that busy. We're not talking about truly random numbers, just small simple measures to take over the built in functions to avoid immediate repeats. Sam

RE: Word Object

2004-01-26 Thread Samuel R. Neff
The code Selection.InsertBreak Type:=wdPageBreak Is not a property setting but a method call.The equivalent code in CFScript would be wordDoc.Selection.InsertBreak(7); I'm not sure why the convention in VB is to use named parameters here since there is only one parameter. That said, Ian is

RE: randomize()

2004-01-23 Thread Samuel R. Neff
When either rand() or randRange() is used for the first time in a request, a random number generator is instantiated using the value of getTickCount() as the seed.This same random number generator is used for all rand(), randRange(), and randomize() calls for the remainder of the request. So,

RE: real quick ot

2004-01-13 Thread Samuel R. Neff
Even if you don't have specific versions for your web apps, version controls is invaluable for it's concurrency (multiple users editing files) and history features.We use CVS for all our apps, including CF apps, and love it. Version control is also linked with quality control in a way.You can

RE: Need help with MS Word Automation

2004-01-09 Thread Samuel R. Neff
If you're open to options other than automation, take a look at these links: Integrating ColdFusion with Microsoft Office: Breezo and examples http://www.rewindlife.com/archives/000118.cfm Serving Word http://www.rewindlife.com/archives/32.cfm HTH, Sam

RE: About CFMX and XML

2004-01-06 Thread Samuel R. Neff
Here's a preso with examples. http://www.rewindlife.com/archives/16.cfm HTH, Sam --- Blog: http://www.rewindlife.com Charts: http://www.blinex.com/products/charting --- -Original Message-

RE: XPath expr to get all attributes....how?

2004-01-05 Thread Samuel R. Neff
The CFMX implementation only supports returning an array of elements, not attributes. Sam --- Blog: http://www.rewindlife.com Charts: http://www.blinex.com/products/charting --- -Original Message-

RE: CF MX 6.1 and com objects

2004-01-05 Thread Samuel R. Neff
Can't give you a complete answer but a part of one. It has something to do with interfaces.CFMX requires the IDispatch interface and something I read in a forum from a tech support person is that .NET components don't expose this by default.The .NET docs indicate that .NET COM wrappers are in

RE: CF MX 6.1 and com objects

2004-01-05 Thread Samuel R. Neff
.NET does not natively support COM.Whenever you talk about using .NET with COM you are by definition using wrappers.So what Matt said is completely true. His Black Knight product works differently through a direct C interface used by CFX tags.Has some advantages and disadvantages and is certainly

RE: National Do Not Call

2004-01-02 Thread Samuel R. Neff
Duane, You can sign up as a telemarketer and download the list as either a flat file or an XML file. https://telemarketing.donotcall.gov/default.aspx More information here: http://www.ftc.gov/bcp/conline/pubs/alerts/dncbizalrt.htm You get five area codes free or have to pay $25 per area code,

RE: OT- making a windows based app

2004-01-02 Thread Samuel R. Neff
If you're building a desktop app then you should use a language and environment that supports desktop development--CF is a web development language. You can use a Flash or Director projector and store the data in XML on the CD.Of course there are tons of other options, Java, VB6, any .NET

RE: Access 2002 No Results

2003-12-28 Thread Samuel R. Neff
Make sure clob datatypes are turned on for the datasource in CFAdmin. Sam --- Blog: http://www.rewindlife.com Charts: http://www.blinex.com/products/charting --- -Original Message- From: Dwayne

RE: Changes to Functionality in Microsoft Windows XP Service Pack 2

2003-12-23 Thread Samuel R. Neff
Interesting that there was no mention of the Active Content/Eolas issue;I guess that change isn't in this update.Anyone have more details/confirmation? Sam --- Blog: http://www.rewindlife.com Charts: http://www.blinex.com/products/charting

RE: Best Practices

2003-12-17 Thread Samuel R. Neff
Yuck, _ has got to be the worst function name I've ever seen. :-) Sam --- Blog: http://www.rewindlife.com Charts: http://www.blinex.com/products/charting --- -Original Message- From: Jochem van

RE: Flash on the Desktop?

2003-12-17 Thread Samuel R. Neff
Best option is Screenweaver.http://www.screenweaver.com/index.cfm?nav=0 If building an app that needs to work both as desktop and online, you can write your own intermediary communication classes that determine the runtime environment and either send out to screenweaver for local database access

  1   2   3   >