basic help with IIS/CF7

2007-06-22 Thread Tim Laureska
Just installed CFMX 7 IIS on a new W2k3 machine – I’m trying to access CFM files from a client machine running studio but I can only browse html files, not cfm files Getting the classic message – “ The cold fusion file you are trying to access cannot be resolved to a url. Please add a

legal resources re site code ownership

2007-01-31 Thread Tim Laureska
I hope this isn't too far off topic. does anyone have any online resources that talks about site code ownership, particularly when no written contract exists Thanks Tim ~| Upgrade to Adobe ColdFusion MX7 Experience Flex

Another DDOS attack on CT??

2006-12-03 Thread Tim Laureska
Having a hard time with Crystaltech servers again this evening.. anybody experiencing the same? ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers,

RE: OT: IE Issue

2006-11-10 Thread Tim Laureska
Are you'all talking about IE 7? -Original Message- From: Dave Lyons [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 1:34 PM To: CF-Talk Subject: Re: OT: IE Issue Yes, im having that problem on a cart right now, the links actually temperarily disappear as well. Does anyone

RE: OT: IE Issue

2006-11-10 Thread Tim Laureska
are there, and if you hover over it you can see the link but nothing happens when You click on it. You have to right click and then say Open In New Window -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Friday, November 10, 2006 2:47 PM To: CF-Talk Subject: RE: OT: IE Issue

emergency need - time format

2006-11-07 Thread Tim Laureska
How do I add 2 hrs to the output of a #timeformat# Thanks in advance ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your door

RE: emergency need - time format

2006-11-07 Thread Tim Laureska
[EMAIL PROTECTED] wrote: Look for DateAdd('D',2,now()) Senior Coldfusion Developer Aegeon Pty. Ltd. www.aegeon.com.au Phone: +613 8676 4223 Mobile: 0404 998 273 -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Wednesday, 8 November 2006 11:20 AM To: CF

RE: Galleon ColdFusion Forums updated

2006-11-04 Thread Tim Laureska
Hail ! -Original Message- From: Rick Root [mailto:[EMAIL PROTECTED] Sent: Saturday, November 04, 2006 7:58 AM To: CF-Talk Subject: Re: Galleon ColdFusion Forums updated Raymond Camden wrote: Many of the new features are based on Rick Root's CFMBB, which was based on Galleon, so it's

RE: Noob MSAccess query struggle

2006-10-22 Thread Tim Laureska
Yes, and if the id field is numeric, not sure using the apostrophes around #id# will work correctly... using apostrophes is usually reserved for text fields I believe -Original Message- From: Michael Traher [mailto:[EMAIL PROTECTED] Sent: Sunday, October 22, 2006 3:55 AM To: CF-Talk

CF SQL question

2006-10-05 Thread Tim Laureska
I hope this is an easy one. using SQL Server 2000.. Have a query trying to test for empty fields. tried the following and other variations but no luck: where members.speakers IS NOT Get this error: [Macromedia][SQLServer JDBC Driver][SQLServer]Cannot use empty object or column

RE: CF SQL question

2006-10-05 Thread Tim Laureska
I'm testing for empty fields in the sql query - - - I've tried this: select field1, field2 from table1 where field1!= and still get: Macromedia][SQLServer JDBC Driver][SQLServer]Cannot use empty object or column names. Use a single space if necessary. -Original Message- From: Kris

RE: CF SQL question

2006-10-05 Thread Tim Laureska
Empty string -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Thursday, October 05, 2006 9:02 AM To: CF-Talk Subject: RE: CF SQL question Are you truly testing for an empty string, or are you trying to test for NULL? -Original Message- From: Tim Laureska

RE: CF SQL question

2006-10-05 Thread Tim Laureska
I found what was causing the problem and maybe someone can explain why - -the field was originally set as a text field... I changed it to nvarchar and the error went away using: where members.speakers '' the error appeared using the above code until I made that field data type change

pulling SQL Server data back to local drive

