Re[2]: Displaying message during loading..?

2001-03-12 Thread Patric Stumpe
Well people, i have to thank you all for the great response on such a perhaps lame question. But nevertheless i'll test all variants. Personally the version Mike mentioned with the bg-image sounds like a nice approach :). Am 13.03.2001 um 00:47 schrieben Sie: MK> Have a look at www.ibluegrass

How to pass javascript variable to a cf tag?

2001-03-12 Thread JAIME HOI
i am using a inside a javascript function. Question is how do i pass the javascript variable to the cfquery? this is an example of the code. function ChangeSelect(value) { select family_name || '

RE: SurePay

2001-03-12 Thread Chris Montgomery
I just did this for a client and used the Surepay Custom Tag Pack from Anodyne, Inc. It was pretty easy to implement and well worth the $200 to the client. Give me a call or message me off-list if you have more questions. Chris Montgomery [EMAIL PROTECTED] Web Development & Consultin

RE: Project Mgmt for CF development?

2001-03-12 Thread BORKMAN Lee
Yeah, we did that here, and next month we are rolling out an application that lets people send electronic letters to each other. You should see it! Very impressive considering our core business is building roads. All in all, I'd recommend your philosophy as a great approach to problem solving;-)

Re: Project Mgmt for CF development?

2001-03-12 Thread laszlo
>>..we use a time keeping system, where developers enter how much >>hours they worked on for certain tasks on a certain day Many years ago I worked for an asshole manager who's primary task was to do this. I was in charge to write the stupid 'time-tracking' app.. Needless to say, creative programm

Re: Can CF work with a FileMakerPro database?

2001-03-12 Thread David Siew
Hi, FileMaker Web Companion uses Blue World's (http://www.blueworld.com) Lasso technology. You can use CDML (Claris Dynamic Markup Language, if I remembered correctly) with out-of-the-box FileMaker Pro. We have not tried interfacing with FM Pro 5 database through CF but according to their press

RE: Help with a

2001-03-12 Thread Toby Tremayne
Rich, the tag version of this would be: (I think thats right ) HTH Toby Tremayne Code Poet and Zen Master of the Heavy Sleep Show Ads Interactive 359 Plummer S

Re: Can CF work with a FileMakerPro database?

2001-03-12 Thread zac
> Why not just use the FileMaker Web Server. Because it is lethargic. It really doesn't compare to CF in terms of speed Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

RE: Session variables

2001-03-12 Thread Dylan Bromby
If you're looking for some free utilities to stress test on NT or 2000, check out: http://support.microsoft.com/support/dna/bundles/QA/loadtest.asp I've used InetLoad before; it's scriptable and pretty decent...for being free. --Dylan -Original Message- From: Dave Watts [mailto:[EMAIL

Help with a

2001-03-12 Thread ibtoad
I have been playing around with a tutorial and it has a section of a cart written in which I really don't understand. Can someone please decode this into regular CF. Here is the script: if (not(isdefined("session.cart"))) { //

RE: search a text file

2001-03-12 Thread David Shadovitz
RegEx is a good way to go. Here's a non-RegEx technique, which assumes that you've read the text file into a CFML variable called theText: Today's unchanging text is: #ChangingText# -David On Monday, March 12, 2001 8:26 AM, Peter Benoit [SMTP:[EMAIL PROTECTED]] wrote: > I've got a bit

RE: Session variables

2001-03-12 Thread Dave Watts
> > Thank you Bryan - I was just consulting Ben Forta's book on > > cflock and to quote "Forcing code to single threaded use only > > can seriously impact system performance." Do you think this is > > an issue in this case? > > Not necesarily. I ran a regression test where I used different > l

RE: CF as User

2001-03-12 Thread Dave Watts
> Now, I'm wondering if I NEED to set CF up as a user to access the > databases on the SQL machine. Will the username and password to the > SQL databases in CF administrator be good enough if I connect with > TCP/IP? No, setting up the CF service to run as a specific NT user isn't necessary fo

RE: CF as User

2001-03-12 Thread Joshua Tipton
convert c: or d: /fs:ntfs -Original Message- From: Bud [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 10:19 PM To: CF-Talk Subject: CF as User OK all. I'm in the process of setting up my new SQL Server as some of you know my my licensing snafu. :) Now, I'm wondering if I NEED

RE: CF as User

2001-03-12 Thread Joshua Tipton
Make users such as webuser that only has read access and webudate that has read and write access. That will help you out. If you put these users in the model database then anytime you create a new database it will copy them over. In CF admin all you would need to do then is to put webuser and t

CF as User

2001-03-12 Thread Bud
OK all. I'm in the process of setting up my new SQL Server as some of you know my my licensing snafu. :) Now, I'm wondering if I NEED to set CF up as a user to access the databases on the SQL machine. Will the username and password to the SQL databases in CF administrator be good enough if I c

RE: Number to String?

2001-03-12 Thread Arden Weiss
there is both a tostring() and a val() function in 4.5.1 Also, I thing the following works... String = number + "" and Number = string * 1 or Number = string - 0 ^ / \__ (@\___ / O /(_/ /_/ Whoof... 410-757-3487 -Original Message- From: Brya

RE: Client variables

2001-03-12 Thread Darryl Lyons
If you store your vars in a database, then yes. -Original Message- From: Haryono ... [mailto:[EMAIL PROTECTED]] Sent: Tuesday, March 13, 2001 12:07 PM To: CF-Talk Subject: Client variables does it accessible or not when client variables from one site is going to accessed by the other s

RE: Looking for Job

2001-03-12 Thread Jeffry Houser
At 01:59 PM 03/12/2001 -0700, Scott Wood wrote: >RU kidding me??? Your writing someone about e-mail protocol and >netiquette!! It's called a flame, usually. It's the same thing that you just did to me. ;) I wasn't intending to go out and morally offend anyone, sorry. >Apparently you

Client variables

2001-03-12 Thread Haryono ...
does it accessible or not when client variables from one site is going to accessed by the other site? Thank you for your answer ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Ar

RE: Session variables

2001-03-12 Thread paul smith
Amen. My latest app uses Client & Request and doesn't have a single CFLOCK. best, paul At 05:16 PM 3/12/01 -0800, you wrote: >Client variables require a little more experience and understanding to >manipulate but they do not require locks and can be used in a clustered >environment. When used

RE: Number to String?

2001-03-12 Thread Bryan Love
You won't find reference to integer-to-string conversions because they do not exist. Cold Fusion was designed and written as a typeless language. There is no difference between a number and a string. If you want to manipulate the zeros you may do so at any time without any conversion. What exac

RE: Session variables

2001-03-12 Thread Bryan Love
Not necesarily. I ran a regression test where I used different locking methods to read 10,000 application variables (same locking issue as session variables) and the results were somewhat surprising; using one CFLOCK tag outside the loop it took 450 ms while using 10,000 individual locks inside t

Re: Number to String?

2001-03-12 Thread Bryan Rieger
on 3/12/01 4:50 PM, Jim McAtee at [EMAIL PROTECTED] wrote: > I think either of the following should work: > > > > > OR > > > Jim, Thank you - I'll try these. Cheers, Bryan ~~ Structure your ColdFusion code with Fusebox. Get the offic

RE: CFFILE with other form data???

2001-03-12 Thread Dave Watts
> Hello all! I am once again in desperate need of a clue and > hoping someone will be kind enough to send one. I am creating > a console for my client to add to/edit/delete vehicle listings > from their database. On the add page, I have a number of fields > for the pertinent info, and then at

CFFILE with other form data???

2001-03-12 Thread Adrienne H. Cregar
Hello all! I am once again in desperate need of a clue and hoping someone will be kind enough to send one. I am creating a console for my client to add to/edit/delete vehicle listings from their database. On the add page, I have a number of fields for the pertinent info, and then at the bottom are

Re: Number to String?

2001-03-12 Thread Jim McAtee
I think either of the following should work: OR Jim -Original Message- From: Bryan Rieger <[EMAIL PROTECTED]> To: CF-Talk <[EMAIL PROTECTED]> Date: Monday, March 12, 2001 5:31 PM Subject: Number to String? >Hello, > >Is it possible to convert a number to a string? >For example,

RE: Session variables

2001-03-12 Thread Parker, Kevin
Thank you Bryan - I was just consulting Ben Forta's book on cflock and to quote "Forcing code to single threaded use only can seriously impact system performance." Do you think this is an issue in this case? Kevin Parker Web Services Manager WorkCover Corporation [EMAIL PROTECTED] www.wo

Number to String?

2001-03-12 Thread Bryan Rieger
Hello, Is it possible to convert a number to a string? For example, if I have the number 1 formatted as 0001 and I wanted to convert that to a string "0001" to then manipulate the '0's as characters. Is this possible? I can go from strings to integers, but I don't seem to be able to go th

Re: OT: Project Mgmt for CF development?

2001-03-12 Thread Richard Ramos
Anyone know where I could get a scheduler like the OnProject site? We are developing our intranet and want to add a project management feature to it. I just want to see if there are any finished products that can easily be modified. Thanks. Richard Ramos Network Administrator Softitler Net, Inc

RE: Project Mgmt for CF development?

2001-03-12 Thread Phoeun Pha
oh, i thought u wanted some ideas on a project management web app, and i was just giving u some ideas hehe -Original Message- From: Michael [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 5:55 PM To: CF-Talk Subject: Re: Project Mgmt for CF development? Why not just write and in

RE: W2k cannot see webserver?

2001-03-12 Thread Lockie Martin
Or maybe even in the W2K server list but not in CF-Talk no matter how smart the users are (earlier post) ;-) -Original Message- From: Braver, Ben: [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 13 March 2001 12:14 To: CF-Talk Subject: RE: W2k cannot see webserver? I think he means is this be

Re: Project Mgmt for CF development?

2001-03-12 Thread Michael
Why not just write and in house program that will do all of what you want, and then alot more? Or am I missing the boat here? Michael "Phoeun Pha" <[EMAIL PROTECTED]> wrote in message 3FDBC86059BAD4119A1B0090273D1EB60C2ADD@HOUBLUE">news:3FDBC86059BAD4119A1B0090273D1EB60C2ADD@HOUBLUE... > her

RE: Any recommendations on an E-commerce software?

2001-03-12 Thread Bryan Love
The link I gave points to the back end administration system for the store front. To see the default store front go here: http://writtenword.adhost.com/blove/Store/ or just click the VIEW STORE link in the top left corner after logging in as DEMO. Go ahead and place an order using the store f

Re: Displaying message during loading..?

2001-03-12 Thread Michael Kear
Have a look at www.ibluegrass.com ... I think Skip Ogden is doing this with a very simple method just use a background image for the page that has "Loading ..." in it. The page first appears with only the background image showing. Then, when the page is finished loading, a table appears ov

RE: Session variables

2001-03-12 Thread Bryan Love
The application will run under the MOST RECENTLY declared CFAPPLICATION tag. If you use a second CFAPPLICATION tag in the same call the server will run under that one. There are easier ways to clear the session scope, however. 1. Use the structClear() function - if you do this be sure to

RE: Any recommendations on an E-commerce software?

2001-03-12 Thread Bud
Oops. Found the Ferraris. Sorry. LOL >On 3/12/01, Bryan Love penned: >>How bout a fully fuseboxed, scalable commerce app available with open >>source? >> >>for a demo go here: >>http://writtenword.adhost.com/blove/Admin/ >> >>Uname: demo >>Pword: demo > >Demo of what? A store with no products? :)

Re: Session variables

2001-03-12 Thread Bud
On 3/13/01, Parker, Kevin penned: >If I place the code below inside any given page in the quiz and say modify >the session timeout values does the code inside the page take precedence >over the code in application.cfm or not, or does it do something else, or >does it do nothing. I am thinking of v

RE: connecting to remote SQL server via TCP-IP

2001-03-12 Thread Michael Kear
I hope Shiloh will forgive me for this, but he set up a page for his users at Shanje to do exactly this, with a step-by-step to doing it. It's well done and solved a couple of problems I was having getting it going too. It's at http://www.shanje.com/sqlentman.shtml Cheers, Mike Kear Windsor, N

RE: Any recommendations on an E-commerce software?

2001-03-12 Thread Bud
On 3/12/01, Bryan Love penned: >How bout a fully fuseboxed, scalable commerce app available with open >source? > >for a demo go here: >http://writtenword.adhost.com/blove/Admin/ > >Uname: demo >Pword: demo Demo of what? A store with no products? :) -- Bud Schneehagen - Tropical Web Creations _

RE: W2k cannot see webserver?

2001-03-12 Thread Bud
On 3/13/01, Lockie Martin penned: >Why are you discussing the in CF-Talk? Probably because most people are smart here. :) -- Bud Schneehagen - Tropical Web Creations _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ ColdFusion Solutions / eCommerce Development [EMAIL PROTECTED] http://www.twcreations.com

Session variables

2001-03-12 Thread Parker, Kevin
I am working on a quiz application. I have created an application.cfm file which contains this: If I place the code below inside any given page in the quiz and say modify the session timeout values does the code inside the page take precedence over the code in application.cfm or not, or does i

RE: W2k cannot see webserver?

2001-03-12 Thread Braver, Ben:
I think he means is this belongs in the CF-Server list -Original Message- From: Adrian Cooper [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 2:55 PM To: CF-Talk Subject: Re: W2k cannot see webserver? - Original Message - From: "Lockie Martin" <[EMAIL PROTECTED]> Sent:

Re: OT: Project Mgmt for CF development?

2001-03-12 Thread Judith Campbell
At 04:34 PM 3/12/01 Leighton Tebay wrote: >We are feeling the need to implement a project managment/collaboration >software. Outlook just doesn't cut it. > >What do you recommend for web app development? I have only good things to say about OnProject . We used it extensively before the comple

RE: W2k cannot see webserver?

2001-03-12 Thread Angel Stewart
By applying a bit of logic, one would tend to deduce that the error with Windows 2K is affecting the author's use of CF and his webserver. Hence he posted here, in the hopes that someone who had similar difficulties while doing CF Development would be able to assist. Or would you have all such q

RE: Project Mgmt for CF development?

2001-03-12 Thread Phoeun Pha
here at work we use a time keeping system, where developers enter how much hours they worked on for certain tasks on a certain day (tasks, developers can be added/deleted/edited). u also enter the allotted time for that certain task, and if it goes over, the hours put into that task turns red. u

RE: Project Mgmt for CF development?

2001-03-12 Thread Cameron Childress
http://www.onproject.com Web based Written in CF Cool as poop -Cameron Cameron Childress elliptIQ Inc. p.770.460.7277.232 f.770.460.0963 > -Original Message- > From: Leighton Tebay [mailto:[EMAIL PROTECTED]] > Sent: Monday, March 12, 2001 5:34 PM > To: CF-Talk > Su

Re: W2k cannot see webserver?

2001-03-12 Thread Adrian Cooper
- Original Message - From: "Lockie Martin" <[EMAIL PROTECTED]> Sent: Monday, March 12, 2001 10:52 PM > Why are you discussing the in CF-Talk? Maybe his webserver runs Cold Fusion? Adrian Cooper. ~~ Structure your ColdFusion code wi

RE: W2k cannot see webserver?

2001-03-12 Thread Lockie Martin
Why are you discussing the in CF-Talk? -Original Message- From: Adrian Cooper [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 13 March 2001 11:45 To: CF-Talk Subject: Re: W2k cannot see webserver? - Original Message - From: "Bosky, Dave" <[EMAIL PROTECTED]> Sent: Monday, March 12, 20

Re: W2k cannot see webserver?

2001-03-12 Thread Adrian Cooper
- Original Message - From: "Bosky, Dave" <[EMAIL PROTECTED]> Sent: Monday, March 12, 2001 10:27 PM > > We have two PC's(w2kpro) in the same IP range > something like 192.68.x.x connected to a switch/router > and they can see each other. We added a webserver in > a different IP range 64.

OT: Project Mgmt for CF development?

2001-03-12 Thread Leighton Tebay
We are feeling the need to implement a project managment/collaboration software. Outlook just doesn't cut it. What do you recommend for web app development? Leighton Tebay - Original Message - From: "Bryan Love" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, March

RE: Counter tag

2001-03-12 Thread Joshua Tipton
SELECT hit_count FROM hitcounter INSERT INTO hitcounter (hit_count) VALUES (1) UPDATE hitcounter SET hit_count = hit_count + 1 No. of viewers:

RE: W2k cannot see webserver?

2001-03-12 Thread Phoeun Pha
are u going to the webserver as http://servername/page.cfm or http://64.17.x.x/page.cfm?? If you chose the latter, then those two computers must have an internet connection -Original Message- From: Bosky, Dave [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 4:27 PM To: CF-Talk

W2k cannot see webserver?

2001-03-12 Thread Bosky, Dave
We have two PC's(w2kpro) in the same IP range something like 192.68.x.x connected to a switch/router and they can see each other. We added a webserver in a different IP range 64.17.x.x and the PC's cannot see the webserver. Can you use the hosts file on each pc to find the webserver? Tha

Counter tag

2001-03-12 Thread Jon Hall
Can someone reccommend a decent counter tag that produces images and uses a database? I think bringing another counter tag into this world would be quite redundant... jon ~~ Structure your ColdFusion code with Fusebox. Get the official book at

RE: Any recommendations on an E-commerce software?

2001-03-12 Thread Bryan Love
How bout a fully fuseboxed, scalable commerce app available with open source? for a demo go here: http://writtenword.adhost.com/blove/Admin/ Uname: demo Pword: demo Bryan Love ACP Internet Application Developer [EMAIL PROTECTED]

Re: Can CF work with a FileMakerPro database?

2001-03-12 Thread Bud
On 3/12/01, Jeffry Houser penned: >Why not just use the FileMaker Web Server. It seems counter-productive >to try to use CF. I believe that Lasso is the FileMaker language for the >web (don't hold me to that)? > > FileMaker, depending who you talk to, is not a relational database, >it's

Re: Displaying message during loading..?

2001-03-12 Thread Jon Hall
Couple ways to do this. Fake it via a popup window that displays for a set period of time and then closes. You also could do your query and display a message saying "please wait", do your query and cache it then set a cookie, then do a meta refresh. test for the cookie, if it is there display your

RE: Displaying message during loading..?

2001-03-12 Thread Phoeun Pha
this is what I do. I have a layer that says "Stuff is loading!", and i set it to invisible. when u click the submit button, call a javascript that makes that layer visible! that's it! u can make that layer overlap over whatever is on your page. it can be a flash animation! -Original Me

RE: Displaying message during loading..?

2001-03-12 Thread John Wilker
There's a custom tag called cf_loading I think. pretty slick, it pops up a little window that says loading or whatever you want it to say, it's just JavaScript inside, but it sure beats re-inventing the wheel.. It's at the devEx on Allaire's site, a search for "loading" should return it. Hope th

RE: PGP or other

2001-03-12 Thread Steve Bernard
GnuPG for now, OpenPGP when it gets going. http://www.gnupg.org/ http://www.OpenPGP.org/ Regards, Steve ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.m

CFContent and spaces

2001-03-12 Thread Percy E Perez
Hello all, I am using cfcontent to access files across the network no problem as long as I using IE, however when I used netscape I get an HTTP Error 400. Of course this happens only when the file has spaces. Is there a command i can issue such as URLEncodedformat? Thank you for all the help.

RE: Looking for Job

2001-03-12 Thread Scott Wood
RU kidding me??? Your writing someone about e-mail protocol and netiquette!! Apparently you are not so busy that the 15 seconds it took to read the original message actually hurt you. Oh yea, could you please forward to the list the link for "learning about mailing lists".. Hey, I have a good id

C++ CFX exception troubles

2001-03-12 Thread Matt Leinhos
Hello, I've been having problems getting exceptions from a C++ CFX tag to be passes to CF. The problem shows up under Linux - SuSE 7.1 and RedHat 7.0 with cfserver 4.5.1. Under 4.5.1, sp 2, the tag doesn't execute at all. It doesn't compile at all under RedHat 6.1 (officially supported) due to a

SurePay

2001-03-12 Thread Ricq Pattay
Anybody using SurePay? How difficult was it to set up in CF? Has anyone ever used the "SurePay Tag Pack" custom tag -- if so, how was it? Any input would be appreciated. Ricq Pattay ~ [EMAIL PROTECTED] College of Veterinary Medicine University of Minnesota - Twin Cities ~

RE: Any recommendations on an E-commerce software?

2001-03-12 Thread Benjamin S. Rogers
My experience with the folks over at AbleCommerce has been radically different. In fact, I once posted a question to this list in regards to an issue I was having with ColdFusion, and a member of the AbleCommerce support team called me on the phone an hour later to make sure I got an answer to my

PGP or other

2001-03-12 Thread Jeff Beer
What are people using to encrypt e-mails and small text files now that PGP is charging $10,000 for an enterprise level server application? I remember the daya of command line PGP.. life was easy then... :) This needs to be licensed for commercial use, so PGP 2.xx won't work. Thanks in advance!

Re: cffile

2001-03-12 Thread Bryan Laplante
If you know of some identifier in the document you can use Left(string) function on the output to only return the count return by Find(identifier,output,1) Bryan -- Original Message -- From: Peter Benoit <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] Date

RE: cffile

2001-03-12 Thread Phoeun Pha
let's say my file contains 3 main parts. a person's name, age, and sex. the key to your problem, or to the solution, whichever, AHH!!, is to read the text file as a list, and pull out whichever part you want. so therefore, you separate those parts with a delimiter, preferably a character that do

cffile

2001-03-12 Thread Peter Benoit
I can use cffile to import a text document, but I'd like to only import one part of this file, how can I do this? thanks, Pete ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm A

RE: Any recommendations on an E-commerce software?

2001-03-12 Thread Duane Boudreau
SQLServer 7 SP2 -Original Message- From: paul smith [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 3:41 PM To: CF-Talk Subject: RE: Any recommendations on an E-commerce software? Which database software are you using? best, paul At 12:39 PM 3/12/01 -0500, you wrote: >We have

RE: Any recommendations on an E-commerce software?

2001-03-12 Thread paul smith
Which database software are you using? best, paul At 12:39 PM 3/12/01 -0500, you wrote: >We have 2.91. > >There are tonnes of select *'s in the queries. The code is not written very >efficiently at all. Some templates take seconds to process and we have this >running on pretty hefty machine Del

OT:XSLT sorting

2001-03-12 Thread Kurt Ward
Sort of off topic. I am recieving XML data via a CFHTTP POST and using Brett Suwyn's tag to process the results with an xsl transformation. The problem I am running into is when I try to sort a portion of the XML tree in the DOM. Here is a piece of the code: If I pr

Re: cffile and mapped or UNC drives

2001-03-12 Thread Howie Hamlin
Just the application server. Regards, Howie - Original Message - From: "Bud" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Monday, March 12, 2001 3:16 PM Subject: Re: cffile and mapped or UNC drives > On 3/12/01, Howie Hamlin penned: > >You need to make sure that CF us r

Re: cffile and mapped or UNC drives

2001-03-12 Thread Bud
On 3/12/01, Howie Hamlin penned: >You need to make sure that CF us running as a user account with rights to >the folder. You can set this up in the Services applet. Curious. Should you set up ColdFusion Executive or ColdFusion Application Server as the user, or both? -- Bud Schneehagen - Trop

RE: Javascript: Tearing my hair out

2001-03-12 Thread Cameron
The actual cause is that 1 document.write(fname); -- fname exists (form name passed to function) 2 document.write(document.forms.wheres.wherefield1.name); -- does not exist. use document.wheres.wherefield1.name or document.forms["wheres"].wherefield1.name -- forms become a child node under the do

RE: Displaying A Week Out Of Month

2001-03-12 Thread Larry Juncker
Yvette; This is a little script that I wrote that will prompt you for a tear and week no to give you the dates for. Year you are wanting

RE: Displaying message during loading..?

2001-03-12 Thread Terry Bader
I would use JavaScript for this... basically popup a small window with the message you want and then continue to the page that does the processing, then in the new page's BODY ONLOAD handling, call a function to close that window here's what I'm thinking

RE: Eday Calendar: data shared across threads and cannot be accessed without an active lock

2001-03-12 Thread Angél Stewart
Well thats just great! :) *beams merrily* See...I happen to know the CF Admin of the server intimately... Anyways..I just fixed it. There goes all my automatic read locking though... I must now weigh the potential benefits of this, against having to edit the code for this tag by hand, in time for

RE: Displaying message during loading..?

2001-03-12 Thread Jay Jennings
> i'm wondering how i can create a message on a page that's displayed > during the page is loaded. So when a query returns many results the > users gets this message saying the data is on it's way and hiding this > message when the query results have been loaded and displayed. Here's a cheater wa

RE: Displaying A Week Out Of Month

2001-03-12 Thread Yvette Ingram
Jeff Thanks. That looks like it will help Yvette -Original Message- From: Garza, Jeff [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 2:18 PM To: CF-Talk Subject: RE: Displaying A Week Out Of Month Try this script. It's ugly, but it works...

Displaying message during loading..?

2001-03-12 Thread Patric Stumpe
Hi there, i'm wondering how i can create a message on a page that's displayed during the page is loaded. So when a query returns many results the users gets this message saying the data is on it's way and hiding this message when the query results have been loaded and displayed. Hope someone can

RE: Eday Calendar: data shared across threads and cannot be accessed without an active lock

2001-03-12 Thread Benjamin S. Rogers
It sounds like your site is hosted on a server running ColdFusion 4.5.x. Your server does not allow access to shared memory variables without proper locking and the custom tag is not locking one or more Session variables appropriately. Benjamin S. Rogers Web Developer, c4.net Voice: (508) 240-005

RE: connecting to remote SQL server via TCP-IP

2001-03-12 Thread Rick Lamb
Make sure you have your default network library set to tcp-ip (this is in your "client network utility" on your machine). Rick -Original Message- From: Daniel Lancelot [mailto:[EMAIL PROTECTED]] Sent: Monday, March 12, 2001 1:06 PM To: CF-Talk Subject: OT:connecting to remote SQL server

RE: connecting to remote SQL server via TCP-IP

2001-03-12 Thread Benjamin S. Rogers
You will need to ensure that you have enabled the TCP/IP network protocol on the server: the default is Named Pipes. You can determine what protocol you are using and add protocols by running the SQL Server Setup utility. Benjamin S. Rogers Web Developer, c4.net Voice: (508) 240-0051 Fax: (508) 2

RE: Displaying A Week Out Of Month

2001-03-12 Thread Garza, Jeff
Try this script. It's ugly, but it works... #DateFormat(myday, 'mm/dd/')#  Jeff Garza Web Developer/Webmaster Spectrum Astro, Inc. 480.892.8200 [EMAIL PROTECTED] http://www.spectrumastro.com -Original Message- From: Yvette In

Eday Calendar: data shared across threads and cannot be accessed without an active lock

2001-03-12 Thread Angél Stewart
Hi all! I'm trying to get Eday Calender control running on a website that I'm doing here, and I keep getting a rather strange error. THe Tag's author says that he has no idea what's wrong, and has never come across the error before. Error Diagnosti

RE: Session Variables

2001-03-12 Thread Patricia Lee
This will work. |-Original Message- |From: Josh Daws [mailto:[EMAIL PROTECTED]] |Sent: Monday, March 12, 2001 2:12 PM |To: CF-Talk |Subject: Session Variables | | |I'm new at CF. I'm very experienced in ASP however. I am now |working on |one of my first CF projects and I

OT:connecting to remote SQL server via TCP-IP

2001-03-12 Thread Daniel Lancelot
Hi Can anyone give me any guidelines on how to setup a SQL server to allow remote access through enterprise manager? I try connecting to the IP address of the machine, but I get the error : Client unable to establish connection|ConnectionOpen (CreateFile() in SQL server registration. Thanks Da

Bank of America Authorization Tag

2001-03-12 Thread Sean Renet
Has anyone built a tag to Authorize payments through Bank of America yet? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives: http://www.mail-archive.com/cf-talk@houseoffu

RE: cffile and mapped or UNC drives

2001-03-12 Thread Dave Watts
> the easiest way I have found to see if the drive can be > accessed is to go to the actual web server (either console > or PCAnywhere type connection) and hit run, and type in the > unc drive path. If you get through, so can the web server. This isn't necessarily true. In NT, for example, whe

RE: Mass Newsletter Distribution

2001-03-12 Thread Robert Forsyth
Look at IMS (Infusion Mail Server) from http://www.coolfusion.com . It rocks and is 100% CF based. Don't reinvent the wheel...we use it because it allows for 100% customization. just my .02 Robert Forsyth Director of Web Operations Irides, LLC [EMAIL PROTECTED] Phone: 202-364-7831 Fax: 202-

Session Variables

2001-03-12 Thread Josh Daws
I'm new at CF. I'm very experienced in ASP however. I am now working on one of my first CF projects and I'm having trouble with session variables. In ASP I'm used to having the sessions expire when I shut down a browser. However, I'm declaring a session variable in cold fusion and when I close

RE: Looking for Job

2001-03-12 Thread Jeffry Houser
I have a few suggestions: A) Learn the difference between a new message and a reply. B) Research netiquette . Try to learn about standard e-mail protocol, such as relevant subject headers. C) Learn how to use your e-mail program, so you know how to create a new message, and a reply. (S

RE: cffile and mapped or UNC drives

2001-03-12 Thread Stephenie Hamilton
thanks for the info, i cannot change the account cf runs under so i will have to figure out another way to do what i wanted to do. thanks again, you guys are the greatest! :) -- Stephenie Hamilton -Original Message- From: Philip Arnold - ASP [mailto:[EMAIL PROTECTED]] Sent: Monday, Ma

Windows NT error number 16389 occurred

2001-03-12 Thread Alexandre Dornback
"Error attempting to write location redirection to web server (Windows NT error number 16389 occurred)" Do we know what this error message actually means? net helpmsg 16389 says there is no NT Network Help Message for that error number. Alex --- Outgoing mail is AVG certified Virus Free. C

RE: CFHTTP

2001-03-12 Thread Dave Watts
> Further to my existing query is cfhttp restricted to > coldfusion templates or can it it be compatible with > any executable awaiting the parameters within cfhhtp, > to quote the help docs > > "Post passes data to a specified ColdFusion page or to some > executable that interprets the varia

Re: Can CF work with a FileMakerPro database?

2001-03-12 Thread Jeffry Houser
Why not just use the FileMaker Web Server. It seems counter-productive to try to use CF. I believe that Lasso is the FileMaker language for the web (don't hold me to that)? FileMaker, depending who you talk to, is not a relational database, it's a flat-file structure, similar to Appr

Mass Newsletter Distribution

2001-03-12 Thread Andres Leon
Ideas, suggestions, experiences welcomed... My company has accumulated a sizable email list and has been using mass email distribution companies to send newsletters to these addresses. Due to escalating cost, my managers want to know what hardware/bandwidth would be required to send these newsle

RE: Any recommendations on an E-commerce software?

2001-03-12 Thread Aaron Rouse
They must not like other people very much. We tried to use Ablecommerce a little over a year ago and the tech support was terrible. They did nothing but try and point fingers at anything but their product for the problems we were experiencing. The problems turned out to be the installation was

  1   2   >