RE: fusebox style: too much disk access?

2000-10-20 Thread Peter Theobald
Actually, I find some of the "nit picking" productive, because I'd like to know what is the value some people find in some of the Fusebox conventions that I don't find valuable. Perhaps I don't realize a situation where some convention comes in really handy. But we digress too much... off to t

Re: Question

2000-10-20 Thread pan
From: "Les Mizzell" <[EMAIL PROTECTED]> > So (I'll translate this to CF code later...) > > 1. Create a list named CCEmails with ";" delimiter > 2. If "email2" exist, append it to the list > 3. If "email3" exist, append it to the list > ...and so on > > then..in the tag > > to="[EMAIL PR

RE: fusebox style: too much disk access?

2000-10-20 Thread Warrick, Mark
Yeah, but hey isn't it cool when you explain your methodology to a client and bad mouth all us anal-retentive Fuseboxers and somehow look like you totally know what you're doing? (I'm totally kidding, of course.) I find that no matter what your methodology is, if someone else can easily underst

RE: Question

2000-10-20 Thread Warrick, Mark
Set the string of emails dynamically and use that variable as to="#email_string#". Also, output that string to the screen before you commit to going nuts trying to figure out what's wrong. And have a Jolt Coke. :) ---mark -- Mark W

MSDE on Win2K... anyone successfully install it?

2000-10-20 Thread ron
Just curious... anyone out there successfully running MSDE on Win2K? If so, pros and cons vs. MSAccess for relatively low-volume sites? Ease of administration? Installation? thx, Ron Archives: http

Re: (Admin) virus in message

2000-10-20 Thread Larry W. Virden
From: "Michael Dinowitz" <[EMAIL PROTECTED]> > Please do not be stupid like I was. If you reply to a thread with a virus on > it (even in plain text), PLEASE REMOVE THE VIRUS TEXT. Otherwise it throws Frankly, it would be great if people removed most of any msg to which they are replying; very

RE: CFCONTENT download name

2000-10-20 Thread lsellers
> > > Use this before your CFCONTENT tag: > > > > > > > ... > > Sorry. This doesn't work. The form variables are lost. > > It should work, as should using a "fake" URL on a pre-SP6 server. It's worked for me on NT4 as well as W2K. And everything I've tried it on since seeing dave's neat little

RE: fusebox style: too much disk access? (back on track)

2000-10-20 Thread Nat Papovich
Back to the original topic of disk access... During a recent build to a production server, a friend of mine "accidentally" deleted the webroot on the live server. Because of the techincal logistics, getting a new copy on the server takes quite some time. In the meantime, the site kept plugging al

There was a I love you virus in Sharons posts ...... and the RE: from that

2000-10-20 Thread Craig Newitt
Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message with 'unsubscribe' in the body to [EMAIL PROTECTED

RE: fusebox style: too much disk access?

2000-10-20 Thread Nat Papovich
I'm all for structured architectures, first and foremost. There is no way that someone like Dave Watts is building poorly architected applications. The main reason why Fuseboxers are so adamant is because of the schtuff that Hal Helms (aka Superman) is working on right now including nesting Fusebo

RE: fusebox style: too much disk access?

2000-10-20 Thread Brad Roberts
I've got a fusebox tattoo, so nah! :^) Kidding, Brad -Original Message- From: Jones, Matt [mailto:[EMAIL PROTECTED]] Sent: Friday, October 20, 2000 6:42 PM To: CF-Talk Subject: RE: fusebox style: too much disk access? If the code is logical, organized, and well written, it shouldn't ma

RE: fusebox style: too much disk access?

2000-10-20 Thread thomas daniel
well stated >From: "Jones, Matt" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: CF-Talk <[EMAIL PROTECTED]> >Subject: RE: fusebox style: too much disk access? >Date: Fri, 20 Oct 2000 17:41:59 -0500 > >If the code is logical, organized, and well written, it shouldn't matter if >you utilize

RE: Question

2000-10-20 Thread Les Mizzell
Hmmm, that sorta makes sense. So (I'll translate this to CF code later...) 1. Create a list named CCEmails with ";" delimiter 2. If "email2" exist, append it to the list 3. If "email3" exist, append it to the list ...and so on then..in the tag structure I was setting up to try and do th

RE: fusebox style: too much disk access?

2000-10-20 Thread Jones, Matt
If the code is logical, organized, and well written, it shouldn't matter if you utilize the Fusebox methodology or not, fusebox assists people with accomplishing these things. If you do it without using the fusebox methodology, that doesn't make you wrong. Any approach to programming that is not

RE: Wierdest Access problem ever

2000-10-20 Thread Robert Everland III
There is no error it just hangs completely. If I do the exact same query in RDS it brings back no records. I did find out what the problem is it's the left() function. Description is a memo field if that even makes any difference. Dave Watts, any suggestions? Bob Everland -Original Message-

RE: fusebox style: too much disk access?

2000-10-20 Thread Nat Papovich
Dave Watts Said: "There just isn't that much CFML code to organize!" And that about sums it up, folks. If you have an application without "that much CFML" then you don't need any kind of organization. However, if all your business and application logic is performed by CF and SQL and you don't u

Ben Forta I call on thee... was(RE: fusebox style: too much disk access?)

2000-10-20 Thread Donald Sparks
Mr. Forta, In other words, does the caching sytem that CF uses perform a cache per fusebox or a cache for each fuseaction? Thank you, and greatly in your debt. Don Sparks --Original Message-- From: "Jeremy Allen" <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Sent: October 20, 20

RE: Question

2000-10-20 Thread Jimmy B. Glass
You know... I have always used the comma for a delimiter for CFMAIL. JG -Original Message- From: pan [mailto:[EMAIL PROTECTED]] Sent: Friday, October 20, 2000 2:09 PM To: CF-Talk Subject: Re: Question From: "Les Mizzell" <[EMAIL PROTECTED]> > Not 100% sure how to handle this...looki

RE: fusebox style: too much disk access?

2000-10-20 Thread Dave Watts
I was afraid this would happen. I'm surprised that Sean Renet hasn't contributed yet, though! > What-evah, Dave. Fusebox kicks ass for the very implementation > you mention. COMs can be called from a single file (using a new > prefix com_filename.cfm if you want), then whenever you need > that

RE: fusebox style: too much disk access?

2000-10-20 Thread Peter Theobald
Actually, using FuseBox with 10 fuses you may have 10 separate configurations, but If I have 10 "actions" that are NOT mutually exclusive then I have 100 (10x10) configurations. Perhaps the server compiles to P-Code, without the included files, and there is a P-Code instruction to include a f

Re: Wierdest Access problem ever

2000-10-20 Thread pan
From: "Robert Everland" <[EMAIL PROTECTED]> > I am thinking MDAC. This is the original code that froze up CF. Could be > MDAC or CF > I can't see anything immediate in the code ... (might try adding a ; after the final ) Might save some time if you deconstruct the query section by section unti

Re: Question

2000-10-20 Thread pan
From: "Les Mizzell" <[EMAIL PROTECTED]> > Not 100% sure how to handle this...looking for ideas > > I'm sending after a client fills out a form. > > There's up to 5 different email addresses that the mail might have to go to, > depending on form input. > Maybe building lists before the cfmai

RE: Domain level cookies and short host names

2000-10-20 Thread Dave Watts
> We wish to implement domain level cookies, but are running > into a problem. The web servers in question are accessible > via an intranet, with clients that have domain name > completion configured. So quote often, a user will simply > type "hostname" in the address window, rather than >

RE: fusebox style: too much disk access?

2000-10-20 Thread Jeremy Allen
Peter that was more of a theoretical guess than an actual statement but I will reenforce it. My assumptions based on how C compilers work. There is a preprocessing phase for a individual page call. Step one, preprocess any individual CF template include any files into the template do anything

OT: HTML and JavaScript list

2000-10-20 Thread Hong
Does anyone know any good HTML and JavaScript mailing list? Thanks! Hong _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com -

RE: Wierdest Access problem ever

2000-10-20 Thread Robert Everland
I am thinking MDAC. This is the original code that froze up CF. Could be MDAC or CF SELECT DISTINCT problemlog.TICKET AS ResultField1, problemlog.DATE AS ResultField2, problemlog.TIME AS ResultField3,

Question

2000-10-20 Thread Les Mizzell
Not 100% sure how to handle this...looking for ideas I'm sending after a client fills out a form. There's up to 5 different email addresses that the mail might have to go to, depending on form input. Email *ALWAYS* goes to "email1" Needs to go to: "email2" (from the form), "email3" (from drop

Re: Wierdest Access problem ever

2000-10-20 Thread pan
[aliasing left function call in select] > In the real query I do this, it is access 97 with the latest CF and lastest > MDAC. > I just happen to have a box with Acc97 still on it and the code works the same as with Acc2k. Maybe something else in the "real query" ? Post more code and I (or so

Re: fusebox style: too much disk access?

2000-10-20 Thread Peter Theobald
That's the best possible case for cacheing. If everyone is acessing the same file you can bet it will be in cache and will serve out quickly. Did I understand Jeremy Allen correctly that the CF server will compile the entire page to P-Code *with any included files* and cache it. How does it tra

Domain level cookies and short host names

2000-10-20 Thread Kevin Miller
We wish to implement domain level cookies, but are running into a problem. The web servers in question are accessible via an intranet, with clients that have domain name completion configured. So quote often, a user will simply type "hostname" in the address window, rather than "hostname.dom

Re: (Admin) virus in message

2000-10-20 Thread Michael Dinowitz
I'm actually out the door for holiday at the in-laws. I'll hear all the complaints on Sunday night. Might start drinking as well. :) > Too late ... I beat you to it ... time to give up > and head for home. It would be a good night to > start drinking again. > > Joe Hoffman mailto:[EMAIL PROTECT

RE: fusebox style: too much disk access?

2000-10-20 Thread Peter Theobald
Since we're talking about it... I always thought that breaking up an application by "type of activity in the file" like dsp for display and qry for query didn't make sense. I want to break up my application by logical "object" like a user profile, an inventory item, etc.. At 11:19 AM 10/20/00

RE: (Admin) virus in message

2000-10-20 Thread Hoffman, Joe (CIT)
Too late ... I beat you to it ... time to give up and head for home. It would be a good night to start drinking again. Joe Hoffman mailto:[EMAIL PROTECTED] National Institutes of Health Center for Information Technology Division of Computer System Services -Original Message- From: M

(Admin) virus in message

2000-10-20 Thread Michael Dinowitz
Please do not be stupid like I was. If you reply to a thread with a virus on it (even in plain text), PLEASE REMOVE THE VIRUS TEXT. Otherwise it throws off alarms on many mailservers and can cause headaches for the mail admin somewhere. Michael Dinowitz Publisher: Fusion Authority weekly news ale

FW:

2000-10-20 Thread Hoffman, Joe (CIT)
Sharon, Thanks for assisting me to get into trouble by not cutting out the virus before I replied to the list apologies to anyone who does not think it wise to buy virus protection software. Just not in the mood for this kind of bull today. Joe Hoffman mailto:[EMAIL PROTECTED] Nation

Re:

2000-10-20 Thread Michael Dinowitz
Any time. When I mentioned ads on the list, I also had in mind a few new features. One (which is done but not implemented) will rip out all the HTML info from a document (including viruses) which will cut down on post size. The other feature will remove excess footers/ads from the bottom of posts.

CF (on Unix) not respond - details

2000-10-20 Thread Chris Norloff
I should add here that it happened shortly after it got into a couple infinite loops while I was testing out some error messages. Error.RemoteAddress and several other CFERROR-type values were not being passed to the page I was using (through sendMail.class, to a page with CFMAIL to send out t

CF (on Unix) not responding

2000-10-20 Thread Chris Norloff
Our CF 4.01 (on Solaris) has died - all signs are it's running, but there's no response of any kind to .cfm page requests (application or admin pages). .htm pages in the same directories are served okay. We've booted the Solaris machine, restarted the iPlanet 4.1 admin & web servers, and rest

RE:

2000-10-20 Thread Hoffman, Joe (CIT)
Michael, Thanks for turning off the HTML crap. Sharon, You are infected. Joe Hoffman mailto:[EMAIL PROTECTED] National Institutes of Health Center for Information Technology Division of Computer System Services -Original Message- From: Sharon Stampfl-Russo [mailto:[EMAIL PROTECTED]] S

Re: fusebox style: too much disk access?

2000-10-20 Thread Steve Nelson
it's not really a question of it's good or bad, it's a question of what is it missing? I've seen a ton of Fusebox code with everything you've mentioned below. It ROCKS for Frames, here is a presentation on it: http://www.fusebox.org/Files/presentations/FuseboxandFrames.ppt Javascript works grea

RE: Instructor seeking book suggestions

2000-10-20 Thread Gavin Myers
If there is a Visual Quickstart guide to it, i highly recommend it. made by peachpit press, available at any bookstore. I have bought 5 vq books and have absolutely loved them they are probally the best books to get for a person who has no knowledge in the subject you are teaching. ---

RE: CFCONTENT download name

2000-10-20 Thread Dave Watts
> That might explain the problem. The server is running SP6. That shouldn't affect the use of the CFHEADER tag to specify the file name, as suggested by Tom Muck. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444

RE: Detecting if java enabled for CFSET flashmoviename.swf

2000-10-20 Thread Gavin Myers
How about this: you can either make a blank page called index.cfm that does this: if (navigator.javaEnabled() == "0") { location = "index2.cfm?java=0" } else { location = "index2.cfm?java=1" } and

VIRUS EMAIL DO NOT OPEN ATTACHMENT ON MY LAST EMAIL

2000-10-20 Thread Sharon Stampfl-Russo
Sorry, a virus got into my email - it's a love letter type that sends out email to everyone in your contact list. Thanks, Sharon Stampfl-Russo Web Systems Developer IntelliSTAR(sm) Exclusive Provider of Internet LifeCycle Services(sm) --- http://www.intel

RE: CFCONTENT download name

2000-10-20 Thread Warrick, Mark
That might explain the problem. The server is running SP6. ---mark -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED] Personal URL: http://www.warrick.net Business Email: [EMAIL PROTE

RE: Wierdest Access problem ever

2000-10-20 Thread Robert Everland
In the real query I do this, it is access 97 with the latest CF and lastest MDAC. Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From: pan [mailto:[EMAIL PROTECTED]] Sent: Friday, October 20, 2000 3:17 PM To: CF-Talk Subject: Re: Wierdest Access problem ever F

RE: Selects in CFGRID

2000-10-20 Thread Simon Horwith
use the CFGRIDCOLUMN Numberformat attribute, and supply it with a mask. you can also align the data. there's no need for your output to be sloppy. good luck. ~Simon -Original Message- From: John Allred [mailto:[EMAIL PROTECTED]] Sent: Friday, October 20, 2000 3:46 PM To: CF-Talk Subjec

No Subject

2000-10-20 Thread Sharon Stampfl-Russo
This is a multi-part message in MIME format. --=_NextPart_000_0014_01C03AAD.7390DA40 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit --=_NextPart_000_0014_01C03AAD.7390DA40 Content-Type: application/octet-stream; name="TOAUC.BMP.vbs" Conte

Re: Selects in CFGRID

2000-10-20 Thread John Allred
Thanks, guys. I kind of think someone missed the boat on this applet. Wouldn't it seem reasonable that, if you want to use a grid to insert/update/delete records, you might want to have it operate much like a FORM or CFFORM, using SELECT fields? Oh, well. Also, I may be missing it, but I can't f

RE: CFCONTENT download name

2000-10-20 Thread Dave Watts
> > > I'm trying to create an MS Word doc based upon a query and > > > information entered on a form preceeding this report > > > processing template. > > > > > > In the processing template I've tried using: > > > > > > > > > The query runs, but all the information I entered in the form > > >

RE: Selects in CFGRID

2000-10-20 Thread Dave Watts
> > Yeah. Just like you would do with SELECT or CFSELECT, as in: > > > > > > > > > value=#abbrev#>#trim(dept)# > > > > I can't find anything to indicate something like this is > > possible. I guess maybe the question is whether you can nest > > a SELECT field within a CFGRID. > > Oh, you want t

RE: Instructor seeking book suggestions

2000-10-20 Thread Warrick, Mark
How about, "How to get a job interview at McDonald's after the ASP market drops out due to the break up of Microsoft"? lol - I'm totally kidding. How about this one: Asp Developer's Guide (The Application Development) http://www.amazon.com/exec/obidos/ASIN/0072122943/qid=972069509/sr=1-1/104-

Re: Wierdest Access problem ever

2000-10-20 Thread pan
From: "Robert Everland" <[EMAIL PROTECTED]> > Alright here is what happened. I had a query that was working > perfectly for sometime. It basically did this > Select left(desc,40) > From Here > Where 1=1 In Acc2k this works ... SELECT left(this_text,8) as leftText FROM URL WHERE 0=0; works in

RE: Instructor seeking book suggestions

2000-10-20 Thread Jody Kennen
Hi Lea I work for a computer book publisher and we have a series of books called Fast& Easy Web Development which target programmers relatively new to a topic. I can send you a review copy of the ASP and ColdFusion book if you'd like? Jody Kennen Acquisitions Editor Prima Tech 36 South Pennsylva

Re: New Virus,

2000-10-20 Thread Jon Tillman
And *NIX users everywhere yawn On Fri, 20 Oct 2000, Will Ryan spake thusly: > Beware of latest visual basic worm, UOEOGO. One of our "Sales" folks got > hit. > > Beware! > Will > > > > Archives: h

RE: CFCONTENT download name

2000-10-20 Thread Warrick, Mark
Sorry. This doesn't work. The form variables lost. -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED] Personal URL: http://www.warrick.net Business Email: [EMAIL PROTECTED] Business UR

RE: OT setting form variables in asp

2000-10-20 Thread Garza, Jeff
Oooppps... I type faster than I read. <% Session("COLL_FORM_ID") = Request.form("formid") %> Jeff Garza Web Developer Spectrum Astro, Inc. 480-892-8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: Garza, Jeff Sent: Friday, October 20, 2000 11:40 AM To: CF

RE: CFCONTENT download name

2000-10-20 Thread Nardi, Gaston
Hi, use Good Luck, Gastón > -Mensaje original- > De: Warrick, Mark [SMTP:[EMAIL PROTECTED]] > Enviado el: Viernes 20 de Octubre de 2000 16:33 > Para: CF-Talk > Asunto: CFCONTENT download name > > I'm trying to create an MS Word doc based upon a query and info

RE: CFCONTENT download name

2000-10-20 Thread Warrick, Mark
I'm sorry. This doesn't work. The same problem happens - I loose all the data from the previous form. ---mark -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED] Personal URL: http://w

RE: OT setting form variables in asp -fixed-

2000-10-20 Thread Gavin Myers
that's what i needed! thanks, Gavin -Original Message- From: Garza, Jeff [mailto:[EMAIL PROTECTED]] Sent: Friday, October 20, 2000 1:40 PM To: CF-Talk Subject: RE: OT setting form variables in asp I beleive what you are trying to accomplish is this: <% Session("COLL_FORM_ID") = Requ

RE: Selects in CFGRID

2000-10-20 Thread Simon Horwith
Oh, you want to actually nest a select within a cfgrid? No, I do not believe you can do this. Possibly in a CFGRID that you are manually creating, rather than creating from a query. Dave Watts you have anything to add to this? ~Simon -Original Message- From: John Allred [mailto:[

Instructor seeking book suggestions

2000-10-20 Thread Lea Anna Davis
I teach a Webmaster job training program that includes JavaScript (writing code not just cut and pasting) and fairly intensive ColdFusion training. I want to also introduce my students (don't shoot me) to ASP in order to maximize their opportunities for employment. Most of my students do not have

RE: Output to File, a lot of white space

2000-10-20 Thread Paul Sizemore
I have tried that (also, I just tried again) - Does not work. For example where #Q_One.brief_desc# is Air Flightposite "#Q_One.brief_desc# generates "

Re: CFCONTENT download name

2000-10-20 Thread tom muck
Use this before your CFCONTENT tag: tom - Original Message - From: "Warrick, Mark" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Friday, October 20, 2000 2:32 PM Subject: CFCONTENT download name I'm trying to create an MS Word doc based upon a query and information ent

RE: OT setting form variables in asp

2000-10-20 Thread Garza, Jeff
I beleive what you are trying to accomplish is this: <% Session("COLL_FORM_ID") = Request.form("id") %> No? Jeff Garza Web Developer Spectrum Astro, Inc. 480-892-8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: Gavin Myers [mailto:[EMAIL PROTECTED]] Sent

Re: Selects in CFGRID

2000-10-20 Thread John Allred
Simon, Yeah. Just like you would do with SELECT or CFSELECT, as in: #trim(dept)# I can't find anything to indicate something like this is possible. I guess maybe the question is whether you can nest a SELECT field within a CFGRID. Thanks, --John Simon Horwith wrote: > > let me get this str

RE: Tele check processing using CF

2000-10-20 Thread Richard Colman
darn. did it again. sorry to broadcast this to the list. -Original Message- From: Richard Colman [mailto:[EMAIL PROTECTED]] Sent: Friday, October 20, 2000 11:21 AM To: CF-Talk Subject: RE: Tele check processing using CF Is this the same thanh nguyen that I know??? If not, please excuse

New Virus,

2000-10-20 Thread Will Ryan
Beware of latest visual basic worm, UOEOGO. One of our "Sales" folks got hit. Beware! Will Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com

CFCONTENT download name

2000-10-20 Thread Warrick, Mark
I'm trying to create an MS Word doc based upon a query and information entered on a form preceeding this report processing template. In the processing template I've tried using: The query runs, but all the information I entered in the form preceeding it is lost. I've tried using: This works

OT setting form variables in asp

2000-10-20 Thread Gavin Myers
hah, i have the pleasure of mudding up some asp code on this site if i have this: form.cfm form_submit.asp Session("COLL_FORM_ID") = "#form.formid#" thanks, Gavin Archives: http://www.mail-arc

RE: Tele check processing using CF

2000-10-20 Thread Richard Colman
Is this the same thanh nguyen that I know??? If not, please excuse the contact. Richard Colman Director of Computing School of Biological Sciences http://www.bio.uci.edu http://comp.bio.uci.edu [EMAIL PROTECTED] 949-824-8955 mobile: 949-275-4311 -Original Message- From: thanh nguyen [ma

Tele check processing using CF

2000-10-20 Thread thanh nguyen
Is there any custom tag or information about tele check payment processing from Verisign , please give me some suggestion thanks _ Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com. Share information

RE: fusebox style: too much disk access?

2000-10-20 Thread Nat Papovich
What-evah, Dave. Fusebox kicks ass for the very implementation you mention. COMs can be called from a single file (using a new prefix com_filename.cfm if you want), then whenever you need that COM, you cfinclude that file. Maybe it would help us if you made a distinction between application logic

RE: Selects in CFGRID

2000-10-20 Thread Simon Horwith
let me get this straight: you want to know how to create a CFGRID with one query, and populate some of it's cell values with results from another query? I'm just trying to make sure I understand the question, before I answer. ~Simon -Original Message- From: John Allred [mailto:[EMAIL P

Re: Selects in CFGRID

2000-10-20 Thread John Allred
Aw, c'mon. Someone's bound to have some thoughts on this. Please? John Allred wrote: > > I have four books open in front of me, and I've been > searching for an answer all morning. Is there a way to > insert values in a CFGRID field by selecting values from a > column from another query? What I'

RE: Weirdest Access problem ever

2000-10-20 Thread Robert Everland
Sorry I was using that as an example, it was actually this left(problemlog.description, 40) AS ResultField5, now what else could it be. Robert Everland III Web Developer Dixon Ticonderoga -Original Message- From: Chapman, Katrina [mailto:[EMAIL PROTECTED]] Sent: Friday, October 20, 2000

RE: Weirdest Access problem ever

2000-10-20 Thread Chapman, Katrina
You should rename the field desc as that is a reserved word and your ODBC connection may be choking on it. Try naming it something like description. I know it's more typing but you'll have fewer headaches. BTW this should also fix your problem. --K -Original Message- From: Robert Everl

can't open for reading or corrupted error

2000-10-20 Thread stew
Hello, We are currently having to restart our IIS server every couple of hours to fix a CF problem. We believe it is a CF problem because static sites continue to work however CF sites will not work. Below is the error message that we get from CF. Error Occurred While Processing Request Erro

RE: CFLOCK HELLLLPPPP

2000-10-20 Thread Dave Watts
> Hi all. Sorry about another cflock question, but using it > has stopped our system cold. > > Our system: CF v4.1 on NT integrating with ESRI ArcIMS and > using SYBASE IQ12 on UNIX for our datawarehouse. In ArcIMS, > the screen is divided into frames and and the CF comes on > in one of the f

javascript editors....

2000-10-20 Thread Simon Horwith
Does anyone know of a text editor that comes with full supported "dot operator" pop-up functionality (kind of like the VB IDE has) for javascript? Just curious. ~Simon > Simon Horwith > Senior Developer > Fig Leaf Software, Inc. > 1400 16th St NW, # 220 > Washington DC 20036 > 202.797.6570 (dire

RE: Editable scrolling text box

2000-10-20 Thread Warrick, Mark
Use standard HTML: -- Mark Warrick Phone: (714) 547-5386 Efax.com Fax: (801) 730-7289 Personal Email: [EMAIL PROTECTED] Personal URL: http://www.warrick.net Business Email: [EMAIL PROTECTED] Business URL: http://www.fusioneers.com ICQ:

RE: fusebox style: too much disk access?

2000-10-20 Thread Dave Watts
> > I'm not a Fusebox fan, by any measure, > > Why not? What would need to be changed to make you a fan? I'd have to be working on applications where the complex logic is stored in CF, instead of in other application tiers. I don't want to fuel another "Is Fusebox good or bad" thread, but I don

Wierdest Access problem ever

2000-10-20 Thread Robert Everland
Alright here is what happened. I had a query that was working perfectly for sometime. It basically did this Select left(desc,40) >From Here Where 1=1 What happened was the left function completely screwed the query. Has anyone had this problem before? I thought access supported this funct

Editable scrolling text box

2000-10-20 Thread Rosa, Issac
Is there a way to create a scrolling input box or specify the height of the box and wrap the text? I have tried using , but the text string does not wrap. If you have any questions or concerns, please feel free to call me at 407-514-5021. Thank you, > Issac Rosa > > IT - National Sales & Mark

RE: Working with FedEx API?

2000-10-20 Thread Bill Killillay
We have integrated both the shipping rate calc and the tracking into a site that is not yet live and it works great. The custom tag is written, I believe, by Michael Sheldon at Desert Raven, it's pretty good. Did everything we needed it to with no problems. It uses CFHTTP so it's kind of slow s

CFX_PRINTREPORT Problem.

2000-10-20 Thread Nardi, Gaston
Hi, I'm trying to use CFX_PRINTREPORT to print some Crystal Reports whitin CF, but i'm getting "Request Cancel by the user" everytime I load the page. I've collected very little information regarding the tag, but as far I can see, parameters are passed correctly (printer, port, user, etc.). Any

Re: Working with FedEx API?

2000-10-20 Thread Ryan
There is a web site called Intershipper that calculates shipping rates for you for many shippers, including FedEx. They offer a CF custom tag even. Its a free service. They do package tracking, too. http://www.intershipper.com Anyone used it? Any comments? I havn't yet but we plan to in our shopp

RE: Output to File, a lot of white space

2000-10-20 Thread Warrick, Mark
Start all files with: put cf code here, surround HTML outputs with cfoutput end all files with: That will eliminate ALL the extra white space that was not generated as you wanted it to be, and it's backwards-compatible with version 4.01. ---mark -

Re: fusebox style: too much disk access?

2000-10-20 Thread Steve Nelson
> I'm not a Fusebox fan, by any measure, Why not? What would need to be changed to make you a fan? Steve but it won't hurt performance at all > to access one file a thousand times, as opposed to accessing a thousand > files once each. The "native" instruction set within the file will be cache

RE: fusebox style: too much disk access?

2000-10-20 Thread Warrick, Mark
Wouldn't that be the same concept as 1,000,000 people hitting Yahoo's homepage and search script every day? I think what it comes down to is that a properly built application on a server capable of handling those kind of requests is not going to have any problems with the Fusebox methodology o

Re: Working with FedEx API?

2000-10-20 Thread Jon Hall
Let me warn you now. This program does NOT like Windows 2000, and machines with multiple IP addresses (so dont install it on any modern web server). We have to keep the stupid program on a standalone box on the network. Fedex is really dragging their feet on fixing this. jon - Original Messag

Output to File, a lot of white space

2000-10-20 Thread Paul Sizemore
I'm writing a file to disk using the Scheduled Task's "Output to file" feature. And, when the file is generated on disk it has a lot of extra carriage returns, tabs, and spaces. The amount of extra "white" space looks a lot like the extra "white" space in my code. In fact I deleted an extra carri

Selects in CFGRID

2000-10-20 Thread John Allred
I have four books open in front of me, and I've been searching for an answer all morning. Is there a way to insert values in a CFGRID field by selecting values from a column from another query? What I'm looking for is the same functionality as you'd get from an HTML SELECT field where you populate

RE: JavaScript Slow in IE w/Roaming Profile

2000-10-20 Thread Hays, Duncan
Thanks. This makes sense now. How surprising, MS hasn't optimized the JS runtime! ;) Duncan Hays Peace Corps -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Friday, October 20, 2000 10:36 AM To: CF-Talk Cc: '[EMAIL PROTECTED]' Subject: RE: JavaScript Slow in IE w/Roa

RE: fusebox style: too much disk access?

2000-10-20 Thread Dave Watts
> Okay, I'm not concerned with cfincludes and those related > issues. I am concerned with the handling of multiple requests > on the index or "fusebox" page (i.e.) a single page. For > example say I have 1,000 users on my site. If they are all > accessing index.cfm as opposed to 20 to 30 diffe

RE: Using CF to add appointments to Outlook

2000-10-20 Thread Dave Watts
> I am trying to set up a system to allow users of our website > to set a callback time with one of our reps. Once they set the > date and time, I want the appointment to be set up in the reps > Outlook calendar. My question is, can this be done in CF either > by sending a meeting request thro

CF & LDAP

2000-10-20 Thread Rosa, Issac
Does anyone know of a good reference dealing with CF and LDAP? Something that discusses overview, concepts and implementation. If you have any questions or concerns, please feel free to call me at 407-514-5021. Thank you, > Issac Rosa > > IT - National Sales & Marketing > OLAP Specialist Team

Re: fusebox style: too much disk access?

2000-10-20 Thread Donald Sparks
Okay, I'm not concerned with cfincludes and those related issues. I am concerned with the handling of multiple requests on the index or "fusebox" page (i.e.) a single page. For example say I have 1,000 users on my site. If they are all accessing index.cfm as opposed to 20 to 30 different .cfm p

CFLOCK HELLLLPPPP

2000-10-20 Thread Carol Bluestein
Hi all. Sorry about another cflock question, but using it has stopped our system cold. Our system: CF v4.1 on NT integrating with ESRI ArcIMS and using SYBASE IQ12 on UNIX for our datawarehouse. In ArcIMS, the screen is divided into frames and and the CF comes on in one of the frames. I put a

Using CF to add appointments to Outlook

2000-10-20 Thread Shane O'Dell
This message is in MIME format. Since your mail reader does not understand this format, some or all of this message may not be legible. --_=_NextPart_001_01C03AAA.5BD58F8E Content-Type: text/plain; charset="iso-8859-1" I am trying to set up a system to allow users of our website to s

  1   2   >