RE: circumventing framing....

2005-03-20 Thread Dawson, Michael
Good idea! Also, once you can find their URL in the address bar, using the previous techniques, redirect the user to a page stating that this company is ripping you off. M!ke -Original Message- From: Mike Kear [mailto:[EMAIL PROTECTED] Sent: Sunday, March 20, 2005 7:31 PM To: CF-Talk

RE: Default Value for MS Access ALTER TABLE ADD COLUMN

2005-03-21 Thread Dawson, Michael
I would alter the table to add a NULLable column. Then, set all values to 1. Then, alter the table to make the column NOT NULL. First, instead of (1), try (-1). I think Access stores bits as -1 or 0, but I could be wrong...again. M!ke -Original Message- From: Stan Winchester

RE: Search and Replace DWMX 2004

2005-03-22 Thread Dawson, Michael
This is the handiest file synching utility I have found so far. It is not a version control app, however. http://www.fileware.com/ I think it cost about $15 to register, but it was well worth the cost. M!ke -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent:

RE: Grouped output with cfloop?

2005-03-22 Thread Dawson, Michael
Yes, it's possible, but you need a few extra variables to store the current grouped value and a CFIF tag or two. Basically, you need to store the first grouped value in a temp variable. If the next value is the same as what you stored, you don't output it. You keep doing this until you get to a

Process CF Page Then Cancel Response

2005-03-23 Thread Dawson, Michael
I want to click on a link, have CF process some stuff (send an email) then that's it. I don't want the page to change in the browser. How do I do that? Thanks M!ke ~| Logware (www.logware.us): a new and convenient web-based

RE: Process CF Page Then Cancel Response

2005-03-23 Thread Dawson, Michael
://www.dopefly.com/ Dawson, Michael wrote: I want to click on a link, have CF process some stuff (send an email) then that's it. I don't want the page to change in the browser. How do I do that? Thanks M!ke

RE: Process CF Page Then Cancel Response

2005-03-23 Thread Dawson, Michael
Jochem, this worked perfectly. Thanks M!ke -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 23, 2005 4:02 PM To: CF-Talk Subject: Re: Process CF Page Then Cancel Response Dawson, Michael wrote: I want to click on a link, have CF process some

RE: Process CF Page Then Cancel Response

2005-03-23 Thread Dawson, Michael
I built a Click to add this event to your calendar link on our intranet site. The page emails a vCalendar message to the person who is logged in. This really isn't a mission-critical feature. Even if I put a confirmation page, that doesn't really mean the email actually got all the way to

RE: JRun Updater 5 Release Notes?

2005-03-24 Thread Dawson, Michael
I have CF 7 Standard. Do I still need to install the JRun 5 updater? M!ke -Original Message- From: Dave Carabetta [mailto:[EMAIL PROTECTED] Sent: Thursday, March 24, 2005 9:29 AM To: CF-Talk Subject: Re: JRun Updater 5 Release Notes? On Thu, 24 Mar 2005 10:06:56 -0500, Dave Carabetta

vCalendar Code (was RE: Process CF Page Then Cancel Response)

2005-03-24 Thread Dawson, Michael
Sho' 'nuff! I give the following disclaimers and hints: * It's not very neat, it's not OOP. * It's functional and that's where I'm heading for now. (Working proof of concept.) * There is a udf at cflib.org that helped me with the DESCRIPTION output. However, it didn't have all the functionality

RE: Tab Separated file help needed ...

2005-03-24 Thread Dawson, Michael
There is a list fix function on cflib.org. I'm not sure if it will work with tabs, but I don't see why it should be a problem. Without that function, I would loop over the list and replace two consecutive tabs with a tab followed by a valid value followed by a tab. Repeat until all doubled-up

RE: Combininig Datasources in 1 CFQUERY

2005-03-25 Thread Dawson, Michael
One CF datasource per query is what you get. However... In Access, you can create a linked table to your SQL server tables. In SQL Server, you can create remote servers, however, I don't know if that includes Access databases, but if there is a driver for it, it should work. You will probably

RE: Ordering WACK from Amazon

2005-03-25 Thread Dawson, Michael
It's not always feasible to take a PDF to the bathroom, either. M!ke -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Friday, March 25, 2005 9:23 AM To: CF-Talk Subject: RE: Ordering WACK from Amazon I dunno, I am not 100% on board on that e-book/pdf thing.

RE: Combininig Datasources in 1 CFQUERY

2005-03-25 Thread Dawson, Michael
It all depends if they need disconnected access to the data in Access. I would still like to hear the reason not all of the data can be moved to SQL. I, too, use Access data projects where Access becomes the interface to the SQL data and nothing more. It makes it very easy to let others

RE: LDAP passwords

2005-03-25 Thread Dawson, Michael
You need a SSL certificate to do this securely with LDAP. I, personally, think that is overkill. However, the LDAP attribute is unicodePwd or something similar. This is how I do it on the Windows platform: I run ColdFusion as an domain account that is also an Account Operator (has permissions

RE: LDAP passwords

2005-03-25 Thread Dawson, Michael
First of all, what is the directory server in question? Active Directory or something else. My experience is with AD only, so far. If you try to set an AD password with CFLDAP, and you have no SSL cert, you will get an error similar to unwilling to respond, from what I remember. (I get that

RE: LDAP passwords

2005-03-25 Thread Dawson, Michael
maybe different too. Doug like this maybe http://www.houseoffusion.com/cf_lists/index.cfm/method=messagesthreadid =17267forumid=4 On Fri, 25 Mar 2005 14:50:49 -0600, Dawson, Michael [EMAIL PROTECTED] wrote: You need a SSL certificate to do this securely with LDAP. I, personally, think

RE: redirection/user authentication

2005-03-28 Thread Dawson, Michael
CFDUMP every scope as well. M!ke -Original Message- From: Ben Doom [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 1:08 PM To: CF-Talk Subject: Re: redirection/user authentication I would try looking both at the application.cfm file and any files that might get called (like

RE: redirection/user authentication

2005-03-28 Thread Dawson, Michael
My suggestion is to have the form submit to itself. I do all my forms that way and it makes it much easier to pass the form data back to itself in case of errors. Then, in the application.cfm, I do the login checks. I would also suggest copying these files to backup, then rebuilding each step

RE: CFLDAP under load?

2005-03-29 Thread Dawson, Michael
Try removing the timeout attribute and see if that makes a difference. You might also try removing ssl, if possible, just to rule that out. M!ke -Original Message- From: Douglas Knudsen [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 29, 2005 7:52 AM To: CF-Talk Subject: CFLDAP under

Database Model Suggestions - Elections

2005-03-29 Thread Dawson, Michael
I would like to get some opinions on how best to structure a simple election database for my intranet site. Most of the time, an election will have different offices, or positions, for which candidates run. In these instances, there is one candidate running for a position. Every now and then,

RE: Database Model Suggestions - Elections

2005-03-29 Thread Dawson, Michael
Hmmm. That looks pretty good. I'll see if it will fit with the rest of the logic. Thanks! M!ke -Original Message- From: Chris Terrebonne [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 29, 2005 10:59 AM To: CF-Talk Subject: Re: Database Model Suggestions - Elections Off the cuff, I

RE: Table name - Singular or plural?

2005-03-29 Thread Dawson, Michael
The system tables for Oracle iirc are singular. select * from col. They are plural in Oracle: User_Tables, All_Tables, etc... ~| Logware (www.logware.us): a new and convenient web-based time tracking application. Start tracking

RE: Table name - Singular or plural?

2005-03-30 Thread Dawson, Michael
Some expensive, real-world examples of singular table names. (However, I prefer plural, myself.) Cisco Call Manager Tables: Device NumPlan DeviceNumPlanMap tkProduct tkModel tkClass Datatel Higher-Education Enterprise System Person Student Student.Programs (Uh-oh! They weren't consistent.

RE: Table name - Camel case or Underscore

2005-03-30 Thread Dawson, Michael
cf_pie action=throw target=Marlon / M!ke -Original Message- From: Marlon Moyer [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 30, 2005 1:21 PM To: CF-Talk Subject: Table name - Camel case or Underscore Sorry, couldn't resist :) Marlon

RE: ColdFusion MX 7 slow?

2005-04-04 Thread Dawson, Michael
I used some vbscript and the Windows Scripting Host to create virtual directories that web-enable our users' home directories. I'm not sure if you can do this with CF, but it's worth a try. Search for ADSI, IIS and some other related terms on Microsoft's dev site. Here is my code to create the

RE: ColdFusion MX 7 slow?

2005-04-04 Thread Dawson, Michael
Here is the code to *delete* virtuals, just in case: ' Note: This script must be run numerous times until ' all virtuals have been removed. IIS can't keep ' up with the quick delete operations. Set oIIS = GetObject (IIS://localhost/W3SVC/1) Set IISRoot =

RE: RJustify doesn't work???

2005-04-07 Thread Dawson, Michael
View the source and you will probably see them. These functions will add whitespace, but since browsers collapse whitespace, by default, you won't see the result on the page. You will need to use pre/pre tags or CSS to keep the extra whitespace. M!ke -Original Message- From: Johnny Le

RE: Firefox has become unstable.

2005-04-08 Thread Dawson, Michael
I had the exact same problem on WinXP. I had to completely remove FF, manually deleting reg keys and files/folders. For some reason, FF flaked-out and would not die when I closed the program. I never figured out the cause. I agree with the shit of adding all those search engines. I'm sick to

RE: Firefox has become unstable.

2005-04-08 Thread Dawson, Michael
Damnit, Ian. You purposely made me post to the wrong list. Now, I'm going to get flamed by everyone. ;^) M!ke -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Friday, April 08, 2005 4:26 PM To: CF-Talk Subject: RE: Firefox has become unstable. I had

RE: Best price for CFMX 6.1 or 7

2005-04-08 Thread Dawson, Michael
If you become an educational institution, you can save a great deal on Standard. With Enterprise, well, you don't save as much. M!ke -Original Message- From: Rey Bango [mailto:[EMAIL PROTECTED] Sent: Friday, April 08, 2005 9:58 PM To: CF-Talk Subject: Best price for CFMX 6.1 or 7

ColdFusion and SharePoint Experience

2005-04-12 Thread Dawson, Michael
Has anyone had any experience in linking SharePoint with ColdFusion? Our Asst VP thinks SharePoint is the future of web development and wants to use it as a portal home page rather than ColdFusion. I will say that some SP stuff is OK, but it's not the be-all, end-all of web development. I would

RE: ColdFusion and SharePoint Experience

2005-04-12 Thread Dawson, Michael
and SharePoint Experience I'd say Bluedragon.NET might be useful in this case - Vince is sure to chime in if so. -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Tuesday, 12 April 2005 10:27 To: CF-Talk Subject: ColdFusion and SharePoint Experience Has anyone had

RE: cross domain cfid

2005-04-12 Thread Dawson, Michael
The first thing that comes to mind is CFAPPLICATIONS's SETDOMAINCOOKIES attribute. M!ke -Original Message- From: Kerry [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 12, 2005 12:43 PM To: CF-Talk Subject: cross domain cfid Does anyone know if its possible to have CF recognise sub

RE: Retrieve index name in ORacle

2005-04-13 Thread Dawson, Michael
You need to query the data dictionary. I forget the actual table that holds the index information, but if you query All_Tables, if you have permission, then you might see it there. I'm thinking it was All_Indexes or User_Indexes or something like that. Do this in sqlplus: SELECT * FROM

RE: Best Practices - Large Data Load

2005-04-13 Thread Dawson, Michael
If you have any money look at DT/Studio from Embarcadero. -Original Message- From: C. Hatton Humphrey [mailto:[EMAIL PROTECTED] Sent: Wednesday, April 13, 2005 11:06 AM To: CF-Talk Subject: Re: Best Practices - Large Data Load Good god don't do it in CF - you will kill it. This

Handheld Layout Development

2005-04-14 Thread Dawson, Michael
-Community Subject: Re: Handheld Layout Development (was RE: CSS) Dawson, Michael wrote: I'm starting to play around with some new development on an intranet web site. Since we are a university and since most students have cell phones, I want to add a mobile option to our site. What are your

RE: Database Normalization Question

2005-04-14 Thread Dawson, Michael
What happens you you have the same employee, but has been moved to a new position and you still need to keep the history? For example, last year I was a grunt. This year, I am a slave. How would you track that? -Original Message- From: Rick Faircloth [mailto:[EMAIL PROTECTED] Sent:

RE: Conditional CFInclude

2005-04-14 Thread Dawson, Michael
The easiest way to tell: Add a cfmail tag to each file. Second easiest: Add a cflog tag to each file. Then, run 'em! -Original Message- From: Jim McAtee [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 2:47 PM To: CF-Talk Subject: Conditional CFInclude In the following does

RE: CFLogin and storing a password

2005-04-14 Thread Dawson, Michael
If you use web server authentication, you can use auth_password. If you created your own form, you will need to store the password somewhere very safe. Obviously, it should be encrypted. M!ke -Original Message- From: Charles Heizer [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14,

RE: anyone bored?

2005-04-14 Thread Dawson, Michael
The first thing that hit me was IE's popup blocker. Could that be one of the problems? Users may not realize they are getting blocked when they click the image. M!ke -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 4:37 PM To: CF-Talk Subject:

RE: anyone bored?

2005-04-14 Thread Dawson, Michael
It worked for me, but took a couple of minutes. It ended up being ~26MB. Maybe people expected instant response on their dial-up? Is there any way you can cut down on this size? M!ke -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Thursday, April 14, 2005 4:37 PM To:

Damon's funky email address (was RE: Event Gateway sample apps

2005-04-14 Thread Dawson, Michael
Damon, what's up with: [EMAIL PROTECTED] [EMAIL PROTECTED] This is in the From fields when you send an email. Do you really want us to remember you that bad? ;^) M!ke ~| Logware (www.logware.us): a new and convenient

RE: I just need to strip out a space

2005-04-17 Thread Dawson, Michael
Assuming this is not a multi-line text area form field... cfset stripscent=Replace(FORM.prodscent, ,,ALL) If you need to strip tabs and carriage returns, you should use a regex that looks for whitespace chars and strips all of them. M!ke From: Will

RE: macromedia and Adobe?!

2005-04-18 Thread Dawson, Michael
That is what I am hoping. If Adobe does the minimal bit of marketing of ColdFusion, it will be much more than Macromedia. I would think that Adobe would *want* to keep CF just to piss off Microsoft. ;) -Original Message- From: Connie DeCinko [mailto:[EMAIL PROTECTED] Sent: Monday,

RE: macromedia and Adobe?!

2005-04-18 Thread Dawson, Michael
Well, Adobe is easier to type than Macromedia. -Original Message- From: Jack Dalaa [mailto:[EMAIL PROTECTED] Sent: Monday, April 18, 2005 4:26 AM To: CF-Talk Subject: Re: macromedia and Adobe?! Wow, this is just totally surreal. Had a complete out-of-body experience there for a few

RE: macromedia and Adobe?!

2005-04-18 Thread Dawson, Michael
This is the only thing that worries me now. Uninformed managers who think Microsoft hung the moon and IBM hung the stars. -Original Message- From: Kerry [mailto:[EMAIL PROTECTED] Sent: Monday, April 18, 2005 11:01 AM To: CF-Talk Subject: RE: macromedia and Adobe?! Well, my boss is

RE: cfrethrow question

2005-04-20 Thread Dawson, Michael
Not sure I can really answer your entire question, but rethrow is used when you want to handle some, but not all exceptions. For example, you could check for database connectivity errors and handle them inside a particular page. However, you don't handle the missing includes, so you use

RE: get windows logon name

2005-04-21 Thread Dawson, Michael
You need to use the NT challenge and response option. However, this only works on NT-based OS like W2k and XP along with IE. (I'm not sure if it works with non-IE browsers.) With that enabled, cgi.auth_user will be populated with that value. However, doing this makes your users less

RE: Counting c(rows)

2005-04-21 Thread Dawson, Michael
Are you wanting to count: 1. The number of actual records returned from the query? 2. The count of data as related to a particular question ID? M!ke -Original Message- From: Stuart Kidd [mailto:[EMAIL PROTECTED] Sent: Thursday, April 21, 2005 11:25 AM To: CF-Talk Subject: Counting

RE: Getting MS Exchange Mailbox Info??

2005-04-25 Thread Dawson, Michael
Why, as a matter of fact, I have a script that does just that. (It's in ASP, so don't tell anyone on this list. They might ban me.) ;) I will try to remember the requirements, but I'm not at work now and I may forget something. * Create a domain account with adequate permissions to open each

RE: Getting MS Exchange Mailbox Info??

2005-04-25 Thread Dawson, Michael
Well, it looks like the attachments didn't go through. Let me know if you still want to see them. M!ke -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Sunday, April 24, 2005 9:32 PM To: CF-Talk Subject: RE: Getting MS Exchange Mailbox Info?? Why, as a matter

RE: cfdocument tag / images problem

2005-04-25 Thread Dawson, Michael
This happened to another person on this list a few weeks ago. Try searching the archives. I don't know if he found a solution, but he may have a work-around by now. M!ke -Original Message- From: Caroline Wise [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 12:57 PM To: CF-Talk

RE: Script timing?

2005-04-25 Thread Dawson, Michael
You could also use cftimer. M!ke -Original Message- From: Charlie Griefer [mailto:[EMAIL PROTECTED] Sent: Monday, April 25, 2005 1:54 PM To: CF-Talk Subject: Re: Script timing? cfset startTime = getTickCount() / your code block cfset endTime = getTickCount() / cfset total = endTime -

RE: Convert Milliseconds to Date/Time

2005-04-27 Thread Dawson, Michael
Look at the date and time functions. They now support milliseconds. You need to know, in your system, what 0 milliseconds is equal to. It may be Jan 1, 1970. That will give you a datum from which you can caculate your dates. I don't have access to a server right now, or I would try it myself.

RE: cfcomponent state persistence

2005-04-28 Thread Dawson, Michael
If you use cfobject or createObject(), you can store the object instance in the application or session scopes for later use. That will let you use the objects on subsequent requests. If you don't name the instance, or don't use the named instance, CF will create new calls to the objects in later

RE: AV on CF servers

2005-04-28 Thread Dawson, Michael
We use Sophos. No problems as far as I have noticed. Same config as your except we are already on CF7. M!ke -Original Message- From: Jacob [mailto:[EMAIL PROTECTED] Sent: Thursday, April 28, 2005 2:38 PM To: CF-Talk Subject: AV on CF servers Now. What do you guys use for AV on CF

RE: longer than a varchar2

2005-04-29 Thread Dawson, Michael
When I need to store unlimited amounts of text, I usually create a separate table like this: Notes - ID (sequential value) FK (links to a parent table) TextValue (varchar 4000) Then, break up the text into 4000-byte chunks and insert them into the table. I also store the related foreign key

RE: longer than a varchar2

2005-04-29 Thread Dawson, Michael
package, to hell with them. ;^) M!ke -Original Message- From: S. Isaac Dealey [mailto:[EMAIL PROTECTED] Sent: Friday, April 29, 2005 11:25 AM To: CF-Talk Subject: RE: longer than a varchar2 -Original Message- From: Dawson, Michael [mailto:[EMAIL PROTECTED] Sent: Friday, 29

RE: longer than a varchar2

2005-04-29 Thread Dawson, Michael
Are they downsizing you while they're at it or giving you other things to do? Oh, no. I'm still here. *Someone* has to push the Create Web Site Wizard button. I'm more than skilled for that job. M!ke ~| Logware

RE: Any commercial CF products that could do this?

2005-04-29 Thread Dawson, Michael
A coworker of mine just left to work at another college. He, at first, thought PHP was the cat's ass. After less than a week, he is not at all impressed. Now, he is trying to get them switched to CF. M!ke -Original Message- From: Mike Nimer [mailto:[EMAIL PROTECTED] Sent: Friday,

RE: Data Warehousing - Help a newbie

2005-05-02 Thread Dawson, Michael
I'm not sure where you are with this project or if you will pull data from multiple sources, but look at Embarcadero's tools. They have a great offering. M!ke -Original Message- From: Caroline Wise [mailto:[EMAIL PROTECTED] Sent: Monday, May 02, 2005 4:20 PM To: CF-Talk Subject: SOT:

RE: Aggregating Errors

2005-05-03 Thread Dawson, Michael
I do something similar in that I use a stand-alone CFC that holds any error information. Internally, it is stored in an array of structures. It's pretty simple, but it comes in very handy. I, as well as many others, ran into a similar solution with typed CFC instance variables, getters and

RE: Basic web interface question

2005-05-05 Thread Dawson, Michael
How about an iframe on the same page? When you search for an item, then click on it, the iframe is populated with the detailed data. Then, you can submit that form, but stay on the search results as well. M!ke -Original Message- From: Dave Merrill [mailto:[EMAIL PROTECTED] Sent:

RE: Basic web interface question

2005-05-05 Thread Dawson, Michael
Other ideas? This is somewhat related, but I usually provide two save buttons: Save and Close and Save and New. Close will take you back to a list. New will submit the form and then present a blank form for the next entry. M!ke

RE: Basic web interface question

2005-05-05 Thread Dawson, Michael
It's been a while since I toyed with iframes, but I somehow remember that I could never get rid of a scroll bar in IE. Even if my content was smaller than the iframe, the scroll bar was always there. Iframes aside, what if you use full-blown frames to do this? If this is a widely-used public

RE: CFFILE destination error

2005-05-06 Thread Dawson, Michael
I have used UNC paths. Have you tried a trailing \ in your path? I remember that is/was required but not sure if in CFFILE paths. M!ke On 5/5/05, Daniel Kang [EMAIL PROTECTED] wrote: \\swintranet1\d$\Inetpub\wwwroot\RefPosting is the right destination, but I am getting this error. What

RE: More than one datasource in cfquery

2005-05-09 Thread Dawson, Michael
That depends on your definition of a database IBM's Unidata renamed database to account. Unidata's databases, so to speak, are directory structures. Some files in a base directory, others are in sub directories. If you want to see a whacked non-rdbms solution, you should read a whitepaper, or

RE: cfm startup script

2005-05-10 Thread Dawson, Michael
Some suggestions: * Use a scheduled task. Probably need a database to store the state. * Add code to application.cfm/.cfc when the application is created. (May get multiple notifications if an app times-out.) * Review Java command-line params to see if it will accept a startup script once the CF

RE: LDAP Authentication

2005-05-11 Thread Dawson, Michael
Yes, we need to know which ldap server. If it's Windows Active Directory, you don't need to run two queries. You only need to pass the username/password to the cfldap tag. Windows, by default, allows any authenticated user to query the directory. If the query works, you have a valid user. If

RE: XMLish question

2005-05-11 Thread Dawson, Michael
There are those who believe you should not use attributes in XML. That just about everything can be described using element tags. I am, sort of, one of those people. I would prefer to work with elements rather than attributes, even if it meant a few more levels of nesting. That's just the way

RE: Size of directory - WSH

2005-05-11 Thread Dawson, Michael
Cheers, you need to make sure you are running ColdFusion as an account that has permissions to perform these operations on the computer/server. M!ke -Original Message- From: Web Specialist [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 11:55 AM To: CF-Talk Subject: Size of

RE: LDAP Authentication

2005-05-11 Thread Dawson, Michael
One of the biggest issues is how the username (the unique identifier, in other words) is stored in the directory. Once you have that syntax, you are pretty much set. M!ke -Original Message- From: David Critchley [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 11, 2005 1:37 PM To:

RE: Date/Time Question

2005-05-13 Thread Dawson, Michael
Did you try any of the Parse Date/Time functions? If that doesn't work, you can always build a function to parse the date/time for you. This format looks like it should be consistent for all dates/times. M!ke -Original Message- From: Jim Rathmann [mailto:[EMAIL PROTECTED] Sent:

RE: Man, this is so OT...

2005-05-13 Thread Dawson, Michael
Black makes the wearer look thinner, so I would say black, unless it was 100 degrees outside, then I would say white. Black also hides the tomato stains from the local Italian eatery. M!ke -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Friday, May 13, 2005

RE: Man, this is so OT...

2005-05-13 Thread Dawson, Michael
Same here with no shaving unless absolutely necessary. A VP at this school once said how sharp can a person be if he looks like an un-shaven bum. I keep my Garanimals like up-to-date in my closet. No problems with bad color choices. A 71-year-old IT director/programmer once said that I should

RE: Man, this is so OT...

2005-05-13 Thread Dawson, Michael
May I ask why you ask? -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Friday, May 13, 2005 2:58 PM To: CF-Talk Subject: Re: Man, this is so OT... Excellent! This is really givin' me a good picture. Thanks, Will

RE: css positioning HELPPPPPPPPPPPPPPPPPPPPPPPPPP

2005-05-14 Thread Dawson, Michael
I agree with losing the dotted lines. When you scroll, they dotted lines end up being solid in some places and sparsely dotted. This is a video issue, but it's kind of annoying. M!ke ~| Discover CFTicket - The leading

RE: (Admin) layout change

2005-05-15 Thread Dawson, Michael
I would make the text on the left so that it doesn't split at the hyphens, if possible. Other than that, it looks great to me. M!ke -Original Message- From: Michael Dinowitz [mailto:[EMAIL PROTECTED] Sent: Sunday, May 15, 2005 1:04 PM To: CF-Talk Subject: Re: (Admin) layout change

RE: Studio 8 announced

2005-08-08 Thread Dawson, Michael
1. Disable shopping. 2. Enable libido. -Original Message- From: Jason Radosevich [mailto:[EMAIL PROTECTED] Sent: Monday, August 08, 2005 2:38 PM To: CF-Talk Subject: RE: Studio 8 announced That would be pretty cool.. sometimes i wish my G/F came that way :-)

RE: Studio 8 announced

2005-08-08 Thread Dawson, Michael
Ick. -Original Message- From: Mark A Kruger [mailto:[EMAIL PROTECTED] Sent: Monday, August 08, 2005 2:59 PM To: CF-Talk Subject: RE: Studio 8 announced Ah... I see - you want your girfriend to be less bloated... got it.

RE: Architecture thoughts

2005-08-09 Thread Dawson, Michael
We are currently working on a small project to test AJAX feasibility for us. We found that it is a great deal of work compared to simple page refreshes. However, the stuff is very cool and has some great potential. We do not use web services, so to speak. I created a simple page that returns

RE: Cfhttp vs web services

2005-08-10 Thread Dawson, Michael
I agree. Web Services, to me, are web pages that provide output that is generally not seen by an individual. I created a simple application where a CF page queried an ASP page on our Exchange server. The ASP page gathered a bunch of mailbox information for a user, wrapped it up in a simple XML

RE: problem displaying *.cfc?wsdl with internet explorer

2005-08-10 Thread Dawson, Michael
Recently, I have not been able to view *any* XML files in IE. I can't even view the source of an XML file. Something changed in IE that broke it. I can still view XML in Firefox, however. It certainly pisses me off. It may be your same problem. M!ke -Original Message- From: Gabriel

RE: Fetching a website?

2005-08-10 Thread Dawson, Michael
Start reading up on CFHTTP and Regular Expressions. CFHTTP will convert all links to fully-qualified links (if you set the appropriate attribute) and the regular expressions will find all links within the document. M!ke -Original Message- From: housi mueller [mailto:[EMAIL PROTECTED]

Consistency of Submitted Form Fields

2005-08-11 Thread Dawson, Michael
When a form is submitted, the form.fieldNames variable contains the fields in the same order as they appear on the form page itself. Can I actually always count on this to be true? Is this a per-browser implementation or is it a standard? Is there a good chance that CF will one day sort the

RE: Consistency of Submitted Form Fields

2005-08-11 Thread Dawson, Michael
We are building a simple form mailer script and would like to email the form fields in the same order as they appear on the page. One solution I thought of would be to specify a list of the form fields in the specific order. However, that leads to duplication of code and then what happens when I

RE: Consistency of Submitted Form Fields

2005-08-11 Thread Dawson, Michael
Also, let me add that the web designer also wants field names to contain spaces and colons to help control formatting and other display properties. I think this can be pretty flexible, but to me, it seems like a mish-mash of worst-practices. ;^) All in all, the form mailer will only be used by

RE: FORM scope into SESSION

2005-08-11 Thread Dawson, Michael
cfset session.form = form M!ke -Original Message- From: Asim Manzur [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 2:04 PM To: CF-Talk Subject: FORM scope into SESSION Hi, What is the easiest way to take all the form variables (probably loop over) and put it on the session.

RE: FORM scope into SESSION

2005-08-11 Thread Dawson, Michael
I wondered about that, too. Thanks for clarifying. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 2:18 PM To: CF-Talk Subject: RE: FORM scope into SESSION IIRC I ran into that vary problem. Session.form = form does indeed just create a

RE: raw XML text of a node??

2005-08-13 Thread Dawson, Michael
, Dawson, Michael [EMAIL PROTECTED] wrote: I wondered about that, too. Thanks for clarifying. -Original Message- From: Ian Skinner [mailto:[EMAIL PROTECTED] Sent: Thursday, August 11, 2005 2:18 PM To: CF-Talk Subject: RE: FORM scope into SESSION IIRC I ran into that vary problem

RE: DBASE coldfusion 4 problem

2005-08-13 Thread Dawson, Michael
This may be too obvious, but I fall for it occasionally, but do you have the file open for reading, in a different program, while you are trying to insert the data with CF? -Original Message- From: Connie DeCinko [mailto:[EMAIL PROTECTED] Sent: Saturday, August 13, 2005 7:22 PM To:

RE: Ajax and CFCs

2005-08-14 Thread Dawson, Michael
Did you Google CFAJAX yet? -Original Message- From: wolf2k5 [mailto:[EMAIL PROTECTED] Sent: Sunday, August 14, 2005 6:21 AM To: CF-Talk Subject: Ajax and CFCs Hi, Do you know any example on how to integrate an AJAX web interface with ColdFusion Components? Do you know any good AJAX

Cisco IP Phone Services

2005-08-14 Thread Dawson, Michael
Has anyone, on this list, created any XML services for their Cisco IP phone system? I created a simple test which worked great, now I'm wondering what others have used their IP phones for that was easier than using their computer. For example, our Cisco phones came with the CNN news, stock

RE: Cisco IP Phone Services

2005-08-15 Thread Dawson, Michael
Services Dawson, Michael wrote: I am trying to think of good, value-added, ideas for our phones since the higher-ups have requested some services that take advantage of the phone's abilities. Some of my thoughts are: * A list of movies showing at a local cinema. * School closings/delays

RE: Cisco IP Phone Services

2005-08-15 Thread Dawson, Michael
Hey! These are some great ideas! I will run these ideas past mgt and see what they say. We have been toying with the notion of an idle screen that can appear after a certain number of seconds. We are not sure if the people will want to clear the screen before they make a call, however. M!ke

RE: Cisco IP Phone Services

2005-08-15 Thread Dawson, Michael
Dieten [mailto:[EMAIL PROTECTED] Sent: Monday, August 15, 2005 10:24 AM To: CF-Talk Subject: Re: Cisco IP Phone Services Dawson, Michael wrote: Unfortunately, only the phone administrator has the color screen the rest can only handle four shades of gray. Good idea, though. You're kidding

RE: Language...

2005-08-15 Thread Dawson, Michael
Not to disagree with what Rey said, but there are also extremes that people go to just to exercise their right to a non-harrassing workplace. Most people exclaim, Harrassment! only if they see that it benefits them. We have a very old computer programmer named Manfred that works for our

Month and Day Only in Query

2005-08-16 Thread Dawson, Michael
In our AS400 DB2 table, we have our dates stored in a canonical format such as MMDD or 20050816. I need to pull a list of birthdays, not actual birthdates, and excluding years, from this table. In other words, I need to get all birthdays for 0816 through 0822. This is easy enough when the

RE: Stat app recommendation

2005-08-18 Thread Dawson, Michael
This is an excellent product for only $80. http://www.weblogexpert.com/ We had WebTrends, but they changed their license scheme from server-based, to the number of hits they capture. This would cost us around $3,500 each year to keep WebTrends. You have to buy a license pack in amounts of

  1   2   3   4   5   6   7   8   9   10   >