RE: HELP!!!

2002-12-11 Thread Costas Piliotis
Hit ctrl-Enter by mistake... Someone please help... I'm getting bad stuff in my application.log file. Causes a service restart, and all the sessions are lost. Here's my log: "Error","2564","12/11/02","12:21:33",,"ODBC Error Code = 08S01 (Communication link failure) [Microsoft][ODBC SQL Server

RE: -- help.

2000-06-22 Thread Dave Watts
> Anywho...my issue is this: > > name="??" sort="name"> > > what should go in the name value ? especially if I want to > list the entire contents of the directory. The name can be whatever you want it to be. You use the name to reference the list of files within the directory as if it was a

Re: -- help.

2000-06-22 Thread Jon Boehnker
"name" is just the name of the result set.. so if you named it "MyCFDir", you would loop over the results with a regular or : note that a cfdirectory will return "." and ".." every time... I always forget that one and test for recordcount eq 0 instead of 2. HTH Jon miles wrote: > > hi

Re: -- help.

2000-06-22 Thread Larry Meadors
cfdirectory returns it's data as a query with the name you specif in the name attribute: There are #bob.recordcount# files and directories in c:\somedirectory Larry >>> [EMAIL PROTECTED] 06/22/00 12:21PM >>> hi. Im new to this list...ive been looking for a list like this for ages...obviou

Re: -- help.

2000-06-22 Thread Billy Cravens
"name" is a variable name you want to be able to use to reference the results, which function as a query. ie, to list file names: #name# -- Billy Cravens [EMAIL PROTECTED] -- Archives: http://www.eGroups.com/li

RE: -- help.

2000-06-22 Thread Mark Warrick
The name attribute is simply the name of the query that you use to output the contents of the data. Here's a working example (directly from the CF documentation): -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax:

Re: -- help.

2000-06-23 Thread Randy Adkins
The name is the name of the query that all the directory results are dumped into. So you can use the contents of the query to search as you would a query. - Original Message - From: "miles" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, June 22, 2000 2:21 PM Subject: -- he

RE: Help!

2000-08-01 Thread Johan Coens
Maybe: Step 1: SELECT DISTINCT ... (all colums), name it qryAllRecords Step 2: DELETE FROM , now you're table is empty Step 3: LOOP over qryAllRecords and insert them into the database. Make sure you have a backup and use CFTRANSACTION! Best Regards, Johan Coens -Original Message- From

RE: Help!

2000-08-02 Thread Jennifer
I would feel much safer about it if he put the results of your qryAllRecords into a new table before deleting. But maybe that's just because I'm paranoid about the word delete. At 08:35 AM 8/2/00 +0200, you wrote: >Maybe: > >Step 1: SELECT DISTINCT ... (all colums), name it qryAllRecords >Step

RE: Help

2002-06-06 Thread Dave Watts
> Can somone please check http://www.careerlearn.org for me. > I can see the site on the network but I have no way of > checking form outside There's no DNS entry for it in the primary authoritative DNS server for careerlearn.org, which is CBRU.BR.NS.ELS-GMS.ATT.NET. Dave Watts, CTO, Fig Leaf

RE: Help

2002-06-06 Thread Andres
Looks like you have a DNS problem: Keynote Diagnostic Center -- Atlanta Sprint ping results from Atlanta Sprint to www.careerlearn.org at local time: 102 at 09:40:21 Unknown host www.careerlearn.org. Keynote Diag

RE: Help

2002-06-06 Thread Burcham, Steve
I get a page cannot be displayed message. Thank you. Steve Burcham Webmaster - Field Support Team RDO Equipment Co. Phone (701) 239-8755 [EMAIL PROTECTED] -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 8:37 A

RE: Help