2006-09-11 Thread Tim Laureska
Hello All. I have a site using crystal tech SQL server - data has been entered live on the net into the DB. how can I import or otherwise get that data back to my local drive SQL server DB? Thanks in Advance Tim ~|

RE: pulling SQL Server data back to local drive

2006-09-11 Thread Tim Laureska
Call to crystaltech solved this prob! -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Monday, September 11, 2006 8:24 AM To: CF-Talk Subject: pulling SQL Server data back to local drive Hello All. I have a site using crystal tech SQL server - data has been entered

page breaks for printing

2006-08-23 Thread Tim Laureska
I have a page that returns a couple hundred records that I want to print . some of the records' info crosses over onto the next page. how can I create clean page breaks for printing so that no one record spans two pages Thanks in advance Tim

RE: Database design question

2006-08-21 Thread Tim Laureska
Hey Doug... I know this isn't a direct answer to your question, but something for the future - - get this book... it made everything pretty clear for relational databases: Database Design for Mere Mortals . . by Michael Hernandez -Original Message- From: Doug Brown [mailto:[EMAIL

30 days from now date variable

2006-08-03 Thread Tim Laureska
How do you set a variable to be 30 days from today? Tim Laureska ~| Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting, up-to-date ColdFusion information by your peers, delivered to your

RE: 30 days from now date variable

2006-08-03 Thread Tim Laureska
Thanks to all that responded!!! Tim Laureska -Original Message- From: Everett, Al (NIH/NIGMS) [C] [mailto:[EMAIL PROTECTED] Sent: Thursday, August 03, 2006 11:43 AM To: CF-Talk Subject: RE: 30 days from now date variable cfset myVar=dateAdd(d,30,now()) -Original Message

RE: WYSIWYG Editor

2006-06-12 Thread Tim Laureska
Uuhh.. just curious, what are i18n requirements ? -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Monday, June 12, 2006 7:56 AM To: CF-Talk Subject: Re: WYSIWYG Editor Thanks, I'll keep that in mind if we run into i18n requirements, which is bound to happen

CFFILE excel output/query help needed

2006-03-07 Thread Tim Laureska
FROM member_profile WHERE member_profile.yp_id=#QueryName.yp_id# /cfquery cfset str= cfloop query=interests2 cfset str=str BR #interests2.interest# #interest#br /cfloop /td /tr addnewline=yes /cfloop /cfoutput Tim Laureska 1st-String Technologies

null query prob

2006-03-01 Thread Tim Laureska
When I run this query I get sl_applicant is UNDEFINED. could someone enlighten me :-) cfquery datasource=#datasource# name=appl_info SELECT sl_applicant.*, states.* FROM sl_applicant cfif sl_applicant.state_hm IS NOT NULLINNER JOIN states ON

RE: null query prob

2006-03-01 Thread Tim Laureska
On 3/1/06, Tim Laureska [EMAIL PROTECTED] wrote: When I run this query I get sl_applicant is UNDEFINED. could someone enlighten me :-) cfquery datasource=#datasource# name=appl_info SELECT sl_applicant.*, states.* FROM sl_applicant cfif sl_applicant.state_hm

RE: IS NULL VS = NULL

2006-02-09 Thread Tim Laureska
Hey Will... I've experienced the same thing and would be curious to know as well... I've just chalked it up to just being a pure syntax thing... nothing more than that's just the way it is in SQL server... let's see if anybody can clarify Tim -Original Message- From: Will Tomlinson

RE: SOT: Credit Card Merchant questions.

