RE: Managing CFC's

2003-10-16 Thread Tangorre, Michael
I am not sure if this fits your style, but this is how I usually organize my sites. Root image stylesheet _javascript_ udf cfc etc Now, putting all your CFCs in a central location off the root of your site will allow you straightforward access to them ( root.cfc.cfcName ). HTH,

RE: Managing CFC's

2003-10-16 Thread Tangorre, Michael
root.cfc referenced, is it a mapping in an xml file or somewhere else? -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: 16 October 2003 11:07 To: CF-Talk Subject: RE: Managing CFC's I am not sure if this fits your style, but this is how I usually organize my sites

RE: Managing CFC's

2003-10-16 Thread Tangorre, Michael
Component I understand how to package java classes, but where is your scope root.cfc referenced, is it a mapping in an xml file or somewhere else? -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: 16 October 2003 11:07 To: CF-Talk Subject: RE: Managing CFC's I am

CF SQL Type

2003-10-16 Thread Tangorre, Michael
When is it appropriate to use:cfsqltype=CF_SQL_IDSTAMP Mike [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

CreateUUID() / CreateGUID()

2003-10-16 Thread Tangorre, Michael
I am noticing something strange here and am hoping someone can enlighten me.. My form has a field called userId which is hidden and holds an MS formatted UUID (----). For now though, I am just testing out the form and tried setting the form value equal to

RE: CreateUUID() / CreateGUID()

2003-10-16 Thread Tangorre, Michael
version. -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: 16 October 2003 16:23 To: CF-Talk Subject: CreateUUID() / CreateGUID() I am noticing something strange here and am hoping someone can enlighten me.. My form has a field called userId which is hidden and holds

RE: Sorting IP Addresses

2003-10-16 Thread Tangorre, Michael
Then you'd have to figure out how to put the periods back in... in the right places.:-) -Original Message- From: David Delbridge [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 3:34 PM To: CF-Talk Subject: Re: Sorting IP Addresses Thanks, guys.Unfortunately, everything must

RE: Sorting IP Addresses

2003-10-16 Thread Tangorre, Michael
I stand corrected :-) -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED] Sent: Thursday, October 16, 2003 3:44 PM To: CF-Talk Subject: RE: Sorting IP Addresses Well, if he _could_ do work after the query and before the display, he could easily make a structure where the

List slow?

2003-10-15 Thread Tangorre, Michael
Anyone else having problems with the list? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

cfstoredproc and cache

2003-10-15 Thread Tangorre, Michael
I tend to use stored procs even for select queries (especially ones involving views, and many tables) and always use cfstoredproc over calling the procedures using cfquery. The downside is that there is no direct way to cache the result set(s). So... Yesterday I started working on a CFC to load a

RE: cfstoredproc and cache

2003-10-15 Thread Tangorre, Michael
to run the store proc? cfquery name = sp_YourName datasource = YourDSN cachedwithin = #CreateTimeSpan(0,0,20,0)# EXEC YourStoredProc /cfquery _ From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 9:21 AM To: CF-Talk I tend to use stored procs even for select

RE: SOLVED! (MX 6.1) postgresql.cfm not found error

2003-10-15 Thread Tangorre, Michael
WOW, nice find. Sometimes you have to really dig around for the answers.:-) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 3:29 PM To: CF-Talk Subject: SOLVED! (MX 6.1) postgresql.cfm not found error Just wanted to pass the word

RE: html emails with javascript in outlook