2002-06-06 Thread Kris Pilles
Thanks for all your help~! -Original Message- From: Andres [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 06, 2002 9:52 AM To: CF-Talk Subject: RE: Help Looks like you have a DNS problem: Keynote Diagnostic Center -- Atlanta Sprint ping results from Atlanta Sprint to

Re: Help

2002-06-06 Thread todd
I'm getting a page cannot be displayed. Error. On Thu, 6 Jun 2002, Kris Pilles wrote: > Can somone please check http://www.careerlearn.org for me. I can see > the site on the network but I have no way of checking form outside > > thanks > > -Original Message- > From: Erika L Walker-Ar

RE: help

2002-06-26 Thread James Maltby
Which emergency service do you require? -Original Message- From: Dave Babbitt [mailto:[EMAIL PROTECTED]] Sent: Wednesday, June 26, 2002 10:23 To: CF-Talk Subject: help help FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffusion.co

Re: help

2002-06-26 Thread Douglas Brown
Hurry Calll 911...I think he's fallen and can't get up. Douglas Brown Email: [EMAIL PROTECTED] - Original Message - From: "Dave Babbitt" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, June 26, 2002 2:23 AM Subject: help > help > FAQ: http://www.thenetprofi

Re: Help

2000-08-31 Thread Terri Stocke
Alan, The situation here is that essentially these two queries are the same. "Userid" is automatically going to be defined--the form fields from your form (submission) page will automatically be passed to this processing (action) template. I think I understand what you are getting at. Let me

Re: Help

2000-09-17 Thread Dick Applebaum
CF variables need to be within a cf statement or within certain CF tags, to be evaluated, e.g.: . .. so, use: Request Another Inventory or Request Another Inventory ItemEnter Another User ID Before you ask, #myVar# is evaluated as the value of myVar ## is recogn

RE: HELP!!

2002-07-31 Thread Tony Carcieri
i believe it is .name instead of .value -Original Message- From: Kris Pilles [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 31, 2002 2:15 PM To: CF-Talk Subject: HELP!! Last part of my appp... Need a quick answer I need to know how to reference the name of a select box (javas

RE: HELP!!

2002-07-31 Thread Kris Pilles
Well I need the selected name... To clarify... I can get the ID that's easy but I want the selected name value so I can also store that -Original Message- From: Tony Carcieri [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 31, 2002 2:20 PM To: CF-Talk Subject: RE: HELP!! i be

Re: HELP!!

2002-07-31 Thread Clint Tredway
If this is in an onChange you use this.options[this.selectedIndex].text otherwise document.forms["yourformname"].yourselectbox.options[document.forms["yourformname"].yourselectbox.selectedIndex].text HTH Clint -- Original Message -- from: "Kris Pilles" <[

Re: HELP!!

2002-07-31 Thread Alex
for (i=0; i < document.form.field.length; i++) { if (document.form.field[i].checked) { var selectedItem = document.form.field[i].value; } } On Wed, 31 Jul 2002, Kris Pilles wrote: > Last part of my appp... Need a quick answer > > I need to know how to reference the name of

Re: HELP!!

2002-07-31 Thread S . Isaac Dealey
> If this is in an onChange you use this.options[this.selectedIndex].text > otherwise document.forms["yourformname"].yourselectbox.options[document.fo > rms["yourformname"].yourselectbox.selectedIndex].text Yea, that's always seemed like a lot of typing to me... which was why I tended to do somet

Re: Help

2002-08-20 Thread Alex
On Tue, 20 Aug 2002, Watson, Marci [NH] wrote: > > > However if a user purchases > a product from multiple vendors, I am unsure how that would be worked > out. This is a business decision. Also, your subject_line did not describe your problem. ___

RE: Help

2002-08-20 Thread Watson, Marci [NH]
Sorry, First time I have utilized CF Talk, I will be more clear in the future. Marci -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 1:18 PM To: CF-Talk Subject: Re: Help On Tue, 20 Aug 2002, Watson, Marci [NH] wrote: > > > How

Re: Help

2002-08-20 Thread Terry Roll
No problem Marci, oh I see you've met Alex... >>Sorry, >>First time I have utilized CF Talk, I will be more clear in the >> future. >>Marci -Original Message- From: Alex [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 20, 2002 1:18 PM To: CF-Talk Subje

RE: Help

2002-08-20 Thread Haggerty, Mike
You may wish to search the archives of this list for information on working with Paypal. While my own experience with them has not been too rocky, a number of other developers have noted serious issues working with the company. Back in 1999, I worked on a similar project for a group of physician

Re: Help

2002-08-20 Thread Michael Dinowitz
Latest thread on CF and paypal: http://www.houseoffusion.com/cf_lists/index.cfm?method=messages&threadid=14248&forumid=4 Search string: http://www.houseoffusion.com/cf_lists/index.cfm?method=results&forumid=4&Search=paypal > You may wish to search the archives of this list for information on work

RE: Help

2002-08-20 Thread Parker, Kevin
I may have part of the answer but it revolves around a commercial product. We recently acquired a CF store form Chimo (www.chimo.com.au) - it understands multiple vendors in a single store front. I'm not sure how this is dealt with administratively though. If it sounds like what you want you can i

RE help

2002-08-27 Thread Everett, Al
Can someone lend a hand off-list with a problem I'm having? Regular Expressions are not my strong suit and I could use a little hand-holding. Don't want to clutter the list, though. Thanks in advance -- Al Everett __ Structur

RE: help

2002-05-03 Thread Kevan . Windle
Don't think cfquery can recognise that as a date you need to put it in a variable or call it inside the query SELECT * FROM crossref_email WHERE crsref_email = '#URL.eml#' AND crsref_date_created = #CreateODBCDateTime(CreateDateTime(2002, 04, 17, 0, 0, 0))# -Original M

Re: HELP!!

2001-11-15 Thread BILLY CRAVENS
This is beyond ColdFusion's capabilities. This would require some sort of client-server application. However, you could get close using machine-specific cookies, and "copy" the screen to a particular "machine" (the unique cookie value). Then when the site is loaded on the other machine, check a

Re: HELP!!

2001-11-15 Thread Alex
microsoft netmeeting. it is free On Wed, 14 Nov 2001, Melia wrote: > Dear all, >I would like to ask if any of you have any script o > solution for my problems below:- > > How can I send my screen to be trigger at another PC, > which it will display the same screen as mine. > Which, when I c

Re: Help!

2001-12-10 Thread Jacob
What happens when you stop and restart the Cold Fusion Application Server? At 02:52 PM 12/10/2001 -0800, you wrote: >Hi, > >Anyone ever seen the following error message? > > >PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag > >The error occurred while processing an element with a general iden

RE: Help!

2001-12-10 Thread Garza, Jeff
You by chance using Query of Queries on that page? Jeff Garza Lead Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: ehoma [mailto:[EMAIL PROTECTED]] Sent: Monday, December 10, 2001 3:52 PM To: CF-Talk Subject

Re: Help!

2001-12-10 Thread cftalk
I've never seen it, what database are you using? - Original Message - From: "ehoma" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 10, 2001 4:52 PM Subject: Help! > Hi, > > Anyone ever seen the following error message? > > > PCodeRuntimeContextImp::exec

RE: Help!

2001-12-10 Thread Zac Belado
> PCodeRuntimeContextImp::executeSQLTagCFQuery::endTag You aren't using an unlocked session or application variable in the query are you? ~~ Your ad could be here. Monies from ads go to support these lists and provide more resources for the communi

Re: Help!

2001-12-10 Thread Michael Bruce
It is most likely comming from a query of query . Make sure that the syntax is correct. Mike - Original Message - From: "Zac Belado" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, December 10, 2001 3:37 PM Subject: RE:

Re: Help!

2001-12-10 Thread ehoma
It's an Access table datasource. Eric - Original Message - From: <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Sent: Monday, December 10, 2001 3:20 PM Subject: Re: Help! > I've never seen it, what database are you using? > > - Original Messag

Re: Help!

2001-12-10 Thread ehoma
No, in fact there are 7 very simple queries. Some use Count(*) and a few use DISTINCT, other than that it is very basic stuff. Eric - Original Message - From: Zac Belado <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Sent: Monday, December 10, 2001 3:37 PM Subje

Re: Help!

2001-12-10 Thread ehoma
the table. Eric - Original Message - From: Garza, Jeff <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Sent: Monday, December 10, 2001 3:11 PM Subject: RE: Help! > You by chance using Query of Queries on that page? > > Jeff Garza > Lead Developer/Webmast

RE: Help!

2001-12-10 Thread Andrew Scott
ts of the top of my head!! -Original Message- From: ehoma [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 11 December 2001 12:23 PM To: CF-Talk Subject: Re: Help! No, it seems that the error message, document position (45:1) to (45:53), is pointing to the offending query. If I comment that

RE: Help!

2001-12-11 Thread Will Swain
http://www.allaire.com/Handlers/index.cfm?ID=8849&Method=Full pcode errors will -Original Message- From: ehoma [mailto:[EMAIL PROTECTED]] Sent: 11 December 2001 01:23 To: CF-Talk Subject: Re: Help! No, it seems that the error message, document position (45:1) to (45:53), is poin

Re: help

2001-03-15 Thread Brian Thornton
Check out astalavista.box.sk. They have a MS Crack for unlocking the password. I used it for a Access97 DB. Best of Luck. - Original Message - From: "Joshua Tipton" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, March 15, 2001 2:19 PM Subject: help > I have an acc

RE: help

2001-03-15 Thread Angel Stewart
Yes..there are several tools that you can purchase that will crack virtually any password set by a Microsoft program. check www.lostpasswords.com -Gel -Original Message- From: Joshua Tipton [mailto:[EMAIL PROTECTED]] I have an access db that is locked. User cant remeber the password.

Re: help

2001-03-15 Thread Brian Thornton
Is your DB Access97? - Original Message - From: "Joshua Tipton" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 15, 2001 4:23 PM Subject: RE: help > Can oyu send me the crack? > > -Original Message- > From: Brian Thornton

RE: Help!

2001-04-06 Thread alistair . davidson
I'm not entirely sure what you're trying to do, but try something like this - SELECT Products.product_ID FROMProducts WHERE NOT EXISTS( SELECT Product_ID FROM StoreProducts WHERE Product_ID = Products.Product_ID

RE: HElp

2001-04-16 Thread Erika L Walker
H.did his computer eat him? Or her? Erika "Twixt optimist and pessimist, The difference is droll; The optimist sees the doughnut, The pessimist, the hole." - McLandburgh Wilson -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Monday, April 16, 2001 2:5

Re: HELP!!!!

2001-04-17 Thread Brook Davies
use SELECTED instead of CHECKED At 09:09 PM 17/04/01 -0400, you wrote: >I am trying to do a simple statement within a forms input/checkbox >tag... > >The page debugging info displays > >URL Parameters: > >PERSON=80,81 > >The Query results do produce an ID equal to 80 and 81... > > > >ListFi

Re: HELP!!!!

2001-04-17 Thread Howie Hamlin
You shouldn't have two checkboxes on a form with the same name. Also, I think the correct syntax is checked="checked" and not just checked. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions, Inc. www.CoolFusion.com 631-737-4668 x101 inFusion Mail Server (iMS) - the World's mos

RE: HELP!!!!

2001-04-17 Thread Scott, Andrew
Why not, if one needs to have them grouped then this is a way!!! -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: 18 April 2001 11:44 To: CF-Talk Subject: Re: HELP You shouldn't have two checkboxes on a form with the same name. Also, I think the co

RE: HELP!!!!

2001-04-17 Thread ron
> You shouldn't have two checkboxes on a form with the same name. That's correct. Unless of course you want to return a comma-delimited value for that form element if more than one box is checked. > Also, I > think the correct syntax is checked="checked" and not just checked. That's not. Just

RE: HELP!!!!

2001-04-17 Thread Dylan Bromby
TED]] Sent: Tuesday, April 17, 2001 6:44 PM To: CF-Talk Subject: Re: HELP You shouldn't have two checkboxes on a form with the same name. Also, I think the correct syntax is checked="checked" and not just checked. HTH, Howie Hamlin - inFusion Project Manager On-Line Data Solutions

RE: HELP!!!!

2001-04-17 Thread Jay E Wigginton
I discovered my problem and I am embarrassed to even mention it I had left the closing greater than symbol off the input tag... I had... checked rather than.. checked> When I wrote the message the first time I had copied and pasted the code in... but I noticed in the email that I had omit

Re: HELP!!!!

2001-04-17 Thread Howie Hamlin
Do not answer any HTML coding questions Howie - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, April 17, 2001 9:54 PM Subject: RE: HELP > > You shouldn't have two checkboxes on a form with the same

RE: HELP!!!!

2001-04-17 Thread Tony Schreiber
Do you have Strict Validation turned on? I'm surprised the CF parser didn't catch that. I've made the same mistake before, but it always throws an error. Well, wait, I guess not, it just results in invalid HTML - which CF could care less about. ;p > I discovered my problem and I am embarrassed t

RE: HELP!!!!

2001-04-18 Thread Jay E Wigginton
, April 18, 2001 12:26 AM To: CF-Talk Subject: RE: HELP Do you have Strict Validation turned on? I'm surprised the CF parser didn't catch that. I've made the same mistake before, but it always throws an error. Well, wait, I guess not, it just results in invalid HTML - which CF

RE: help

2001-04-19 Thread Andy Ewings
I know someone (called Kevan who reads this list!) who had a similar problem where, when using netscape, a form object of type file was not getting posted with the form. Come to think of it I think none of the other form controls were posted either. I may be getting things mixed up - Kevan - did

RE: help

2001-04-19 Thread Adkins, Randy
make sure your form tag has : enctype="multipart/form-data" -Original Message- From: Susan Matthews [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 10:02 AM To: CF-Talk Subject: help Hi- I have a form that allows users to upload files using: On the receiving form I upload

RE: help

2001-04-19 Thread Dylan Bromby
make sure you have ENCTYPE="MULTIPART/FORM-DATA" in your tag. -Original Message- From: Susan Matthews [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 7:02 AM To: CF-Talk Subject: help Hi- I have a form that allows users to upload files using: On the receiving form I uploa

Re: help

2001-04-19 Thread Michael A. Cady
What version of IE are you using to test? - Original Message - From: "Susan Matthews" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, April 19, 2001 10:01 AM Subject: help > Hi- > > I have a form that allows users to upload files using: > > > On the receiving form

Re: help

2001-04-19 Thread Michael Lugassy
make sure you have this attribute on your FORM TAG: enctype="multipart/form-data" it's a must for fileinput fields. Michael Lugassy Interactive Music Ltd. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusio

RE: help

2001-04-19 Thread JoshMEagle
ROTECTED]] Sent: Thursday, April 19, 2001 10:19 AM To: CF-Talk Subject: RE: help I know someone (called Kevan who reads this list!) who had a similar problem where, when using netscape, a form object of type file was not getting posted with the form. Come to think of it I think none of the other for

RE: help

2001-04-19 Thread Terry Bader
make sure you have your encrypt type set: Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL PROTECTED] (757)581-5981 - Mobile [EMAIL PROTECTED] icq: 5202487 aim: lv2bounce

RE: help

2001-04-19 Thread Susan Matthews
I'm still stumped. I have the enctype="multipart/form-data" included in my form tag that sends "newsprint "...? > -Original Message- > From: Michael Lugassy [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 19, 2001 11:32 AM > To: CF-Talk > Su

RE: help

2001-04-19 Thread Susan Matthews
I have IE5, but my client uses IE and I don't know which version. > -Original Message- > From: Michael A. Cady [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 19, 2001 10:26 AM > To: CF-Talk > Subject: Re: help > > > What version of IE are you using to tes

Re: help

2001-04-19 Thread Michael Lugassy
ril 19, 2001 5:34 PM Subject: RE: help > > I'm still stumped. I have the enctype="multipart/form-data" included in my > form tag that sends "newsprint "...? > > > -Original Message- > > From: Michael Lugassy [mailto:[EMAIL PROTECTED]]

RE: help

2001-04-19 Thread Dylan Bromby
post all the code. -Original Message- From: Susan Matthews [mailto:[EMAIL PROTECTED]] Sent: Thursday, April 19, 2001 8:35 AM To: CF-Talk Subject: RE: help I'm still stumped. I have the enctype="multipart/form-data" included in my form tag that sends "newsprint &q

Re: help

2001-04-19 Thread Michael A. Cady
your error log and you can see what browser version is used when the error occurs. These days it's usually it's MSIE 3.02. Mike Cady - Original Message - From: "Susan Matthews" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday,

Re: help

2001-04-19 Thread Brook Davies
- Original Message - >From: "Susan Matthews" <[EMAIL PROTECTED]> >To: "CF-Talk" <[EMAIL PROTECTED]> >Sent: Thursday, April 19, 2001 11:47 AM >Subject: RE: help > > > > I have IE5, but my client uses IE and I don't know which version.

Re: help

2001-04-19 Thread Mak Wing Lok
have you try use FILEFIELD="form.newsPrint" ? - Original Message - From: "Susan Matthews" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Thursday, April 19, 2001 10:01 PM Subject: help > Hi- > > I have a form that allows users to upload files using: > > > On the receiving

Re: HELP

2001-04-24 Thread Dick Applebaum
change CONTAINS '#category#' to LIKE '%#category#%' Better yet, normalize the db... each field should be atomic this form of search is very slow as each record must be examined... if the field were atomic, the search could take place entirely in the indexes. the point here, is to

RE: HELP

2001-10-04 Thread Greg Jordan
if the code, as it is now, is as efficient as your reorg way, I would leave it alone and come up with a way record the url params and analyze them. Why re-do it? A stored procedure in the application.cfm file might work well. There might even be a way to record the url params in the log file(may

RE: HELP

2001-10-04 Thread Brunt, Michael
It sounds like the company building the site either used or tried to use what is called Fusebox. This is actually a very good methodology and if the site functions well at present I would not recommend changing it back to a more conventional build. If the site breaks as a result you won't have m

Re: HELP

2001-10-04 Thread Andrew Peterson
ROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Sent: Thursday, October 04, 2001 2:18 PM Subject: RE: HELP > It sounds like the company building the site either used or tried to use > what is called Fusebox. This is actually a very good methodology and if the > site functions we

RE: HELP

2001-10-04 Thread Greg Jordan
ED] Unified Health Services 51 Germantown Court Cordova, TN 38018 PH - (901) 843-2667 x261 FAX - (901) 843-2672 -Original Message- From: Andrew Peterson [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 04, 2001 3:04 PM To: CF-Talk Subject: Re: HELP If it is fusebox, you could rep

Re: HELP

2001-10-04 Thread Jon Hall
This is one of the disadvantages building an entire site around a Fusebox type methodology. Let me guess what the Fuseboxers are going to say...code your own statistics program? Rght. That is not feasible for every site, and neither is Fusebox. I think the question is whether or not reworking

RE: HELP

2001-10-04 Thread Brunt, Michael
IL PROTECTED] Unified Health Services 51 Germantown Court Cordova, TN 38018 PH - (901) 843-2667 x261 FAX - (901) 843-2672 -Original Message- From: Andrew Peterson [mailto:[EMAIL PROTECTED]] Sent: Thursday, October 04, 2001 3:04 PM To: CF-Talk Subject: Re: HELP If it is fusebox, you

RE: Help

2003-02-03 Thread Tony Weeg
this message got through :) dont give up hope yet...we are all still here. if you still want to read another fairly prolific list, try the cfdj list, from syscon-inc.com i think. later. tw -Original Message- From: project_boo [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 9

RE: Help

2003-02-03 Thread Tony Weeg
actually CFDJList sys-con.com tw -Original Message- From: Tony Weeg [mailto:[EMAIL PROTECTED]] Sent: Monday, February 03, 2003 9:50 PM To: CF-Talk Subject: RE: Help this message got through :) dont give up hope yet...we are all still here. if you still want to read another fairly

Re: Help

2003-02-04 Thread Michael Dinowitz
This is what I get for taking a day to be sick. Basically, there is no problem with the address [EMAIL PROTECTED] I'm not getting any MX record problems, any bounce backs, nothing. According to the HoF server, your getting mail sent to you. This is what the log says about your mail: 02/04/2003 12:

RE: Help!

2003-07-28 Thread Costas Piliotis
Easiest thing to do is not use MS Access... Your GAL should be accessible through LDAP. Consider using CFLDAP to access instead. Added bonus is that you don't have to use two layers...Check with your exchange admin about using LDAP to access the GAL. Here's an article on it: http://www.cfm

Re: Help

2004-07-12 Thread Joe Rinehart
Monique, Has he ported the rptServer.asp code to CF?  If so, I'd definitely be interested. -joe - Original Message - From: Monique Boea <[EMAIL PROTECTED]> Date: Fri, 9 Jul 2004 14:08:40 -0400 Subject: Help To: CF-Talk <[EMAIL PROTECTED]> Hey All, First, I'm posting this for a friend,

RE: Help

2004-07-12 Thread Ciliotta, Mario
What has he done.  Some more information or a website would be nice. -Mario -Original Message- From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Monday, July 12, 2004 8:07 AM To: CF-Talk Subject: Re: Help Monique, Has he ported the rptServer.asp code to CF?  If so, I'd definite

RE: Help

2004-07-13 Thread mario . ciliotta
What has he done.  Some more information or a website would be nice. -Mario -Original Message- From: Joe Rinehart [mailto:[EMAIL PROTECTED] Sent: Monday, July 12, 2004 8:07 AM To: CF-Talk Subject: Re: Help Monique, Has he ported the rptServer.asp code to CF?  If so, I'd definite

RE: Help

2004-06-03 Thread Tom Kitta
Are you sure all your variables (like action) are strings? TK   -Original Message-   From: Monique Boea [mailto:[EMAIL PROTECTED]   Sent: Thursday, June 03, 2004 3:42 PM   To: CF-Talk   Subject: Help   Does anyone know what this error means?   ByteArray objects cannot be converted to str

Re: Help

2004-06-03 Thread Deanna Schneider
Don't know, but it looks like you could probably do yourself a HUGE favor by altering the way you code this by using cfparameters, assuming this is a form page. Something like this: bshow_general>checked Yes bshow_general>checked No - Original Message - From: "Monique Boea"

Re: Help...

2002-03-05 Thread phumes1
Hi all, I 'm stuck. The below code reads and displays the contents of my database. SELECT sti, ID FROMfontsti ORDER BY sti [#GetFontFamily.ID#] #GetFontFamily.sti# This displays something like... [1] aachen.sti [2] accolade.sti

Re: help

2014-07-13 Thread Maureen
Yes, this code is broken. You have a logic error. The code inside the CFCATCH will only execute of the code in the CFTRY fails. The syntax on the CFCATCH tag is wrong as you have no type declared, and the code on the first line inside the CFCATCH is the same as what you just tried. So if it fai

Re: help

2014-07-13 Thread Dave Watts
> Yes, this code is broken. You have a logic error. The code inside the > CFCATCH will only execute of the code in the CFTRY fails. The syntax > on the CFCATCH tag is wrong as you have no type declared, and the code > on the first line inside the CFCATCH is the same as what you just > tried. So

Re: help

2014-07-13 Thread Matthew Smith
what path should i use? On Sun, Jul 13, 2014 at 10:11 AM, Dave Watts wrote: > > > Yes, this code is broken. You have a logic error. The code inside the > > CFCATCH will only execute of the code in the CFTRY fails. The syntax > > on the CFCATCH tag is wrong as you have no type declared, and t

Re: help

2014-07-13 Thread Maureen
Yeah...my bad. I have never used CFCATCH without a type, so I forgot it was optional. On Sun, Jul 13, 2014 at 10:11 AM, Dave Watts wrote: > > This is all very accurate except for one portion. CFCATCH doesn't > require a type. It's generally recommended that you specify a type, > but in the abse

Re: help

2014-07-17 Thread Matthew Smith
Anyone? > On Jul 15, 2014, at 1:59, Matthew Smith wrote: > > Does anyone know what path I should use? Stuck... > >> On Jul 13, 2014, at 10:40, Matthew Smith wrote: >> >> what path should i use? >> >> >>> On Sun, Jul 13, 2014 at 10:11 AM, Dave Watts wrote: >>> >>> > Yes, this code is bro

Re: help

2014-07-17 Thread Maureen
As I told you four days ago: Instead of a physical path like C:\magedirector\imagename.ext you need a url like http://domainname.com/imagedirectory/imagename.ext You use the physical path to determine if the file exists, but you need the url to display it. On Thu, Jul 17, 2014 at 10:37 PM, Matt

Re: help

2014-07-18 Thread Matthew Smith
\taolcad_images\products\resize\qry_latest24items.largepic1 Still doesn't work...? > On Jul 17, 2014, at 23:09, Maureen wrote: > > > As I told you four days ago: > Instead of a physical path like C:\magedirector\imagename.ext you > need a url like http://domainname.com/imagedirectory/imagenam

Re: help

2014-07-18 Thread Dave Watts
> > Instead of a physical path like C:\magedirector\imagename.ext you > > need a url like http://domainname.com/imagedirectory/imagename.ext > > > > You use the physical path to determine if the file exists, but you > > need the url to display it. > > \taolcad_images\products\resize\qry_latest24i

Re: help

2014-07-18 Thread mac jordan
On Fri, Jul 18, 2014 at 2:21 PM, Dave Watts wrote: > > Still doesn't work...? > > That's still not a URL, is it? > ​It's like pulling teeth …​ -- mac jordan www.kestrel.org | www.reactivecooking.com | www.jordan-cats.org twitter: @ramtops ~~~

Re: help

2014-07-18 Thread Matt Quackenbush
Defies logic, especially given certain claims. http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:358850 On Fri, Jul 18, 2014 at 8:26 AM, mac jordan wrote: > > On Fri, Jul 18, 2014 at 2:21 PM, Dave Watts wrote: > > > > Still doesn't work...? > > > > That's still not a URL, is

Re: help

2014-07-18 Thread M.A. Kruger
Matt, you need to make a stromger effort to understand what you are being told. we can't solve your problem. we can only help point you in the right direction. Sent from my iPhone > On Jul 18, 2014, at 6:35 AM, Matthew Smith wrote: > > > \taolcad_images\products\resize\qry_latest24items.l

Re: help

2014-07-18 Thread M.A. Kruger
wow I never would have guessed. maybe just a bad communicator - trouble really describing his problem? Sent from my iPhone > On Jul 18, 2014, at 8:30 AM, Matt Quackenbush wrote: > > > Defies logic, especially given certain claims. > http://www.houseoffusion.com/groups/cf-talk/message.cfm/mes

  1   2   3   4   5   6   7   8   9   10   >