RE: Date picker

2004-09-07 Thread Shawn Grover
Check the date-picker on www.mattkruse.com.It's good, flexible, and free. Shawn -Original Message- From: Nando [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 07, 2004 4:45 PM To: CF-Talk Subject: Re: Date picker ummm ... have you tried pulling it out of the source at orbitz.com

RE: Desc Output

2004-08-06 Thread Shawn Grover
Or you can do a query of query, and change the sort order on your result set... Shawn -Original Message- From: Scott Brady [mailto:[EMAIL PROTECTED] Sent: Friday, August 06, 2004 9:57 AM To: CF-Talk Subject: Re: Desc Output If you can't do it in the query, there are ways to do it in

RE: VMWare was Re: Best choice for ColdFusion Studio IDE...

2004-07-19 Thread Shawn Grover
Do a google search for The Art of Unix Programming, read through the first half of the book, then reflect on your statements...While they are not wrong, the intent behind them seems misplaced (my personal take on this, though I haven't been following the thread). In The Art of Unix Programming,

RE: VMWare was Re: Best choice for ColdFusion Studio IDE...

2004-07-19 Thread Shawn Grover
Sorry Dave, When I read that phrase about Mac OS/X being multithreaded whereas OS/2 had this capability long beforehand, I interpreted the statement in a derogatory way (perhaps erroneously?).While the statement is accurate that OS/2 was able to do multithreading long before Mac OS/X, the

RE: Releasing client to do another process?

2004-07-13 Thread Shawn Grover
Open a new window, then bring your main window to the front, via _javascript_.If you want to allow the user to navigate away from your page, this would be the only way to do so and allow the long running process to continue. Shawn -Original Message- From: Jim Davis [mailto:[EMAIL

RE: login methods

2004-06-28 Thread Shawn Grover
I've been thinking on this for some time... In the past, we put the username/password into a database (properly encrypted of course), and checked login's against that table.However it quickly became an issue where each application had it's own login system.My thoughts on this are to create an

RE: cf5 session variables

2004-06-09 Thread Shawn Grover
with CF5, you can configure the server to automagically lock for you.We routinely configured the server to automatically lock on read, but put policy in place to have the coders do a manual lock (via cflock) anytime they assigned a value to a session variable (writes). If you do not configure

RE: JS Question

2004-06-09 Thread Shawn Grover
This looks like a case of mixing server side and client side logic.Try dumping the values of the variables via a JS alert() just before calling the getElementById.See if it's what you are expecting. Shawn -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent:

RE: Get Database Tables, etc

2004-06-04 Thread Shawn Grover
In MS SQL Server (2000), you can use the system stored procedure sp_tables. Issuing the command: exec sp_tables will list all the tables in the current database, with a column for table type (System or Table).More details are in the online help for T-SQL. There are similar stored procs

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

2004-06-04 Thread Shawn Grover
I wrote a program about two years ago that could analyse a database, and create a functional web site consisting of pages for each table that allowed selecting a record to edit, editing a record, as well as adding a new record or deleting one.It did so by creating all the SQL statements that were

RE: Recommendation for a book about writing documentation

2004-06-01 Thread Shawn Grover
What your asking for falls under the category of Technical Writing.When I was studying programming in school, the Technical Writing class was required.It covered a number of points like knowing who the target audience is, how to present step by step instructions, etc. A quick google search for

RE: More XML goodness...

2004-05-20 Thread Shawn Grover
Check your CF Admin pages.Specifically the detailed information for you DSN.There is an option there to restrict the size of a field to 64k characters, and is on by default. I believe this is a performance tuning setting, but can be turned off in situations like yours. Of course, this is only

OT: Recovering a SQL Server 6.5 Device file?

2004-05-19 Thread Shawn Grover
Sorry for the off topic, but we've exhausted Google and MSDN on this issue, and the list just happens to have a bunch of experts on it, so I'm hoping We have an older database server that finally crashed it's motherboard.This server was running NT4 with SQL Server 6.5.Because it's NT4, I

RE: How would I do this?

2004-05-18 Thread Shawn Grover
IFRAMES. Pages loaded in IFrames are loaded asynchronously from the main page. If you have three jobs, you might create a main page with three IFRAMES.Set the src of the IFrames to a page which will do one specific task (I'll call this a sub-page for now).The sub-page can use _javascript_ to

RE: Class not found error when browsing to a CFC directly.

2004-04-22 Thread Shawn Grover
Haven't seen any response on this, so I'm hoping a bump might elicit some responeses.(I won't bump it again after this one.) Shawn -Original Message- From: Shawn Grover Sent: Monday, April 19, 2004 12:00 PM To: CF-Talk Subject: Class not found error when browsing to a CFC directly

Class not found error when browsing to a CFC directly.

2004-04-19 Thread Shawn Grover
Hi gang. I was trying to demonstrate CFMX's self documentation of CFCs to a co-worker, so punched in the URL to a CFC file.I got the error listed below. I've seen this occur before but have not been able to determine the exact circumstances where I would see it.I initially suspected it was a

RE: Javascript remoting with cfcs

2004-03-17 Thread Shawn Grover
I don't know how useless this would be - I can see potential for it right away. For instance - what if I had a page that had to dynamically change or update parts of the page (i.e. search results)?I currently do this sort of thing by calling a new page in a hidden IFrame, which will then

RE: CFIF Insanity

2004-03-16 Thread Shawn Grover
I've seen the same behaviour if a quote is missing from a string within an IF block, or if a tag in a CFIF block is missing the end angle bracket . Shawn -Original Message- From: Richard Crawford [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 16, 2004 5:03 PM To: CF-Talk Subject: Re:

RE: JavaScript: Retrieving Remote HTML

2004-03-12 Thread Shawn Grover
One method would be to include Page B with a _javascript_ include (script src="" and have Page B put the string you're after into a _javascript_ variable.After the include, your code can see that variable as if it were on the same page. I'm sure there's more elegant solutions though. Shawn

RE: JavaScript: Retrieving Remote HTML

2004-03-12 Thread Shawn Grover
So, besides the XML approach (which sounds VERY interesting), there are two methods suggested.I've done both myself, and personally prefer the IFrames. The first method would be something like so: script src=""> script x = js_string_set_in_pageB.cfm; /script The second would be something

RE: Strip HTML from String

2004-03-02 Thread Shawn Grover
There are functions for this at www.cflib.org -Original Message- From: Bailey, Neal [mailto:[EMAIL PROTECTED] Sent: Monday, March 01, 2004 10:40 AM To: CF-Talk Subject: Strip HTML from String Hello everyone... I saw a while back that someone either posted a snippet or a link to a tag

RE: How to know when you have the last record?

2004-02-26 Thread Shawn Grover
cfif myquery.currentrow lt myquery.recordcount img src=""> /cfif (going from memory, so can't be 100% certain I got that right) Shawn -Original Message- From: Jeff Fongemie [mailto:[EMAIL PROTECTED] Sent: Thursday, February 26, 2004 8:26 AM To: CF-Talk Subject: How to know when you

RE: The Dangers of Java

2004-02-17 Thread Shawn Grover
If you are hard coding the page to redirect to, when not then hard code it on the form processing page instead of on the form itself?That would remove one security issue altogether - you would now need to modify the processing page to redirect somewhere else. My thoughts. Shawn

Help with speeding up a string replace on a large file.

2004-02-11 Thread Shawn Grover
We have a case where we have 30+ instances of text in an RTF document that need to be replaced with specific database values.The routine we have does work, but it's pretty slow.In one case, we have a 1+ meg file, that we need to do the 30 replacements on via the REPLACENOCASE function.This file is

Mailto with an embedded form?

2004-02-09 Thread Shawn Grover
A client wants us to use the mailto: protocol of an anchor tag to open an email with an HTML form embedded in it.something like so: a href="" PROTECTED]body=form name='myForm' action='' method='post'Comments: input type='text' name='comment'/formEmail Me/a However, when I try this out the body

RE: Page Cache..

2004-02-09 Thread Shawn Grover
Another idea would be to put the three pages in your form onto one page as hidden divs (except the first - that one should be visible).Then provide a way to move between the pages (next/back links that would hide/show the appropriate divs).And a Finish link/button that submitts the form. Doing

RE: Mailto with an embedded form?

2004-02-09 Thread Shawn Grover
We present the user with a default list of TO addresses, based on the context of the project they are working on.However the email being sent may need to go to others not in the default list, or some on the list may not need to see the email.Basically, the user get's to decide who the email should

Help with Blob data?

2004-02-06 Thread Shawn Grover
We are converting an old Power Builder app to a web application.The designers of the old system decided to store MS Word documents, and images as BLOB data in the database, and now I need to extract this information to create physical files for use with our system.One would think to query for the

RE: Invoking CFC from within a CFCATCH block

2004-02-06 Thread Shawn Grover
Isn't this what the CFERROR tag was meant for?Or has it been deprecated with MX and the CFC concept? Shawn -Original Message- From: Craig Earls [mailto:[EMAIL PROTECTED] Sent: Friday, February 06, 2004 2:07 PM To: CF-Talk Subject: Invoking CFC from within a CFCATCH block It seems like

RE: Groupwise and mailto - Resolved

2004-01-28 Thread Shawn Grover
- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 27, 2004 11:52 AM To: CF-Talk Subject: OT: Groupwise and mailto Hi all.My appologies for the OT, but I'm not sure where else I can get help on this. I need to set the To, Subject, and Body fields of an email using the method href

Regex Help?

2004-01-28 Thread Shawn Grover
I have routine that reads in an RTF file, and then needs to find bookmarks and insert a value for the bookmark.I'm usings CF's replace function, and it works, but takes way too long in some cases.So I thought that if I use regular expressions (with the REReplace function), I might speed things up.

RE: Regex Help?

2004-01-28 Thread Shawn Grover
Solved.The regex I'm using now is \{\\b0 \{\\\*\\bkmkstart bookmark_name\} Guess I was close. Thanks though. Shawn -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 28, 2004 3:33 PM To: CF-Talk Subject: Regex Help? I have routine

RE: How to Pass Varibles on Multipage Form?

2004-01-28 Thread Shawn Grover
Or do it via _javascript_.I'd personally do a multipage form as a wizard type of interface with hidden DIVs.But this depends on the nature of the form, your coding preferences/skills, and how much data to be processed... Shawn -Original Message- From: Robert Redpath [mailto:[EMAIL

OT: Groupwise and mailto

2004-01-27 Thread Shawn Grover
Hi all.My appologies for the OT, but I'm not sure where else I can get help on this. I need to set the To, Subject, and Body fields of an email using the method href="" PROTECTED]subject=testbody=test in an anchor tag. This works perfect using MS Outlook.But I'm having troubles with Groupwise

RE: Can CF do this?

2004-01-19 Thread Shawn Grover
CGI.REMOTE_ADDRESS (I think - I'd have to look it up to be absolutely sure). However, do not expect this to be 100% reliable.The reported IP address can be a proxy server's address, or may not be reported at all (depending on the browser). Shawn -Original Message- From: NANCY SKAGER

CFHeader/CFContent woes.

2004-01-10 Thread Shawn Grover
I know this is a relatively common question on the list, but the common answers/solutions just aren't working for me. I've built a testing page to isolate my problem with the following code: CFHEADER NAME=Content-Disposition VALUE=attachment; filename=fax_tenant.doc cfcontent

RE: CFHeader/CFContent woes.

2004-01-10 Thread Shawn Grover
know what else I can do to resolve this.Any suggestions? Shawn -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Saturday, January 10, 2004 3:09 PM To: CF-Talk Subject: Re: CFHeader/CFContent woes. Shawn Grover wrote: CFHEADER NAME=Content-Disposition VALUE

RE: CFHeader/CFContent woes.

2004-01-10 Thread Shawn Grover
n reset error. -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Saturday, January 10, 2004 5:07 PM To: CF-Talk Subject: CFHeader/CFContent woes. I know this is a relatively common question on the list, but the common answers/solutions just aren't working for me. I've built a

RE: CFHeader/CFContent woes.

2004-01-10 Thread Shawn Grover
Smoljak [mailto:[EMAIL PROTECTED] Sent: Saturday, January 10, 2004 4:56 PM To: CF-Talk Subject: Re:CFHeader/CFContent woes. Shawn Grover wrote: The problem is that no matter what I do to the cfheader line, I NEVER see fax_tenant.doc as the requested filename.I see the name of the .cfm file (which

RE: Creating a Word.Application COM object needs a new instance o f WI NWORD.EXE?

2004-01-09 Thread Shawn Grover
a lot of unknowns, but at least I have a couple of options to explore.I just wish this task wasn't due today Thanks for the input. Shawn Grover -Original Message- From: Mike Townend [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 4:23 AM To: CF-Talk Subject: RE: Creating

Need help with MS Word Automation

2004-01-09 Thread Shawn Grover
I am having problems finding information on using Word Automation.What I am trying to do is use CFMX (6.0) to open a MS Word template (.dot file), find the bookmarks in the file, insert data from our database at the bookmark locations, and then save the document as a new file on the server. Once

RE: Need help with MS Word Automation

2004-01-09 Thread Shawn Grover
--- -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Friday, January 09, 2004 1:06 PM To: CF-Talk Subject: Need help with MS Word Automation I am having problems finding information on using Word Automation.What I am trying to do is use CFMX (6.0) to open a MS Word

RE: Creating a Word.Application COM object needs a new instance o f WI NWORD.EXE?

2004-01-09 Thread Shawn Grover
Did that, I do get the catch block running, but the winword.exe instance isn't killed. I have found another suitable method - save my templates as HTML, read in the file, modify it as needed, then push it out as a word document.No need of Word automation with this method.Will just have to train

Creating a Word.Application COM object needs a new instance of WI NWORD.EXE?

2004-01-08 Thread Shawn Grover
I'm using the following code: CFTRY !--- If it exists, connect to it --- brTrying to connect to Word Object CFOBJECT ACTION="" CLASS=Word.Application NAME=oWord TYPE=COM CFCATCH !--- The object doesn't exist, so create it --- brWord Object not found, trying to create one CFOBJECT

RE: Creating a Word.Application COM object needs a new instance o f WI NWORD.EXE?

2004-01-08 Thread Shawn Grover
I had thought of that, but my server currently has multiple WINWORD.EXE's running, so will not process my (revised) page to execute the oWord.quit() command. I have been doing some research and discovered that MS doesn't recommend using the Word.Application object (for Word 2000) on the server

RE: Creating a Word.Application COM object needs a new instance o f WI NWORD.EXE?

2004-01-08 Thread Shawn Grover
Well, the server has been restarted, and the Quit command does indeed clean up the instance.However, if I run into any errors at all before the Quit command (and I'm expecting a few while I'm developing the page), I run into the same situation again - the instance of word is not cleaned up, I

WDDX vs raw XML?

2004-01-05 Thread Shawn Grover
We have a situation where we need to pass complex data structures from the server to the client, and from the client back to the server.In the past, I've handled this with WDDX, but am aware of a quasi limit to how deep you can nest WDDX packets.Our current app is going to need multiple levels -

RE: WDDX vs raw XML?

2004-01-05 Thread Shawn Grover
around 5 or 6 and it works fine. Also you may check out wddx site and see whatever there is a limit or no limit at all. It would be strange in my opinion if the limit (if any) was set to something under 10. TK -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Monday

Verity Language Packs?

2003-12-09 Thread Shawn Grover
Hi all. I have a base install of CFMX (not upgraded to 6.1 yet), and am finding that Verity has some problems indexing french content.So, we've done some research and determined we need to install the Verity Language Pack.I've downloaded the asian/european language pack, and now need to apply it.

OT: Arden Weiss - virus sending messages to the list?

2003-11-06 Thread Shawn Grover
Hi all.Don't know if I'm the only one, but I've been getting emails from an Arden Weiss.The messages seem to be CF related, and come with an attachment.The attachment is a .scr file.I myself have never had dealings with Arden Weiss (that I can remember), and know better to open .scr file

Accessing a user's Groupwise address book from CF?

2003-10-24 Thread Shawn Grover
I'm not familiar with the capabilities of Groupwise, so thought I'd ask the list. We have an application that (if possible) will access the address book for a given user in GroupWise.Is this possible?Anyone have any tips how to go about it?I suspect security will kick in, but we will be able to

RE: Accessing a user's Groupwise address book from CF?

2003-10-24 Thread Shawn Grover
Oops, I forgot to mention that a quick google search didn't really find anything.But my search terms may not be the greatest Shawn -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Friday, October 24, 2003 4:25 PM To: CF-Talk Subject: Accessing a user's

Mime type for a dwf file?

2003-10-17 Thread Shawn Grover
We have a system where a user can upload files, then later access these files (with security) through a CFContent call.We set the mime types for most of the common files (images, documents, spreadsheets, etc.), and the browser handles the files accordingly (opens the appropriate plug-in if it's

RE: Web imap email

2003-10-14 Thread Shawn Grover
Any linux box running Courier-IMAP, or similar packages...These normally run on top of Sendmail, Postfix, qmail, or some other message transfer agent.They're all open source. If you visit the user documentation pages at the Gentoo linux website, they have a guide for setting up an email server,

RE: How to deliver up the page and continuing processing?

2003-10-14 Thread Shawn Grover
Set an IFrame on your page, with a source pointing at the main processing file.So your page get's rendered, but then loads another page into the IFrame. The downside with this is that if the page is long running, and the user closes their browser or navigates off the page, the processing won't get

RE: Coldfusion VS Zope (Python) ... HELP!!

2003-10-10 Thread Shawn Grover
If it helps any, I've just started implementing Zope on my personal server, but code in CF professionally.My experience thus far is that Zope does have a lot of potential to make life easy.I've installed Plone on top of Zope, then within an hour, I had a basic web site up and running, with editing

CFContent and PDF problems

2003-10-08 Thread Shawn Grover
We're using a CFContent to push files to a client page (after they've clicked on an appropriate link of course).Things are working for image files, but we are getting odd behaviour when we try to view PDF documents. Here's the code in question: !--- Set the name of the download file in the HTTP

RE: CFContent and PDF problems

2003-10-08 Thread Shawn Grover
. -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ http://www.evoch.com/ -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 08, 2003 12:52 PM To: CF-Talk Subject: CFContent and PDF

OT: IIS not rendering ASP?

2003-09-30 Thread Shawn Grover
We have a web server that has been setup for virtual hosting.But for some reason it is refusing to interpret the ASP files.A request for an ASP file results in the text of the file being passed to the client, with no server side processing. We have searched MSDN, and the official solution is to

RE: IIS not rendering ASP?

2003-09-30 Thread Shawn Grover
- From: Shawn Grover [mailto:[EMAIL PROTECTED] A request for an ASP file results in the text of the file being passed to the client, with no server side processing. _ [ Todays Threads [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

RE: IIS not rendering ASP?

2003-09-30 Thread Shawn Grover
Subject: RE: IIS not rendering ASP? By any chance was the iis lockdown tool run on this and set to stop asp? You might want to rerun the tool and ensure that asp is allowed. Steve -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 30, 2003 12:37 PM

RE: Editing Files In-Line

2003-09-23 Thread Shawn Grover
Then if need be, you can do a cffile with action="" to write out the modified file, or just dump sFileContent to the client. This may not be the most elegant solution, but it'll work... (a regular _expression_ replace might be much more efficient). Shawn -Original

RE: Editing Files In-Line

2003-09-23 Thread Shawn Grover
H. now that mail is being sent as HTML, I'm not seeing tags that are being discussed -Original Message- From: Paul Giesenhagen [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 23, 2003 10:34 AM To: CF-Talk Subject: Re: Editing Files In-Line It will have to

RE: Design Structure and cfinclude

2003-09-19 Thread Shawn Grover
One method we use is to create our pages as include files themselves. We then build the main display page with simple code to set Page specific information (like Title, template, etc.). We have a template file for the application that includes the specified files at the required point. So I

RE: OO modeling Hell

2003-09-18 Thread Shawn Grover
I think you are on the right track but missed the business rules end of OO. I would do the same as you - create objects for dealing with my underlying tables. I call these objects data access components, and normally store them in a different folder called data. Now, you have the concept that

RE: OO modeling Hell

2003-09-18 Thread Shawn Grover
of the data into persistent (application scoped) queries and the application pulled it from there using QofQ. Thinking in objects I'm not sure how to translate that... Am I confusing everybody else as much as I am myself? ;^) Jim Davis -Original Message- From: Shawn Grover [mailto:[EMAIL

RE: OO modeling Hell

2003-09-18 Thread Shawn Grover
Sounds like you're on the right track. Regarding your sample approach below, I'd have to say that this depends on how you want to code it, and what the requirements of your application are. You could have one event object that contains an array/collection of time slots and venues, or you can have

RE: Can I Throw within cfscript???

2003-09-16 Thread Shawn Grover
You can write a wrapper function for CFTHROW then call that function from within your CFScript block... -Original Message- From: Andy Ousterhout [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 16, 2003 2:43 PM To: CF-Talk Subject: Can I Throw within cfscript??? Do I have to go out of

Mail_Attachments is a reserved word?

2003-08-27 Thread Shawn Grover
Hi ya. We were using CFFile to store some files into a folder called Mail_Attachements, and running into problems on our production server. Worked fine in development, but the production server would crap out at that point. The solution turned out to be changing the directory name to

OT: Use JS to determine window size of parent document?

2003-08-21 Thread Shawn Grover
We have a situation where we have an IFrame on a page which contains a table. We need to set the width of the table to the width of the window (the frame's parent document), scrolling the frame if necessary. We have tried using window.width, with no luck. Searches of the web finds references

RE: CF or .DotNet what do you think?

2003-08-06 Thread Shawn Grover
We have two development teams at the moment - one using .Net, and the other using CFMX. We've had discussions in house and have come to the agreement that we could theoritically swap languages for the two projects, and the end results would be roughly the same (with regards to performance,

Unwanted control characters in text area

2003-07-23 Thread Shawn Grover
We have a text area that allows a user to enter HTML code. This works fine, but we are seeing unwanted characters added to the field value. Specifically the character #160;. We have been unable to find where this character is comming from. The process is as follws: 1) user enters HTML in the

RE: Unwanted control characters in text area

2003-07-23 Thread Shawn Grover
characters in text area from http://www.efn.org/~gjb/asciidec.html 160 -- -- tony weeg uncertified advanced cold fusion developer tony at navtrak dot net www.navtrak.net office 410.548.2337 fax 410.860.2337 -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Wednesday, July

RE: Unwanted control characters in text area

2003-07-23 Thread Shawn Grover
: Andre Turrettini [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 23, 2003 1:58 PM To: CF-Talk Subject: RE: Unwanted control characters in text area it does not appear from an input text box with everything else the same? DRE -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED

File Synchronization, Asynchronously?

2003-07-22 Thread Shawn Grover
that works, but would appreciate any comments/tips/suggestions for this process, or even an alternative process. Keep in mind though that I only have the capabilities of the CF Server and/or database server (MS SQL 2000) - no third party tools are allowed. Thanks for any responses. Shawn Grover

RE: File Synchronization, Asynchronously?

2003-07-22 Thread Shawn Grover
letter conventions. -- Mosh Teitelbaum evoch, LLC Tel: (301) 942-5378 Fax: (301) 933-3651 Email: [EMAIL PROTECTED] WWW: http://www.evoch.com/ -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 22, 2003 12:35 PM To: CF-Talk Subject: File Synchronization

RE: Cons to Fusebox

2003-07-20 Thread Shawn Grover
Your statements assume the apps in multiple locations all belong to one client. If I had 3 clients who each required a shopping cart app (for instance), I doubt very much if they would want their system to be even partially located on server's outside their domains. In this case (which is common

RE: Cons to Fusebox

2003-07-18 Thread Shawn Grover
-Original Message- From: Barney Boisvert [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2003 3:21 PM To: CF-Talk Subject: RE: Cons to Fusebox If I were to start a new project tomorrow, I could either grab Fusebox (or Struts, or whatever) and start architecting and coding, or I could

RE: RE: Cons to Fusebox

2003-07-18 Thread Shawn Grover
Very true, as we both well know. However, if the requirement gathering is done, then the proper planning, the system you've built can normally handle these situations - regardless of what framework/architecture/methodology you've chosen. Shawn -Original Message- From: [EMAIL PROTECTED]

Cons to Fusebox - From the trenches

2003-07-18 Thread Shawn Grover
I undertook a project which was partially completed before I became involed. The project up to that point had been done in a modified form of FB2 on CF5. I ran into large number of problems simply because the code was not a full FB implementation. Had it been, a number of things would have been

RE: Cons to Fusebox

2003-07-17 Thread Shawn Grover
Brian, you are starting to come across as being aggresively opposed to this conversation. As for your message: I work pretty much in the same fashion Dave has indicated. However, I have absolutely no data layer logic on my display page. Any data layer logic is accessed via a function call to a

RE: Cons to Fusebox

2003-07-16 Thread Shawn Grover
My FB knowledge is a bit old (FB2 days), but what I remember is that FB basically provided a programming framework. For those of us that had a programming background (i.e. desktop applications), building a programming structure is/was a natural thing. On the otherhand, web developers without

CFAbort in CFScript?

2003-07-14 Thread Shawn Grover
I think this is a stupid question, but is there any way to end processing of a CF page from within CFScript similar to a CFAbort. I know CFAbort is a tag, and tags can't be used in cfscript. However, there have been so many other improvements to CF with the MX release that I wouldn't be

FW: (clug-talk) CFMX on Gentoo Linux?

2003-06-16 Thread Shawn Grover
Has anyone been able to get CFMX running on Gentoo Linux? When I try to install the linux version (trial version from the web), I get a bunch of strange errors. ---Errors --- Configuring the installer for this system's environment... dirname: error while loading shared libraries: libc.so.6:

How do you pass the location of your CFCs to other CFCs?

2003-06-12 Thread Shawn Grover
We are trying to follow good OO coding standards as we develop our CFCs, but have hit a minor snag. Basically, an action page will call a business rule component. But first, it needs to know where we've stored the components. That's fine, I can set a variable in Application.cfm. Now the

RE: How do you pass the location of your CFCs to other CFCs?

2003-06-12 Thread Shawn Grover
it is. - Yoda -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Thursday, June 12, 2003 4:32 PM To: CF-Talk Subject: How do you pass the location of your CFCs to other CFCs? We are trying to follow good OO coding standards as we develop our CFCs, but have

RE: Back Buttons

2003-06-04 Thread Shawn Grover
Also, if your form action page doesn't do any client side output (i.e. javascript), then the browser won't know about it, and a history.back(); will return you to your form. This method won't work if you are doing anything with cookies, otherwise, it works pretty well. -Original

RE: Calendar recommendations?

2003-05-31 Thread Shawn Grover
Or, one query to get all the events for the month, then using query of a query or looping through the records, you could populate the calendar table as it's being generated. -Original Message- From: Austin Govella [mailto:[EMAIL PROTECTED] Sent: Friday, May 30, 2003 3:32 PM To: CF-Talk

RE: Making the MX Popup Menu Javascript Dynamic

2003-05-30 Thread Shawn Grover
The COOLjsMenu and COOLjsTree look pretty good. Decent prices too. http://javascript.cooldev.com/scripts/coolmenu/ -Original Message- From: Jamie Jackson [mailto:[EMAIL PROTECTED] Sent: Thursday, May 29, 2003 1:14 PM To: CF-Talk Subject: Making the MX Popup Menu Javascript Dynamic I

RE: Help with CFC and recursion?

2003-05-27 Thread Shawn Grover
: Help with CFC and recursion? On Monday, May 26, 2003, at 17:41 US/Pacific, Shawn Grover wrote: I've tried a number of combinations for the code, and always seem to get a similar result. You need to use 'var' to declare your variables local - otherwise they are just instance variables

Encryption in MX?

2003-05-27 Thread Shawn Grover
In the past (with CF 4.5 and 5), I've used the undocumented CFUSION_ENCRYPT function for encrypting my values. Is there something similar in MX? The documentation I've found thus far only indicates the native Encrypt() function, which is known to have some issues (like being easy crack, and

RE: Help with CFC and recursion?

2003-05-27 Thread Shawn Grover
We're declaring a Clear function which initializes the THIS properties to a valid, known state. Our procedure is to ensure the clear function matches the CFPROPERTY declarations, and we call the Clear function when the CFC is initialized. -Original Message- From: Sean A Corfield

RE: Help with CFC and recursion?

2003-05-27 Thread Shawn Grover
US/Pacific, Shawn Grover wrote: We're declaring a Clear function which initializes the THIS properties to a valid, known state. Our procedure is to ensure the clear function matches the CFPROPERTY declarations, and we call the Clear function when the CFC is initialized. And what's to stop

RE: i think im gettin hacked

2003-04-03 Thread Shawn Grover
I'm coming into this late, so don't know if it's been said yet or not. But does your box have intrusion detection? By that I mean is there an alarm/warning/log entry when someone takes the cover off the box? If so, then the alarm would only happen when the box was powered up, but it would

RE: Cheap CF hosting?

2003-04-02 Thread Shawn Grover
http://www.nexpoint.net/ It appears they are just starting up, but so far I'm satisfied with the performance of their servers, and the tech support. Supports CF 5.0 and CFMX. Tons of drive space, DSN support, etc. 99$ USD / year. Shawn -Original Message- From: [EMAIL PROTECTED]

RE: OT - Recommend a good, free web tracking software

2003-04-01 Thread Shawn Grover
Webalizer is pretty good. www.webalizer.com Free (i.e. open source), cross platform, and easy to setup - if you don't mind working with config files Shawn -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 10:32 AM To: CF-Talk

Using variables in a Switch case?

2003-03-26 Thread Shawn Grover
CF 5 doesn't like this: cfset nID = 3 cfset nTest1 = 2 cfset nTest2 = 3 cfswitch expression=#nID# cfcase value=#nTest1# brTwo /cfcase cfcase value=#nTest2# brthree /cfcase /cfswitch It throws an error saying the cfcase must have a

RE: Using variables in a Switch case?

2003-03-26 Thread Shawn Grover
AudienceCentral (formerly PIER System, Inc.) [EMAIL PROTECTED] voice : 360.765.8080 x12 fax : 360.647.5351 www.audiencecentral.com -Original Message- From: Shawn Grover [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 2:46 PM To: CF-Talk Subject: Using variables in a Switch

RE: Followup [cflogin]

2003-03-19 Thread Shawn Grover
Where would I find Ray's Powerpoing presentation? Is it publicly available online? Thanks -Original Message- From: Jeff [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 8:32 AM To: CF-Talk Subject: Followup [cflogin] Once I had the logic and concepts down, I started writing

RE: Followup [cflogin]

2003-03-19 Thread Shawn Grover
[cflogin] on 3/19/03 11:29 AM, Shawn Grover at [EMAIL PROTECTED] wrote: Where would I find Ray's Powerpoing presentation? Is it publicly available online? Thanks He posted the link here the day before yesterday, so I'm assuming it's okay to repeat it: http://www.camdenfamily.com/morpheus

  1   2   3   4   5   6   >