2003-10-15 Thread Tangorre, Michael
such as??? -Original Message- From: Richard Crawford [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 3:51 PM To: CF-Talk Subject: Re: html emails with _javascript_ in outlook Kevin Graeme wrote: On a related, related note: the new Outlook 2003 will disable images from an

RE: html emails with javascript in outlook

2003-10-15 Thread Tangorre, Michael
anyways... -Original Message- From: Richard Crawford [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 15, 2003 4:03 PM To: CF-Talk Subject: Re: html emails with _javascript_ in outlook Tangorre, Michael wrote: such as??? Eudora.Pegasus.And, my personal favorite, Thunderbird, which

RE: IIF() and IsDefined()

2003-04-04 Thread Tangorre, Michael
try quotes around the argument passed to DE. DE(struct.keyname) should be DE('struct.keyname') mike -Original Message- From: Alexander Sherwood [mailto:[EMAIL PROTECTED] Sent: Friday, April 04, 2003 2:36 PM To: CF-Talk Subject: IIF() and IsDefined() Help: #IIF(StructKeyExists(struct,

RE: HTML Prob

2003-04-01 Thread Tangorre, Michael
input type=Text name=testBox value=ldquo; this is in quotes rdquo; -Original Message- From: Shahzad.Butt [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 01, 2003 10:03 AM To: CF-Talk Subject: HTML Prob How can I display text with in value of input tag Input type=text name=test

OT: LInk

2003-03-24 Thread Tangorre, Michael
sorry all.. i couldn't resist. http://www.coxar.pwp.blueyonder.co.uk/ ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: Getting XP Login Name?

2003-03-19 Thread Tangorre, Michael
doubtful. -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 8:34 AM To: CF-Talk Subject: RE: Getting XP Login Name? I woudl assume that if you can get to the registry you can get that info... -Original Message- From:

RE: Getting XP Login Name?

2003-03-19 Thread Tangorre, Michael
which keys are going to give you this information? -Original Message- From: Robertson-Ravo, Neil (RX) [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 9:09 AM To: CF-Talk Subject: RE: Getting XP Login Name? yes, it is possible, using cfregistry -Original Message- From:

RE: Using createUUID()

2003-03-17 Thread Tangorre, Michael
Use the current date and add random numbers to the end: 03172003nn where 'nnn' are the random numbers. To be honest with you... UUID is the way to go though, but this should work. #DateFormat(now(),mmdd)##Rand()##Rand()# -Original Message- From: FlashGuy [mailto:[EMAIL

RE: ok....im losin it...

2003-03-13 Thread Tangorre, Michael
could it be that neither of your cflocation tags have the url attribute set to cnn.com?! -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 9:39 PM To: CF-Talk Subject: okim losin it... cfif isDefined(session.csrId)

system integration

2003-03-12 Thread Tangorre, Michael
Hello List, I am developing an in house trouble ticket application for our help desk. This application will be used daily and quite heavily. Here is my question... The application will collect trouble ticket information form users when they call the help desk in regards to one of our online

RE: Using layers...div tags

2003-03-12 Thread Tangorre, Michael
You can use layers and CSS. Look into the visibility property in the DOM. That should get you started. Mike -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 12, 2003 11:04 AM To: CF-Talk Subject: Using layers...div tags Hi, I would like to duplicate

RE: Scripting Internet Explorer

2003-03-11 Thread Tangorre, Michael
Im sure if someone could have helped you, they would have offered some solutions or insight. This might get you started... http://www.tucows.com/preview/193807.html -Original Message- From: Aidan Whitehall [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 11, 2003 4:54 AM To: CF-Talk

error

2003-03-10 Thread Tangorre, Michael
Can anyone help me diagnose this... I am receiving this error from an app that I have hosted. and the server admins and tech support people can not resolve it. access denied (java.io.FilePermission C:\CFusionMX\wwwroot\WEB-INF\cfclasses\cfindex2ecfm1831581047.class read)

RE: wot:any mac people on tonight I can ask a general ? too?

2003-03-07 Thread Tangorre, Michael
http://filext.com/v.htm mike -Original Message- From: Dick Applebaum [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2003 6:30 AM To: CF-Talk Subject: Re: wot:any mac people on tonight I can ask a general ? too? Dave I am a Mac guy, what's a vcd file? Dick On Friday, March

RE: Sessions and CFMX still

2003-03-07 Thread Tangorre, Michael
what happens if you have a URL like this: index.cfm?fuseaction=users.currentuserslistType=desc does it add another ? to the end??? -Original Message- From: Bud [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2003 7:54 AM To: CF-Talk Subject: RE: Sessions and CFMX still On 3/6/03,

RE: Auto-populating form item

2003-03-07 Thread Tangorre, Michael
you need to use Javascript for this too work with no refresh. depending upon the amount of data you potentially could retrieve, this might not be a good idea. At anyrate, check out www.pengoworks.com for how to relate form elements and create structures allowing for what you desire to do. hth,

RE: cf_hacker

2003-03-07 Thread Tangorre, Michael
val() will help you. Also, using stored procs will help. -Original Message- From: Andy Ousterhout [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2003 11:17 AM To: CF-Talk Subject: RE: cf_hacker Doesn't cfqueryparam take care of this? -Original Message- From: Webmaster

RE: Installation problem with MX - HELP!!

2003-03-07 Thread Tangorre, Michael
Mike, yelling and having a bitter tone in your posts does not help the situation. calm down, and get a logical gameplan together. you seem to be too worked up for a friday :-) -Original Message- From: Michael Kear [mailto:[EMAIL PROTECTED] Sent: Friday, March 07, 2003 11:24 AM To:

RE: OT Domain registration

2003-03-06 Thread Tangorre, Michael
www.godaddy.com i am not sure about the free DNS... -Original Message- From: samcfug [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 8:32 AM To: CF-Talk Subject: Re: OT Domain registration Does anyone have a recommendation for a domain registrar, other than Network Solutions

RE: Cfcase

2003-03-06 Thread Tangorre, Michael
you are incorrect. You do not need to have a default case... if you do not have a case that matches your expression nothing happens. cfset name=ron cfswitch expression=#name# cfcase value=mikehi mike/cfcase cfcase value=earlhi earl/cfcase /cfswitch nothing is output because ron

RE: Comparing two listvars and deleting dups

2003-03-06 Thread Tangorre, Michael
i just emailed you off list a custom tag i wrote.. you should be able to modify it as needed. hth, mike -Original Message- From: Dowdell, Jason G [mailto:[EMAIL PROTECTED] Sent: Thursday, March 06, 2003 9:55 AM To: CF-Talk Subject: Comparing two listvars and deleting dups Anyone have

RE: New MM.com

2003-03-05 Thread Tangorre, Michael
it must work good then :-) -Original Message- From: Bruce H. Beinert [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 7:34 AM To: CF-Talk Subject: RE: New MM.com LOL!!! Old Skool -- Bruce H. Beinert p.808-637-0727m.917-627-4035 Web Development and Consulting:

RE: Interact with client file system

2003-03-05 Thread Tangorre, Michael
You can not create a file on the client smachine for obvious security reasons. However, you can create a file on the server. -Original Message- From: mike sullivan [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 9:42 AM To: CF-Talk Subject: Interact with client file system

RE: Rich Text Editor

2003-03-04 Thread Tangorre, Michael
does it need to be cross browser compatible? -Original Message- From: Scott Wilhelm [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 04, 2003 9:06 AM To: CF-Talk Subject: Rich Text Editor Does anyone know of any free rich text editors to build into a CMS (like a WYSIWYG)? Thanks,

OT SQL Question

2003-03-03 Thread Tangorre, Michael
Can someone assist me with a quick SQL statement. I have a table with 3 columns: A, B, C (A would be the primary key) I need to swap the values in column B with the values in column C and vice versa. TIA, Mike ~|

RE: OT SQL Question

2003-03-03 Thread Tangorre, Michael
BY authors.au_id, authors.au_lname ') wg -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: 03 March 2003 14:36 To: CF-Talk Subject: OT SQL Question Can someone assist me with a quick SQL statement. I have a table with 3 columns: A, B, C (A would be the primary key) I

RE: cfinput question

2003-02-28 Thread Tangorre, Michael
put this in with your button.. onclick=document.formname.fieldname.value = ; Mike -Original Message- From: Jacob [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 2:03 PM To: CF-Talk Subject: cfinput question Is there a way to... I have a cfinput field. When I click on

RE: Info on URL Parameter 'RequestTimeout'

2003-02-27 Thread Tangorre, Michael
I've only had luck putting it directly in the url. Mike -Original Message- From: Everett, Al [mailto:[EMAIL PROTECTED] Sent: Thursday, February 27, 2003 6:53 AM To: CF-Talk Subject: RE: Info on URL Parameter 'RequestTimeout' I don't have a definitive answer for this, but from what I've

RE: Force authentication screen

2003-02-27 Thread Tangorre, Michael
What you need to do is the following: When the user clicks the logout button, clear their session out, and send them outside of the secured area. For the closing of the browser, put this code into your application.cfm page: cfif IsDefined(Cookie.CFID) AND IsDefined(Cookie.CFTOKEN)

RE: Force authentication screen

2003-02-27 Thread Tangorre, Michael
-Talk Subject: RE: Force authentication screen Is there a one liner that clears out all the session variables for my logout.cfm template? On Thu, 27 Feb 2003 07:18:29 -0500, Tangorre, Michael wrote: What you need to do is the following: When the user clicks the logout button, clear

cf admin 4.01 (screwed up)

2003-02-26 Thread Tangorre, Michael
we are experiencing errors while trying to connect to the cfadministrator. The error below is what we encounter: ODBC Error Code = IM002 (Data source not found and no default driver specified) [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified Any

RE: cf admin 4.01 (screwed up)

2003-02-26 Thread Tangorre, Michael
in minutes -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 13:09 To: CF-Talk Subject: cf admin 4.01 (screwed up) we are experiencing errors while trying to connect to the cfadministrator. The error below is what we encounter: ODBC

RE: cf admin 4.01 (screwed up) - SOLVED

2003-02-26 Thread Tangorre, Michael
= http://www.phonebin.com From Phone to Web in minutes -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 26, 2003 13:24 To: CF-Talk Subject: RE: cf admin 4.01 (screwed up) originally happened

RE: CFC Expert Group?

2003-02-25 Thread Tangorre, Michael
Count me in. I think it is a good idea. -Original Message- From: Vince Bonfanti [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 25, 2003 9:03 AM To: CF-Talk Subject: CFC Expert Group? I've seen several discussions, all of which have the same general theme: Here's what's wrong with

OT - JS Question

2003-02-24 Thread Tangorre, Michael
Hey everyone, sorry for the OT post, but I figure someone might have a solution to my problem. I need a way to alert the user that they have made changes to one or more form fields if they attempt to exit the page before saving. does anyone know of a quick solution to this? Thanks, Mke

RE: Login tracking without cookies

2003-02-21 Thread Tangorre, Michael
Not at all. You can use sessions, you just have to append the cfid and cftoken to the url on each and every link and form action. Also, set the appropriate attributes in the cfapplication tag. hth, mike -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent:

RE: Best Way to Deal With Multiple Page Registration Form

2003-02-19 Thread Tangorre, Michael
You have a few options. As you go from form to form, you can save the previous forms values into hidden form fields which ultimately would get passed with the next form submission and so on. You do this by looping over the form.fieldnames list, or use a collection loop. There is a custom tag

CFMX Exam Questions

2003-02-07 Thread Tangorre, Michael
Did anyone use the CFMX Exam Buster from Centrasoft to prep for this exam? If so, were the questions similar in format? Thanks, Michael T. Tangorre ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4

Copying Structure? Reference/Value

2003-02-06 Thread Tangorre, Michael
can someone help me to understand the following: cfscript temp = StructNew(); /cfscript cfset newtemp = temp cfset temp.value = Hello cfset temp = 45 cfoutput #newtemp.value# #temp# /cfoutput according to some cfmx exam study questions, the output would read Hello 45 (without the

RE: Online Tutorials

2003-02-06 Thread Tangorre, Michael
http://livedocs.macromedia.com essentially what you will find here is all the documentation with examples. -Original Message- From: Scott Wilhelm [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 10:19 AM To: CF-Talk Subject: Online Tutorials Hello: I have recently

RE: who on here did the death clock?

2003-02-06 Thread Tangorre, Michael
the question is not how much code, but rather how many non CF related emails will be sent to the list :-) j/k -Original Message- From: cfhelp [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 10:51 AM To: CF-Talk Subject: RE: who on here did the death clock? I am going to

RE: Jeremy Allaire leaving MM

2003-02-06 Thread Tangorre, Michael
exactly. *blows dust of C# books* -Original Message- From: Adrocknaphobia Jones [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 10:57 AM To: CF-Talk Subject: RE: Jeremy Allaire leaving MM Man. I'm happy for Jeremy. Hopefully he can spend more time at home with his family

RE: Tabbed Interface in CF

2003-02-06 Thread Tangorre, Michael
do iframes work in netscape fully? -Original Message- From: John Stanley [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 11:13 AM To: CF-Talk Subject: RE: Tabbed Interface in CF You could have the tabs, when clicked load their own content into their own iframe that becomes

RE: How to use NumberFormat function?

2003-02-06 Thread Tangorre, Michael
http://livedocs.macromedia.com/cfmxdocs/CFML_Reference/functions-pt247.jsp#1110053 -Original Message- From: Murat Demirci [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 1:23 PM To: CF-Talk Subject: How to use NumberFormat function? I need to use NumberFormat function to

RE: Shopping Cart

2003-02-06 Thread Tangorre, Michael
get this book: http://www.amazon.com/exec/obidos/ISBN=0321125169/benfortascoldfusA/ there is a cart example in there.. follow the examples, and you will be good to go! -Original Message- From: Attley, Simon (CMG-SF) [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 06, 2003 1:38 PM

RE: Checking all form fields

2003-02-05 Thread Tangorre, Michael
yes. cfoutput cfloop list=#form.fieldnames# index=thisElement Form Element Name is - #thisElement# Form Element Value is - #Evaluate('form. thisElement')# /cfloop /cfoutput hth, Mike -Original Message- From: Thane Sherrington [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

RE: Checking all form fields

2003-02-05 Thread Tangorre, Michael
: Wednesday, February 05, 2003 8:37 AM To: CF-Talk Subject: RE: Checking all form fields you are correct, i should not have said no. -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 05, 2003 8:34 AM To: CF-Talk Subject: RE: Checking all form

reference and value

2003-02-05 Thread Tangorre, Michael
can someone help me to understand the following: cfscript temp = StructNew(); /cfscript cfset newtemp = temp cfset temp.value = Hello cfset temp = 45 cfoutput #newtemp.value# #temp# /cfoutput according to some cfmx exam study questions, the output would read Hello 45 (without the

Homesite+ and Browse Feature

2003-02-04 Thread Tangorre, Michael
Hello everyone. Can someone assist me in getting the browse tab to work in Homesite+. I have a partition I keep all my web stuff on D:\websites In the file viewer window i just navigate to the files and work them from there. If I go into the developer mapping area and add a mapping to

RE: Homesite+ and Browse Feature

2003-02-04 Thread Tangorre, Michael
can you clarify? Put what in the browser path? -Original Message- From: Thomas Chiverton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 9:08 AM To: CF-Talk Subject: Re: Homesite+ and Browse Feature On Tuesday 04 Feb 2003 13:54 pm, Tangorre, Michael wrote: D:\websites

(OT) - Database

2003-02-04 Thread Tangorre, Michael
Does anyone know where I could find an english word dictionary database to use in a spelling application. Thanks, Michael T. Tangorre MillenniuM Information Systems 1101 Wilson Blvd. Suite 1200 Arlington, Virginia 22209 O: 703-341-1438 C:

RE: CLOB and Incorrect Characters

2003-01-29 Thread Tangorre, Michael
hey kaz, you can't email your friends anymore. LOL -Original Message- From: Kazmierczak, Kevin [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 29, 2003 2:21 PM To: CF-Talk Subject: CLOB and Incorrect Characters Hello, We are having trouble with some Memo fields in Access

calling stored procedures

2003-01-24 Thread Tangorre, Michael
Is it faster to use the cfstoredproc tag or the cfquery tag for stored procs? ty, mike ~| Archives: http://www.houseoffusion.com/cf_lists/index.cfm?forumid=4 Subscription:

RE: MS Access - Replace a specific string value

2003-01-23 Thread Tangorre, Michael
http://livedocs.macromedia.com/cfmxdocs/CFML_Reference/functions-pt266.jsp#342 -Original Message- From: Casey C Cook [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 23, 2003 3:16 PM To: CF-Talk Subject: OT: MS Access - Replace a specific string value Hi all - I've run into

RE: IIS Virtual Domain

2003-01-22 Thread Tangorre, Michael
sure helps me! The whole IIS configuration arena is new gorund to me. Thanks! Mike -Original Message- From: Jeff Garza [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 10:59 AM To: CF-Talk Subject: Re: IIS Virtual Domain A lot depends on how you decide to set this up in

transactions

2003-01-22 Thread Tangorre, Michael
Hello everyone. I could use some thoughts on the following problem I am having. I have a query that deletes all records in a table with a certain value in the ID field. I then turn around and insert records back into the same table (some of which might be the same as I just deleted). What I

RE: transactions

2003-01-22 Thread Tangorre, Michael
noone has any thoughts? 4.01 scares everyone away.. i understand :-) -Original Message- From: Tangorre, Michael Sent: Wednesday, January 22, 2003 11:19 AM To: CF-Talk Subject: transactions Hello everyone. I could use some thoughts on the following problem I am having. I have

RE: transactions

2003-01-22 Thread Tangorre, Michael
are you? Bryan F. Hogan Director of Internet Development Macromedia Certified ColdFusion MX Developer Digital Bay Media, Inc. 1-877-72DIGITAL -Original Message- From: Tangorre, Michael [mailto:[EMAIL

RE: Image toolbar

2003-01-22 Thread Tangorre, Michael
Also, be aware that a user can go to your site, go to their browser menu and click save as and d/l all the images (from the currently viewed page) and the page itself. just an FYI. Mike -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22,

RE: Image toolbar

2003-01-22 Thread Tangorre, Michael
http://www.microsoft.com/windows/ie/using/howto/customizing/imgtoolbar.asp -Original Message- From: Bryan F. Hogan [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 2:41 PM To: CF-Talk Subject: RE: Image toolbar You can also disable individual images img src=test.gif

string parsing or list traversal

2003-01-22 Thread Tangorre, Michael
Does anyone know how to traverse a list of prse a string in T-SQL inside a stored procedure? What I need to do i send a comma delimited list into a stored proc then loop over the list inserting each entry into a table. Any help would be appreciated. Thanks, Michael T. Tangorre

RE: CF Hosting Suggestions

2003-01-22 Thread Tangorre, Michael
www.hostmysite.com great service, fair prices.. no problems thus far (5 sites hosted there). mike -Original Message- From: Cutter (CF_Talk) [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 3:04 PM To: CF-Talk Subject: CF Hosting Suggestions Anyone know who is the low cost

RE: Image toolbar

2003-01-22 Thread Tangorre, Michael
wow, don't bite the hand that feeds man! -Original Message- From: Ray Bujarski [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 3:03 PM To: CF-Talk Subject: RE: Image toolbar Yep I know! Thanks for the concern. Client rules, I am just doing what I am told. Thank you to

RE: string parsing or list traversal

2003-01-22 Thread Tangorre, Michael
://www.sqlteam.com/item.asp?ItemID=11499 Chris -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 2:52 PM To: CF-Talk Subject: string parsing or list traversal Does anyone know how to traverse a list of prse a string in T-SQL inside a stored

RE: transactions

2003-01-22 Thread Tangorre, Michael
- From: Tangorre, Michael [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 11:19 AM To: CF-Talk Subject: transactions Hello everyone. I could use some thoughts on the following problem I am having. I have a query that deletes all records in a table with a certain value in the ID field

RE: Deleting a row from a query?

2003-01-21 Thread Tangorre, Michael
please decipher the message below into something meaningful. thank you. -Original Message- From: [EMAIL PROTECTED] [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 7:19 AM To: CF-Talk Subject: Deleting a row from a query? How funny the certified Macromedia

RE: MS SQL 2000 :: How to print table data

2003-01-21 Thread Tangorre, Michael
in query analyzer use sp_help tablename (without the quotes). hth. mike -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 8:52 AM To: CF-Talk Subject: MS SQL 2000 :: How to print table data How can I print out all table data -

RE: What am I doing WRONG!?!?!

2003-01-21 Thread Tangorre, Michael
check your ODBC drivers. make sure you have the latest ones... especially since you upgraded to MX where JDBC is now an issue. hth, mike -Original Message- From: Ernie Pena [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 10:01 AM To: CF-Talk Subject: What am I doing

RE: DHTML menu and select boxes

2003-01-21 Thread Tangorre, Michael
it is my understanding that the form elements will always appear on top.. i have not found a way around this... so i switched to flash menus :-) mike -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 11:15 AM To: CF-Talk Subject: DHTML menu

RE: Application.cfm

2003-01-21 Thread Tangorre, Michael
not to get too technical, but the file OnRequestEnd does not run after the request; but rather at the end of the request... it is the last thing processed by the server in terms of CFM pages. I know this is picky, but for a newbie, might as well start em out on the right track :-)

RE: cfinput form validation

2003-01-21 Thread Tangorre, Michael
id second that. I have gotten very comfrotable with QForms.. it seems to play an important role in my projects lately. If you need a hand, yahoo groups has a great list going for QForms, oir email me off list and if I can help. Mike -Original Message- From: Ewok [mailto:[EMAIL

RE: Application.cfm

2003-01-21 Thread Tangorre, Michael
that could tell the future might be a nice tool to have :) Hi, this is amazon.com, we would just like to thank you for the purchase you're about to make. :) -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 12:21 PM To: CF-Talk

CF 4.01 Problem

2003-01-09 Thread Tangorre, Michael
Hello all. I know CF 4.01 is acient, but gvt regs will not allow anything newer just yet. Anyways, we have a small issue with truncated data. We have a text area on a form that correctly allows for up 5000 characters. When the formis submitted, it all goes into the DB just fine. When pulling

RE: CF 4.01 Problem

2003-01-09 Thread Tangorre, Michael
the advanced setting for the datasource and make sure the enable long text box is checked. Its somelike the above ages since I saw 4.01 !! WG -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED]] Sent: 09 January 2003 13:25 To: CF-Talk Subject: CF 4.01 Problem Hello all

RE: CF 4.01 Problem

2003-01-09 Thread Tangorre, Michael
a wierd 255 character bug with CFPROCPARAM (in CF5 but it could've been around for awhile) and maybe that's what you're hitting. Chris Lofback Sr. Web Developer TRX Integration 28051 US 19 N., Ste. C Clearwater, FL 33761 www.trxi.com -Original Message- From: Tangorre, Michael [mailto

RE: CF 4.01 Problem

2003-01-09 Thread Tangorre, Michael
counted both in Cf and in the DB, both return 5,000. It cuts off at 255 characters when output in the text area. ideas? -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 9:30 AM To: CF-Talk Subject: Re: CF 4.01 Problem Tangorre

RE: CF 4.01 Problem

2003-01-09 Thread Tangorre, Michael
not seing 0 or 255 values... -Original Message- From: Jochem van Dieten [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 9:40 AM To: CF-Talk Subject: Re: CF 4.01 Problem Tangorre, Michael wrote: counted both in Cf and in the DB, both return 5,000. It cuts off at 255

RE: CF 4.01 Problem

2003-01-09 Thread Tangorre, Michael
was NTEXT. Check your tables in SQL Server and make sure the text field is set to either varchar(5000) or TEXT. One of these should work. M -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 10:19 AM To: CF-Talk Subject: RE: CF 4.01

RE: Adding All to cfselect

2003-01-09 Thread Tangorre, Michael
i think qforms might work for you better. Go read up on them at www.pengoworks.com the javascript API is very versatile and the container section may be able to help you out. Mike -Original Message- From: Luis Lebron [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 09, 2003 10:55 AM

RE: Studio remote access delay

2002-10-18 Thread Tangorre, Michael
I belive this is a known issue, especially if you have mapped drives on your dev box. Each time a page is saved or the app is brought into focus, it hangs... this is what I have noticed anyways. VPN: when i connect up to work from home via the VPN, I use Homesite+ which does not seem to hang

CFMX Hosting

2002-09-19 Thread Tangorre, Michael
Hello all, Anyone know of some relatively inexpensive CF Hosting. It is for a hobby site of mine that I am working on. I initially was going to just host it from my apartment, but Comcast doesnt appreciate the traffic generated from the Message boards I have there. :-) Also, since I can not

RE: OT - C# Lists

2002-09-12 Thread Tangorre, Michael
with CSharpNET being one of the popular ones HTH -Original Message- From: Tangorre, Michael [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 18:53 To: CF-Talk Subject: OT - C# Lists Any C# programmers here? I am looking for a good mailing list. Sorry for the OT post.. I thought

Spell Checker

2002-09-12 Thread Tangorre, Michael
Our current custom tag for spell checking does not work under MX. Does anyone know of a custom tag/CFC/UDF that does spell checking and works under MX as well as older versions of CF Server? Thanks, Mike __ Your ad could be

RE: form question

2002-09-12 Thread Tangorre, Michael
I have an alternative I have foudn very useful in the past few weeks. www.pengoworks.com and read about QForms. They have all the things you need to do what you describe and even the customization that goes beyond the tag you are using, and this is all in JS, which performs better... for us

RE: select box focus

2002-09-12 Thread Tangorre, Michael
Tony, I assume that you have a query or a variable to hold the item you want selected correct? -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 11:22 AM To: CF-Talk Subject: sot: select box focus hi there. ok, I have a page, that when

RE: Comma seperaed help

2002-09-12 Thread Tangorre, Michael
If they enter spaces, you can always do a replace.. replace the spaces with commas. -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 12, 2002 2:37 PM To: CF-Talk Subject: Comma seperaed help I have to give our users a screen where they can

RE: Company Name

2002-09-11 Thread Tangorre, Michael
BigDawgMedia.com :-) -Original Message- From: FlashGuy [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 9:44 AM To: CF-Talk Subject: OT: Company Name Hi, I'm planning on starting up a company just for extra cash to put food on the table. I would be doing web

RE: OT: Company Name

2002-09-11 Thread Tangorre, Michael
he could have until he posted here, now the IRS will be looking for that as claimed income :-) -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Wednesday, September 11, 2002 10:01 AM To: CF-Talk Subject: Re: OT: Company Name On Wed, 11 Sep 2002, FlashGuy wrote: Hi,

<    2   3   4   5   6   7   8   9   10   >