2006-01-31 Thread Tim Laureska
Anybody had any experience with a quickbooks merchant account ? ... I understand their discount rate is pretty low -Original Message- From: John C. Bland II [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 31, 2006 7:17 PM To: CF-Talk Subject: Re: SOT: Credit Card Merchant questions.

undeliverable mail

2006-01-29 Thread Tim Laureska
How would one get a list of undeliverable emails sent via cfmail in a shared server environment? Thanks in advance Tim ~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:230698 Archives:

RE: undeliverable mail

2006-01-29 Thread Tim Laureska
Dieten [mailto:[EMAIL PROTECTED] Sent: Sunday, January 29, 2006 3:21 PM To: CF-Talk Subject: Re: undeliverable mail Tim Laureska wrote: How would one get a list of undeliverable emails sent via cfmail in a shared server environment? If you don't spool (spoolEnable attribute) cfmail will throw

html email newsletters via CF

2006-01-26 Thread Tim Laureska
Hello Before I go off recreating the wheel possibly, I wanted to know if there was any good CF based email newsletter templates/systems out there. will be about 800 recipients on a crystal tech shared server environment running CF7 thanks Tim

intranet project

2006-01-11 Thread Tim Laureska
I've been asked to quote on an intranet project that will involve a Win 2003 server/SQL server based in one city with multiple users throughout the states. they want to access that server (which will run CFMX server) via CF apps to be developed... Are there any recommendations on the best way to

RE: intranet project

2006-01-11 Thread Tim Laureska
About 10 Tim Laureska 1st-String Technologies -Original Message- From: John McKown [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 11, 2006 4:19 PM To: CF-Talk Subject: Re: intranet project How many users? -- John McKown President/CEO Delaware.Net, Inc. Toll-Free: 888-432-7965

RE: cf open shopping cart

2006-01-10 Thread Tim Laureska
Hear hear! Mike Same experience I had and that's not being critical just a factual observation. I too wanted to learn from and participate in such a project b/c I'm a sole developer who doesn't have that group project opportunity. But after a several days of seeing the same thing you saw, it

Intranet project

2006-01-10 Thread Tim Laureska
I've been asked to quote on an intranet project that will involve a Win 2003 server/SQL server based in one city with multiple users throughout the states. they want to access that server (which will run CFMX server) via CF apps to be developed... Are there any recommendations on the best way to

apostrophe in access db field

2006-01-09 Thread Tim Laureska
If you have an apostrophe in an access db text or memo field it shows as a block or question mark in Internet Explorer. how can you work around that? Tim ~| Message:

RE: apostrophe in access db field

2006-01-09 Thread Tim Laureska
that should handle this. On 1/9/06, Tim Laureska [EMAIL PROTECTED] wrote: If you have an apostrophe in an access db text or memo field it shows as a block or question mark in Internet Explorer. how can you work around that? Tim

RE: apostrophe in access db field

2006-01-09 Thread Tim Laureska
on Macromedia.com. Here's the URL for the tag: http://www.macromedia.com/cfusion/exchange/index.cfm#view=sn106viewName =Exchange%20Search%20Detailsloc=en_usauthorid=35342110page=0scrollPo s=0subcatid=0snid=sn106itemnumber=0extid=1000714catid=0 Or: http://tinyurl.com/92vy8 Tim Laureska wrote: Ray

stripASCII.cfm

2006-01-09 Thread Tim Laureska
Ok. got this tag off DevEx in an effort to cull out apostrophes from a text string in an access db field.. I'm fumbling with this UDF. If anyone is familiar with this tag, I'd appreciate your assistance Getting this error: Element HASENDTAG is undefined in THISTAG.

RE: stripASCII.cfm

2006-01-09 Thread Tim Laureska
Custom tags in CF 7 go where? And why do you say STRIP=no -wouldn't you want yes to string out the ascii stuff? I guess I'm not understanding what strip=yes|no means Tim Laureska 1st-String Technologies -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Monday

RE: stripASCII.cfm

2006-01-09 Thread Tim Laureska
indicates whether or not an end tag is present. Looks like the tag you are using was made to be used as: cf_tag ... . /cf_tag If your tag does not use an end tag, just rip out that processing. --- Ben -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Monday

RE: stripASCII.cfm

2006-01-09 Thread Tim Laureska
The stripascii.cfm tag is in the same directory yes and here's the code I'm putting in the template cfoutput CF_StripASCII STRING=#performed_by# OUTPUT=newString STRIP=yes #newString# /cf_StripASCII /cfoutput and getting this: Element HASENDTAG is undefined in THISTAG. 26 : CFIF (Not

RE: stripASCII.cfm

2006-01-09 Thread Tim Laureska
Plus I'm using a cfinclude statement to reference the custom tag Tim Laureska 1st-String Technologies -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 5:52 PM To: CF-Talk Subject: Re: stripASCII.cfm OK...code time. Show us your code

RE: stripASCII.cfm

2006-01-09 Thread Tim Laureska
: stripASCII.cfm Why? Just use it as they tell you, don't go creating all kinds of problems for yourself by adding your own syntax. Tim Laureska wrote: Plus I'm using a cfinclude statement to reference the custom tag Tim Laureska 1st-String Technologies -Original Message

RE: stripASCII.cfm

2006-01-09 Thread Tim Laureska
Here it is below... no cfinclude this time and the StripASCII.cfm file is in the same directory as the using template cfoutput CF_StripASCII STRING=#performed_by# OUTPUT=newString STRIP=no #newString# /cfoutput thanks for stickin' with me on this Ray... I know its just something stupid I'm

RE: stripASCII.cfm

2006-01-09 Thread Tim Laureska
Then it says #performed_by# is undefined Tim Laureska 1st-String Technologies -Original Message- From: Ray Champagne [mailto:[EMAIL PROTECTED] Sent: Monday, January 09, 2006 6:35 PM To: CF-Talk Subject: Re: stripASCII.cfm Try taking it out of the cfoutput tags, ie: CF_StripASCII

greater than date query ?

2006-01-05 Thread Tim Laureska
Trying to setup a where statement for an access database query. essentially I need to modify this somehow to make it work right: Where (register_date = 10/1/2005) Need to know what syntax to use for the 10/1/2005 The access date field is in the Date/Time format Thanks Tim

RE: greater than date query ?

2006-01-05 Thread Tim Laureska
')#) Or Where (register_date = #createodbcdatetime('10/1/2005')#) ...:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:.:. Bobby Hartsfield http://acoderslife.com -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Thursday, January 05, 2006 11:57 AM To: CF-Talk Subject: greater than

retrieve data from foxpro db

2005-12-17 Thread Tim Laureska
I have to pull some data from a foxpro DB on a local network server and then import it into a sql server db for CF access. has anyone had experience with something like this and could give a pointer on what a good approach would be - mainly interested in what a good mechanism for getting that

RE: Calendar Module

2005-12-10 Thread Tim Laureska
http://cfopen.org/projects/coldcalendar/ -Original Message- From: Dwayne Cole [mailto:[EMAIL PROTECTED] Sent: Saturday, December 10, 2005 9:45 AM To: CF-Talk Subject: Calendar Module I am looking for some code that builds a small calendar display. A basic version that creats the

RE: Love 2 Eat Turrrrrrkeyyyyyyyyy

2005-11-24 Thread Tim Laureska
Back at ya Will ! -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Thursday, November 24, 2005 5:53 AM To: CF-Talk Subject: Love 2 Eat Turrkey Just wanted to say Happy Thanksgivin' to everybody! We have a ton of everyday give'ers in here that deserve

RE: Love 2 Eat Turrrrrrkeyyyyyyyyy

2005-11-24 Thread Tim Laureska
Man, we watch plains trains and automobiles every thanksgiving . . watched it last night... still laughing this AM ! -Original Message- From: Peter Tilbrook [mailto:[EMAIL PROTECTED] Sent: Thursday, November 24, 2005 7:11 AM To: CF-Talk Subject: RE: Love 2 Eat Turrkey As an

RE: Sending Faxes through Cold Fusion

2005-11-17 Thread Tim Laureska
Me too plz - plz -Original Message- From: Justin D. Scott [mailto:[EMAIL PROTECTED] Sent: Thursday, November 17, 2005 10:02 AM To: CF-Talk Subject: RE: Sending Faxes through Cold Fusion I wrote a small app in Visual Basic a few years ago that did exactly that. I might still have that

RE: Cf forum

2005-11-16 Thread Tim Laureska
Yeah... its gr8... struggled a bit with user authentication in a sql server db environment - I wanted to have a user that was already authenticated thru a login also authenticated for Galleon... took a little doingmaybe ease that process a bit - although I'm not the most advanced user...

scheduled task - Crystal Tech

2005-11-13 Thread Tim Laureska
I'm using Crystal Tech's scheduled task feature in their control panel - however the template I'm trying to schedule won't execute b/c the directory its in requires a login (via application.cfm) I've even tried adding code to the top of the page that is scheduled to indicate that the user is

RE: scheduled task - Crystal Tech

2005-11-13 Thread Tim Laureska
is, the file will never get executed. Russ -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: 13 November 2005 12:46 To: CF-Talk Subject: scheduled task - Crystal Tech I'm using Crystal Tech's scheduled task feature in their control panel - however the template I'm trying

RE: Open source shopping cart

2005-11-10 Thread Tim Laureska
Dave... I'm one of those non-experts for sure and agree with your initial couple of paragraphs assuming that NOT using OO (or any other more sophisticated coding methods) compromises the value of the final product in the future. If OO is the way to go, I can step aside, watch and maybe learn

RE: Open source shopping cart

2005-11-10 Thread Tim Laureska
Who's in charge? -Original Message- From: Snake [mailto:[EMAIL PROTECTED] Sent: Thursday, November 10, 2005 7:23 AM To: CF-Talk Subject: RE: Open source shopping cart Tim, see my other misc posts on this topic, I have already set the ball rolling. -Original Message- From: Tim

RE: Open source shopping cart

2005-11-09 Thread Tim Laureska
I'll help... ain't the most experienced but will help however - hope to learn from the experience Tim -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 09, 2005 9:03 PM To: CF-Talk Subject: re: Open source shopping cart I'm on board and hopefully some

RE: Open source shopping cart

2005-11-09 Thread Tim Laureska
Not slow in U.S.A. -Original Message- From: Mike | NZSolutions Ltd [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 09, 2005 10:14 PM To: CF-Talk Subject: RE: Open source shopping cart Yes, the forum is incredibly slow here in NZ. How are others finding it? I agree, go 6 (or =6).

RE: what do you use instead of cfx_openimage?

2005-11-04 Thread Tim Laureska
Is Alagad capable of automatically resizing an image uploaded by someone to a site? I would imagine so, but just checking -Original Message- From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Friday, November 04, 2005 6:29 AM To: CF-Talk Subject: Re: what do you use instead of

RE: what do you use instead of cfx_openimage?

2005-11-04 Thread Tim Laureska
Pete... I guess I would ask the same question about the tmt_img component... Does it have the capabilities to automatically resize an image uploaded by someone to a site? Thanks Tim -Original Message- From: Pete Ruckelshaus [mailto:[EMAIL PROTECTED] Sent: Friday, November 04, 2005 6:42

RE: Forums w/external authentication

2005-10-16 Thread Tim Laureska
Hello Raymond... I am trying to integrate your Galleon forum into one of my site (MSSQL)... quick question related to this topic... are these role values in a table? If so, what table? Thanks Tim -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Sunday, October 16,

getting rid of spaces in file names

2005-10-11 Thread Tim Laureska
Had not run been exposed to this problem before... using CFMail to send jpg files to designated recipients (and CFILE to record the file names)... if there's a space in the file name like my photo.jpg, that jpg is not sent via cmail can someone give me a quick tip on how to deal with this

RE: getting rid of spaces in file names

2005-10-11 Thread Tim Laureska
, or are people uploading it from a form, or...? -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 11, 2005 8:41 AM To: CF-Talk Subject: getting rid of spaces in file names Had not run been exposed to this problem before... using CFMail to send

RE: image manipulation in coldfusion?

2005-10-05 Thread Tim Laureska
Anyone have imageCR3 setup on a shared hosting environment? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 05, 2005 9:00 AM To: CF-Talk Subject: RE: image manipulation in coldfusion? +3 I have used imageCR3 and the quality is awesome, that

a little loop help plz

2005-10-02 Thread Tim Laureska
I've got a form that passes two variable lists: 1) Product id (could be up to 3 different product id's) 2) Quantity of product corresponding to the product name: I'm trying to insert the product ids and the product quantities into the same table. I can break down and insert one variable list

RE: a little loop help plz

2005-10-02 Thread Tim Laureska
/ Quantity: #ListGetAt(quantities, i)# /p /cfoutput /cfloop Swap in your SQL code and away you go. Ade -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: 01 October 2005 22:43 To: CF-Talk Subject: a little loop help plz I've got a form that passes

time zone correction

2005-09-28 Thread Tim Laureska
The web server I'm using is on the west coast of US...we're on the east coast Obviously there is a time zone difference, which I'm trying to address.. Need to put the east coast time in a cfmail doc Can anyone recommend a way to adjust the time in the cfmail doc by 3 hours? I've tried adding

RE: time zone correction

2005-09-28 Thread Tim Laureska
Thanks Ryan... I'll check that out -Original Message- From: Ryan Guill [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 28, 2005 10:10 AM To: CF-Talk Subject: Re: time zone correction dateadd() http://livedocs.macromedia.com/coldfusion/7/htmldocs/0437.htm On 9/28/05, Tim

RE: time zone correction

2005-09-28 Thread Tim Laureska
In my area yes, but as you say there would need to be DST adjustments for other locales -Original Message- From: Paul Hastings [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 28, 2005 10:37 AM To: CF-Talk Subject: Re: time zone correction Ryan Guill wrote: sorry for such a breif

RE: JS and Checkbox Select

2005-09-15 Thread Tim Laureska
SCRIPT LANGUAGE=JavaScript !-- Begin function checkAll() { var el = document.forms[0].elements; for(var i = 0 ; i el.length ; ++i) { if(el[i].type == checkbox) { el[i].checked = true; } } } function unCheckAll() { var i=0; for( i=0 ; idocument.forms[0].elements.length; i++) {

numbers with decimal places to the right

2005-09-02 Thread Tim Laureska
Embarrassed to ask, but can't figure it out: Trying to insert a number such as 2.65 into a MSSql server db using this: Form: INPUT TYPE=TEXT NAME=current_price SIZE=10 value= Insert attempt: cfqueryparam cfsqltype=CF_SQL_numeric value=#form.current_price# but no matter what data type I seem

RE: numbers with decimal places to the right

2005-09-02 Thread Tim Laureska
To: CF-Talk Subject: Re: numbers with decimal places to the right What's the datatype of your column in the DB? Is it integral? If it's DECIMAL, how many spaces are allocated for fractional amounts? cheers, barneyb On 9/2/05, Tim Laureska [EMAIL PROTECTED] wrote: Embarrassed to ask, but can't

RE: numbers with decimal places to the right

2005-09-02 Thread Tim Laureska
, Tangorre, Michael [EMAIL PROTECTED] wrote: From: Tim Laureska [mailto:[EMAIL PROTECTED] Insert attempt: cfqueryparam cfsqltype=CF_SQL_numeric value=#form.current_price# Actually, I spoke too soon. Is the data type MONEY? If so, use MONEY in the queryparam

RE: numbers with decimal places to the right

2005-09-02 Thread Tim Laureska
OK... good to know -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, September 02, 2005 3:04 PM To: CF-Talk Subject: RE: numbers with decimal places to the right If you wanted a true decimal field (not money) then you would specify column type like this:

retaining checkbox selections

2005-09-01 Thread Tim Laureska
I'm sure this has been addressed many times before, but looking for the best way to have a user completing a multi-page form to retain their checkbox selections. In my scenario after completing the form, the user is given a verify information screen where they review all the information they have

who on this list works for nmha.org

2005-09-01 Thread Tim Laureska
I keep getting these replies sent back from nmha.org when I post to CFTALK: FROM: [EMAIL PROTECTED] Subject: Symantec Mail Security detected prohibited content in a message sent from your address Body: Subject of the message: RE: retaining checkbox selections Recipient of the message: CF-Talk

RE: retaining checkbox selections

2005-09-01 Thread Tim Laureska
Like cfparam name=whatever default= ? -Original Message- From: Bobby Hartsfield [mailto:[EMAIL PROTECTED] Sent: Thursday, September 01, 2005 1:43 PM To: CF-Talk Subject: RE: retaining checkbox selections Or just use cfparams for all the form fields at the top of each stepped page

RE: OT: Backup solution for small business?

2005-08-25 Thread Tim Laureska
One other option Dirk just build a DOS based backup .bat script file I do it with a number of small businesses using external alternating dual backup USB drives... they seems to like it... only issue is portability, tho not that big a deal DOS is free and easy to script Tim

RE: OT: Backup solution for small business?

2005-08-25 Thread Tim Laureska
:[EMAIL PROTECTED] Sent: Thursday, August 25, 2005 7:22 PM To: CF-Talk Subject: Re: OT: Backup solution for small business? On 8/25/05, Tim Laureska [EMAIL PROTECTED] wrote: One other option Dirk just build a DOS based backup .bat script I did that for years before I switched to SyncBack

RE: OT: Backup solution for small business?

2005-08-25 Thread Tim Laureska
Yeah, sound like in your case the DOS scenario was impractical... I've set up some Dantz stuff too - works pretty well, but I prefer to see the backup in its native form also -Original Message- From: Matt Robertson [mailto:[EMAIL PROTECTED] Sent: Thursday, August 25, 2005 7:51 PM To:

RE: bitching

2005-08-13 Thread Tim Laureska
Will for what its worth IMHO, the shirts are great and another piece of the puzzle for promoting CF - reminds me of that scene in Forrest Gump where Tom Hanks is running across the US and this guy comes up with his t-shirt and Tom cleans his face and the famous smiley face appears Maybe its an

RE: Going to MDCFUG Meeting?

2005-08-07 Thread Tim Laureska
Hmmm... I'm on the shore... what time's this mtg? -Original Message- From: Cutter (CF-Talk) [mailto:[EMAIL PROTECTED] Sent: Sunday, August 07, 2005 6:57 PM To: CF-Talk Subject: SOT: Going to MDCFUG Meeting? Is there anyone on the list from the Eastern Shore that is planning on

RE: Going to MDCFUG Meeting?

2005-08-07 Thread Tim Laureska
to MDCFUG Meeting? 6:30pm Tuesday night. I'm looking for a ride. My car could make it to Cambridge, but not to Rockville (got to get this thing into the shop...) Tim Laureska wrote: Hmmm... I'm on the shore... what time's this mtg? -Original Message- From: Cutter (CF-Talk) [mailto:[EMAIL

challenged by cfoutput group=

2005-07-26 Thread Tim Laureska
I have a query that pulls member information, including typical info such a name, address, etc - each member can belong to one or more clubs and can also be in one or more volunteer capacities There are 5 tables: Members - basic member info Clubs - list of clubs Volunteer categories - list of

CFMX 7 - DSN - MSSQL

2005-07-22 Thread Tim Laureska
Having a problem getting a MSSQL DSN setup in CFMX 7 (brand new install) I've tried various configurations and username/pw combinations... I'm logged in on this computer as the administrator of a w2k network domain and have entered that username/pw combo into the DSN settings and even tried the

RE: CFMX 7 - DSN - MSSQL

2005-07-22 Thread Tim Laureska
Found the answer on Stephen Crat's Talkingtree.com blog... can't have Windows only authentication for MSSQL JDBC driver in CFMX - have to set it up in mssql enterprise mgr to have windows and MSSQL security -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Friday

RE: CFMX 7 - DSN - MSSQL

2005-07-22 Thread Tim Laureska
The technote details the procedure for the update pretty well... although haven't gone thru the process yet It does make mention of inserting something specific within the JDBC URL http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=1a3c2ad0 -Original Message- From: Dave Watts

RE: Canadian CF hosting CC processing?

2005-06-29 Thread Tim Laureska
Take a look at experthost.com for hosting - I believe their in Canada (Ontario) and their now switching to CFMX for some of their servers at least -Original Message- From: Dirk Sieber [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 29, 2005 1:55 PM To: CF-Talk Subject: Canadian CF

RE: Ecom Advice

2005-06-17 Thread Tim Laureska
Authorize.net -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, June 17, 2005 11:19 AM To: CF-Talk Subject: RE: Ecom Advice Any suggestions on the transaction processing companies? Thanks. I suggest CFWebStore, it seems extremely

RE: Ecom Advice

2005-06-17 Thread Tim Laureska
extorting them (and others) with a continued DDOS. It was two weeks of on again, off again hell. Eventually, they had everything taken care of to prevent these type of attacks from happening again. Che -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Friday, June 17, 2005 2

RE: CF and Payment Gateways

2005-06-17 Thread Tim Laureska
Hope da bomb never blows up in our face :-) -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Friday, June 17, 2005 5:31 PM To: CF-Talk Subject: Re: CF and Payment Gateways authorize.net is da bomb! Easy to setup, good support docs. Will

RE: input type=image doesn't work in IE?

2005-06-12 Thread Tim Laureska
Have you tried just input name=submit instead of cfinput name=submit type=submit value=checkout -Original Message- From: Will Tomlinson [mailto:[EMAIL PROTECTED] Sent: Sunday, June 12, 2005 3:51 PM To: CF-Talk Subject: input type=image doesn't work in IE? I have a form baffling me

js help -drop down menus

2005-06-09 Thread Tim Laureska
Does anyone have a few minutes to help with understanding the javascript at http://www.cfug-sfl.org/readArticle.cfm?id=24 for implementation of a similar scenario on a site Tim ~| Logware (www.logware.us): a new and

RE: js help -drop down menus

2005-06-09 Thread Tim Laureska
half (FK_tblCategories = #GetCategories.Name#): -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Thursday, June 09, 2005 12:46 PM To: CF-Talk Subject: js help -drop down menus Does anyone have a few minutes to help with understanding the javascript at http

query error

2005-06-03 Thread Tim Laureska
Can't quite figure out why this would generate an error AND what Operation must use an updateable query means: Error Executing Database Query. [Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC Microsoft Access Driver] Operation must use an updateable query. The error occurred

RE: Shared CF Host security

2005-05-19 Thread Tim Laureska
Excellent idea Dave -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Thursday, May 19, 2005 6:07 PM To: CF-Talk Subject: RE: Shared CF Host security Mike D. At this point I might make a suggestion that you completely delete this thread before it gets googled. We know

RE: Shared CF Host security

2005-05-18 Thread Tim Laureska
Has anyone approached Crystaltech or Host My Site directly about this problem? -Original Message- From: James Holmes [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 18, 2005 4:10 AM To: CF-Talk Subject: RE: Shared CF Host security Quite right, with properly configured local accounts and

RE: Shared CF Host security

2005-05-18 Thread Tim Laureska
far and I got the usual rubbish about it's shared hosting so tough. They aren't going to fix it. -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Wednesday, 18 May 2005 5:39 To: CF-Talk Subject: RE: Shared CF Host security Has anyone approached Crystaltech or Host

RE: Shared CF Host security

2005-05-18 Thread Tim Laureska
the settings and it's all correct. Even though I've been able to prove them wrong on more than one occasion. -Original Message- From: Tim Laureska [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 18, 2005 2:39 AM To: CF-Talk Subject: RE: Shared CF Host security Has anyone approached

RE: Shared CF Host security

2005-05-18 Thread Tim Laureska
Dave... is the only way to beat this is get a dedicated box?... at least if your with CT or HMS Tim -Original Message- From: dave [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 18, 2005 6:54 PM To: CF-Talk Subject: Re: Shared CF Host security I got $10 that says its the same on your

help with Select dropdown list

2005-05-17 Thread Tim Laureska
I'm trying to create a set of dropdowns for ppl to modify existing categories they have associated with their membership, using a select box arrangement that looks like (code shown also): http://209.200.116.223/membership/member_area/category_testing3.cfm The problem is that only the 3rd table

  1   2   3   4   5   >