Re: Have I set a record?

2000-05-15 Thread Steve Aylor
Cf-Community!! - Original Message - From: "Randy Adkins" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 15, 2000 11:13 AM Subject: Re: Have I set a record? Greg, I agree. This use to be a nice list for information. However it seems recently it has turned into a chat

Weather Revisited

2000-05-15 Thread Computer Simplistics Suppoer
Ok.. so what I setup was the script to grab weather using cfschedule oh, every 15 minutes and store it in a database. Then I just grab the database value on the page. Is there a less computer intensive way to do this? I hate to do a query each time the page loads just for the temperature =). Can

Re: Hi

2000-05-15 Thread Jake Hileman
I'm using cf 4.5 and right now it's using 14,688k of memory with NO one hitting it all, I haven't loaded one cf page since it restarted. Jake - Original Message - From: "Russ Michaels" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 15, 2000 9:44 AM Subject: Re: Hi No

CPU usage through the roof!!

2000-05-15 Thread Tricia Mc Shea
I need some help... What would cause my servers CPU's to maxout? The severs has 2 PII 450s. Tricia Mc Shea -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

RE: CF and new browser windows

2000-05-15 Thread Jay Wigginton
Ok... I think I have gotten past the problem I had with the legend window... but now I was wondering if someone can tell me how or if a new window can be forced to stay "on top" of the current browser window and always visible... Is the something to add to the parameters of the

Re: OT: School Days - (was: Lighten things up a little)

2000-05-15 Thread Larry C. Lyons
For me it was an undergraduate Arts degree in Psych and post graduate degrees in Cognitive Psychology and Perception. Most of the technically related stuff I've learned came about during my pursuit of my degrees sincethe university psych departments were too cheap to hire programmers when they

RE: CFX tag

2000-05-15 Thread lsellers
Try CFX_UserManager by Lewis Sellers: http://www.intrafoundation.com/shareware.html Howie Hamlin ;-) Yes, there's a changepassword function in the tag. I've also seen the cfx_changepassword(?) tag around. Somewhere. (Don't have copy locally -- though I have a collection of most everything

RE: CF and new browser windows

2000-05-15 Thread Perez, Bismark
on the top of your page before the body add the following code: script language="javascript" function openpicture(picture, legend) { window.open('picture','NewWin','toolbar=no,scrollbars=auto,width=660,height= 505') if (legend == "y")

Re: E-Commerce Packages

2000-05-15 Thread Eric Hoffman
Cartease 2.0, available I think at www.cartease.com we used it successfully for two clients with smaller budgetsI think the code was a tad messy, but I tweaked it into a fast runner. Good Luck. Eric "Vance Duke" [EMAIL PROTECTED] 05/15/00 01:31PM A month or 2 ago, there was

Netscape Image problem

2000-05-15 Thread Pecora, James
Hello All, I am getting a wierd response from NN 4.08 (and others) regarding the resolution of an image. the code: img width=100% height=33 border=0 src=..\images\imgYellow.gif Will mostly resolve and show the image, sometimes though, it does not, and it show a broken image (It NEVER

RE: new look Allaire Developers' Exchange

2000-05-15 Thread lsellers
min, Are you talking about the new Developer's Exchange or ForumSpot? I have to assume its the former because ForumSpot doesn't require a username password. The dev exchange, yes. Thought I'd upload cfx_audioinfo .4 to the masses. Maybe not. But your site did tag uploads didn't it? hmm...

RE: Weather Revisited

2000-05-15 Thread Top-Link Tech (John Ceci)
Scott, Have your CF Schedule script create an HTML file with the weather in the format you output it and then just include it on your page and overwrite the file each time the schedule runs...Totally eliminates the need for a database call... HTH, John -Original Message- From: Computer

Cisco Local Director/CF and Winnt

2000-05-15 Thread Lincoln Manning
Is someone available off list to answer a couple of questions? -- Lincoln Manning Web Application Developer Applied Virtual Vision [EMAIL PROTECTED] http://www.avv.com -- Archives: http://www.eGroups.com/list/cf-talk

RE: Setting Focus to Field

2000-05-15 Thread Olive, Christopher M Mr USACHPPM
you could either combine the stuff into one function call (eg...) HEAD ... SCRIPT function doonloadstuff() { ... } /SCRIPT /HEAD body onload="doonloadstuff();" or you could separate them with semis. (eg...) body onload="document.TEST.fieldname.focus(); dootherstuff(); dosomemorestuff();"

RE: Slightly OT: Lighten things up a little

2000-05-15 Thread Owens, Howard
Ah, Jolt is passe ... I pick up this little packets at the local mini-mart. They're called "Energy Now" (from Phoenix Health Products, Oak View, Calif.). They contain Ma Huang Extract, Coffee Arabica Extract, Guarana Seed, Astragalus Root, Cayanne Fruit ... Ginko Biloba Leaf, Kava Kava Root

RE: Language, was RE: Hi

2000-05-15 Thread Steve Minton
Different contexts, the long way of writing whilst would have been while I was. Steve -Original Message- From: paul smith [mailto:[EMAIL PROTECTED]] Sent: 15 May 2000 16:42 To: [EMAIL PROTECTED] Subject: OT: Language, was RE: Hi H "While" then "Whilst" Are While Whilst

Re: Weather Revisited

2000-05-15 Thread kraybill
You could store it in an application variable... Gene Kraybill Scott Berry wrote: Ok.. so what I setup was the script to grab weather using cfschedule oh, every 15 minutes and store it in a database. Then I just grab the database value on the page. Is there a less computer intensive way

RE: Setting Focus to Field

2000-05-15 Thread Reilly, Jim
John, Create and Call a JS function to handle the current on load js code as well as the focus call like: HTML HEAD TITLE Test onload/TITLE script language="JavaScript" !-- function CheckOnLoad() { your other js code document.TEST.fieldname.focus(); .. any other js

RE: Netscape Image problem

2000-05-15 Thread Aaron Johnson
James, Try: img width=100% height=33 border=0 src=../images/imgYellow.gif instead of img width=100% height=33 border=0 src=..\images\imgYellow.gif Maybe? Aaron -Original Message- From: Pecora, James [mailto:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000 12:26 PM To: CF Talk (E-mail)

Re: OT-XML-SOAP...

2000-05-15 Thread Sean Renet
Shawn, can you give me the details on how to get this stuff? - Original Message - From: "Cary Gordon" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 15, 2000 8:49 AM Subject: RE: OT-XML-SOAP... me too, me too Where can I pick one up? Cary At 09:08 AM 5/12/00

Re: CF and new browser windows

2000-05-15 Thread Michael Blair
He is talking Javascript not Java. The two are not as related as they sound by name :-) Michael - Original Message - From: "Jay Wigginton" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 15, 2000 11:41 AM Subject: RE: CF and new browser windows Hey, Since I am a total

RE: Access Date/Time Function

2000-05-15 Thread ldang {Lily Dang}
Hi All, I am using Access 2000. When I try to do search for the date range say, from '1/1/00' to '12/1/00'. Access gives me an error saying that it's not divisible by 00. Any help would be greatly appreciated. Thanks, Lily

Re: Weather Revisited

2000-05-15 Thread Jennifer
At 11:58 AM 5/15/00 -0700, you wrote: Ok.. so what I setup was the script to grab weather using cfschedule oh, every 15 minutes and store it in a database. Then I just grab the database value on the page. Is there a less computer intensive way to do this? I hate to do a query each time the page

new cf site

2000-05-15 Thread Iztok Polanic
Hy! Check http://www.walkyries.com/index.cfm Bye, Iztok -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a message

RE: Cisco Local Director/CF and Winnt

2000-05-15 Thread Leyne, Sean
Lincoln, How about asking the questions publicly? We are going to be looking at implementing a balancing solution (most probably the Local Director) and would appreciate seeing what issues/questions you have and the responses you get. Sean P.S.Isn't a list-server/newsgroup to allow the

Re: Weather Revisited

2000-05-15 Thread Computer Simplistics Suppoer
Ahhh.. very nice, thank you. What tag should I be looking into for the creation of the html file? Scott Berry -- Computer Simplistics Support "Simple Solutions for a Complex World" http://www.c-s.net 661-296-4315 - Original Message - From: "Top-Link Tech (John Ceci)" [EMAIL PROTECTED]

Re: Weather Revisited

2000-05-15 Thread AustralianAccommodation.com Pty. Ltd.
the idea of having a dynamic weather message is fantastic my question is where do you source the wether information from as in from what part of a weather based information website ? - Original Message - From: Top-Link Tech (John Ceci) [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: Slightly OT: Lighten things up a little

2000-05-15 Thread Nick Loretta Pioch
HA HA HA HA! That's what I learned too with my engineering degree!!! (oh how many hammers I have used!) And before that, with my physics degree, I learned that the most difficult solution must be the best solution!!! HA HA HA HA ! -- Loretta Pioch Stewart McGowan wrote: ah I did

RE: Weather Revisited

2000-05-15 Thread Steve Bernard
You could cache the query or store the information in an APPLICATION or SERVER scoped variable. Steve -Original Message- From: Computer Simplistics Suppoer [mailto:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000 2:58 PM To: [EMAIL PROTECTED] Subject: Weather Revisited Ok.. so what I

Is cf-community offically dead?

2000-05-15 Thread pan
Apparently cf-talk has subsumed cf-community. Anyone besides me have a problem with this? Should we who are too much into being techno-geeks just fade away from cf-talk? The signal to noise ratio seems to have gone to hell in the past four months - when this happened before it was transitory

Re: Cisco Local Director/CF and Winnt

2000-05-15 Thread Lincoln Manning
OK, We have implemented a server farm with Local Director. It works sort of , but I find that the failover is slow. In other words If I shut down a server or if a server fails, the users connected to that server, are not automatically sent to another server. Most of those users experience

RE: Access Date/Time Function

2000-05-15 Thread Marcus
I am using Access 2000. When I try to do search for the date range say, from '1/1/00' to '12/1/00'. Access gives me an error saying that it's not divisible by 00. Any help would be greatly appreciated. thats because the computer is trying to do the math you have put in front of it. 1/1/00

Re: Weather Revisited

2000-05-15 Thread Computer Simplistics Suppoer
Can you give me some more insight into this? How would I accomplish this? Scott Berry -- Computer Simplistics Support "Simple Solutions for a Complex World" http://www.c-s.net 661-296-4315 - Original Message - From: "Steve Bernard" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday,

Cluster Environment

2000-05-15 Thread Michael Paulsmeyer
Hello All, My question is if two users hit a clustered site and both hit a different server, could those servers create the same cfid/cftoken combination? Asking this question because a client wants to move from session variables to client variables and I want to assure him that this situation

RE: Access Date/Time Function

2000-05-15 Thread William Adamsen
It looks like Access thinks they're integers and is trying to divide 1 by zero indicating that they're not actually a date type(?) You might try the IsDate() function to verify that you have a data type of type date and then force it to date using CreateODBCDate(). cfoutput#DateDiff("d",

CF_Headache and IIS

2000-05-15 Thread Todd Ashworth
Does anyone know of a way to have CF interact with IIS? Basically, what I am trying to do is make a CF app. that will set up the directories and paths and settings in IIS to get a web site up and going, 100% configured, without using the IIS management console. I'm sure there's a way to do it

RE: Passing Flash Variables to CF??

2000-05-15 Thread Jason Egan
Here is the thread that helped me - Original Message - From: "Mark Zukiwsky" [EMAIL PROTECTED] To: "Sean Renet" [EMAIL PROTECTED] Sent: Saturday, March 04, 2000 11:11 PM Subject: Re: Flash w/ CF Mark I went to flasher and I do not see an archive for the list. could you forward me your

RE: Able Commerce Help

2000-05-15 Thread Emmet McGovern
You just need to have unique wizards or are you trying to dulicate the whole package? Have you checked out the extensive faq's on customization at the able website? Emmet McGovern developer/ Byte Size Inc -Original Message- From: Russell, Bonnie [mailto:[EMAIL PROTECTED]] Sent: Monday,

Re: Weather Revisited

2000-05-15 Thread Jennifer
We get our weather through an ftp function. As I've said, someone actually pays for this service from AccuWeather. Basically, they have ftp servers with generated content for the area specified by the customer. We ftp in, grab the file in our folder, parse it, and create a text file for

RE: Weather Revisited

2000-05-15 Thread dougn
Check out www.weatherguys.com for some free weather tools. -Original Message- From: Computer Simplistics Suppoer [mailto:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000 11:58 AM To: [EMAIL PROTECTED] Subject: Weather Revisited Ok.. so what I setup was the script to grab weather using

RE: Access Date/Time Function

2000-05-15 Thread Kelly Matthews
Are you putting single quotes around the dates in the WHERE CLAUSE? If so try removing them it shouldnt need quotes I have run into this before. Kelly -Original Message- From: Marcus [SMTP:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000 5:04 PM To: [EMAIL PROTECTED] Subject:

Member database with access levels -=- CF4.0.1+Access97

2000-05-15 Thread Tiffany
Hi, I'm 18 years old and have been working with CF for a few months now. I have read books, articles, etc and have learned enough on my own to use CF with Access 97 to make simple DB's -- adding, updating, deleting records, setting variables, using CFMail, etc. You know, the easy stuff. I think

RE: Boolean fields in Foxpro

2000-05-15 Thread Bill Grover
Michael, Not a problem getting back. I have never tried to do a pack via ODBC. Pack is a native FoxPro command and as such I don't believe you can do it from the ODBC driver. It sounds like in order to physically remove the records you will need to write a FoxPro program that will pack the

Database Structure Question

2000-05-15 Thread Kurt Wiersma
I have a database which is going to hold events for a calendar app. In it I have a table for audiences which has an audienceID and audience name. Inside the calendar table I have a field for audienceIDs where I was thinking of keeping a comma delimited list of audienceIDs. The problem is I

RE: Cisco Local Director/CF and Winnt

2000-05-15 Thread Nick McClure
I would like to see this as well. At 04:32 PM 5/15/2000 -0400, you wrote: Lincoln, How about asking the questions publicly? We are going to be looking at implementing a balancing solution (most probably the Local Director) and would appreciate seeing what issues/questions you have and the

RE: Able Commerce Help

2000-05-15 Thread Russell, Bonnie
yes, I've followed their directions in the system administrators documentation, and that's how my troubles began. I need to have a complete copy of the program files since we'll be modifying them slightly for one customer. When we bought this package, that was one of the requirements and we

Cfhttp behind firewall???

2000-05-15 Thread joeug
Hello all, I am having trouble using CFHTTP to connect outside the firewall, i have specified all the specifiations need proxyserver, port etc and CF gives me back an error "Connection Failure" has anyone had similar problems? We are using CF4.5.1 My code looks like CFhttp

Re: Advice on approach

2000-05-15 Thread Nick Slay
Hi John, I don't think you'd notice any performance penalties at all. In each of your four templates that list out the links simply edit your CFQUERY tag that get's the links from the database, and add WHERE StatusFlag = 1. On the search page, add the same WHERE StatusFlag = 1 to the

Re: Member database with access levels -=- CF4.0.1+Access97

2000-05-15 Thread Computer Simplistics Suppoer
The basic idea I use on my pages works like this: Main Page (log in, which transfers to "member's area" page) Member's Area (set cookie with username access level, etc / also check for existence of cookies and then you know they have them and what resources they have access to / if no cookie,

Re: Searching with one form field

2000-05-15 Thread Nick Slay
Hi John, You can split out the words from the entry field using lists, for example: CFIF ListLen(EntryField, " ") GT 1 CFSET FirstName = ListFirst(EntryField, " ") CFSET LastName = ListLast(EntryField, " ") CFELSE CFSET Name = #Form.EntryField# /CFIF Nick At 14:02

Re: Weather Revisited

2000-05-15 Thread Computer Simplistics Suppoer
OH DANG!! Kick butt!! That is what we have all been looking for!! http://weatherguys.com/downloadweather.asp THANKS! Scott Berry -- Computer Simplistics Support "Simple Solutions for a Complex World" http://www.c-s.net 661-296-4315 - Original Message - From: [EMAIL PROTECTED] To:

Oracle 8.0 help

2000-05-15 Thread David Pierce
Has anyone found out how to return a result set from an Oracle stored Proc? Any help you could provide would be great. Thanks.. David Pierce Sharpsource (925) 240-8515 EX:114 [EMAIL PROTECTED] 1240 Central Blvd., Suite A Brentwood, CA 94513 www.sharpsource.com

Re: Storing Credit Card details securely

2000-05-15 Thread Russ Michaels
You seem to be making things more complicated for yourself. You do not need to send creditcard details back to clients for the world to see, you just store them on a database server that cannot be accessed from the web, I.E it is locally networked to the webserver. The most you would need to do

Re: calling a custom tag from another custom tag?

2000-05-15 Thread Russ Michaels
There is no problem doing this, you can happily nest custom tags inside each other. Satachi Internet Development -- Tel/Fax: 0870 787 3610 Mobile: 07050 648684 http://www.satachi.com email: [EMAIL PROTECTED] -- To join the Satachi-news mailing list send a blank

Setting up new site in IIS

2000-05-15 Thread Scott Weikert
Hey gang - I'm trying to set up a new site within IIS. I've got it set up to use the same IP address, but a different port number (81) in this case. All works well until I get to a point where I'm trying to use CFINCLUDE to load a template (and this isn't a CF issue, but a general directory

RE: Oracle 8.0 help

2000-05-15 Thread Troy Johnson
use the "output" parameter in the cfstoredproc tag. -Original Message- From: David Pierce [mailto:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000 3:14 PM To: [EMAIL PROTECTED] Subject: Oracle 8.0 help Has anyone found out how to return a result set from an Oracle stored Proc? Any help

Re: Member database with access levels -=- CF4.0.1+Access97

2000-05-15 Thread Chris Giminez
Have a one folder for login. Enable session variables in the application.cfm file Have another folder for protected templates. Again, enable session variables in the application.cfm file. When the user successfully logs in, set a session variable to their access level. Now, in the protected

RE: Slightly OT: Lighten things up a little

2000-05-15 Thread Michael Kear
This will amuse some of you no doubt ... my 20 year old son dropped out of university. He just wouldn't put in the work and the results reflected his effort. He's got a job in a support department for a software company. After he made the decision to drop out (only days before the decision

Re: Advice on approach

2000-05-15 Thread Russ Michaels
Just add another column into your database called APPROVED. When you insert submissions into the database just set this flag as true and do not display any entries that have this flag set as true. When you validate them, just set the flag to zero so that the records are shown. Satachi

Re: Uploading SQL Server databases

2000-05-15 Thread Russ Michaels
Your gonna be needing to do some reading up on database servers before you embark on this methinks. There is a big difference between an Access database file and SQL Server. A database server does not have separate files like Access, the database are self-contained within the server itself.

Re: Member database with access levels -=- CF4.0.1+Access97

2000-05-15 Thread Sharon DiOrio
Cookies are the answer yes. But even more than that, CF has the ability to maintain sessions for a user automatically (so that you don't have to manage the cookies, etc.) In your application.cfm file, put the following: !--- Enable session management --- cfapplication name="myApplication"

RE: JS - Controlling Form Dropdown Boxes:

2000-05-15 Thread Peter Tilbrook
Hmmm. They might have something at the JavaScript source (an excellent site) at: http://www.javascriptsource.com Cheers! -Original Message- From: Dave Hannum [mailto:[EMAIL PROTECTED]] Sent: Tuesday, 16 May 2000 2:23 AM To: [EMAIL PROTECTED] Subject: OT: JS - Controlling Form Dropdown

Re: CF_Headache and IIS

2000-05-15 Thread Jake Hileman
Yeah there is a way and I just set that up actually. But you can't do it in CF, must be done in ASP. :-( There is a way to do it with WSH but it's a big security risk. email me for more info.. I should probably sell what I wrote.. a lot of people seem to want something like it. :-) Jake

CF Web Store

2000-05-15 Thread Jake Hileman
If anyone here is or has used CF web store, please email me.. :-) thanks guys, [EMAIL PROTECTED] -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

Re: Slightly OT: Lighten things up a little

2000-05-15 Thread Jake Hileman
word, that's what i'm saying... school can NOT keep up. half the professors there got their degrees in the early 80s and late 70s... bleh.. please mr. professor have a seat, lemme show ya a lil' sumtin sumtin.. :-) as you can tell, i'm young, i'm 18, own my own hosting company and finished my

Able Commerce

2000-05-15 Thread Jake Hileman
Anyone use Able Commerce? if you do, tell me :-) Jake -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=listsbody=lists/cf_talk or send a message to

RE: Access Date/Time Function, problem solved!

2000-05-15 Thread ldang {Lily Dang}
Thank you all for your help, I got it to work, I used #CreateODBCDate(1/1/00)# Kelly was right, Access doesn't like single quotes around dates. Thanks, Lily -Original Message- From: William Adamsen [mailto:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000 4:16 PM To: [EMAIL PROTECTED]

Re: Searching with one form field

2000-05-15 Thread John Allred
Nick, Thanks a bunch. I figured there was a technique like this, but I just couldn't find it. As it turned out, I figured another route to the same thing. Who is it who's famed for saying, "On the other hand, you could try..."? Dave? I simply added: OR lcase(FN + ' ' + LN) LIKE

RE: Weather Revisited

2000-05-15 Thread dougn
I thought you'd like that! It won't help you get data into a database to build your own tools, but it makes for a great free weather service. We use it in our AvantGo Palm/Windows CE channel and a few other areas. --Doug -Original Message- From: Computer Simplistics Suppoer

Re: Member database with access levels -=- CF4.0.1+Access97

2000-05-15 Thread Justin MacCarthy
Hi Tiffany, What you need to do is check that the user is logged in on each page you want to secure. One way to do this is the application.cfm to check if the user is checked in cfif not isdefined("session.loggedin") !--- if user not logged in --- !--- as this runs on every page ,

Re: Slightly OT: Lighten things up a little

2000-05-15 Thread Seth Petry-Johnson
Umm... you guys think you could move this thread to CF-Community? I really didn't want to be the one to complain about this, but this is REALLY, REALLY off topic. The *original* post to this thread was OT, and the actual subject of the thread has changed at least 4 times, taking it more OT each

RE: Weather Revisited

2000-05-15 Thread Scott Weikert
Weather Channel has something fairly similar - subscribe to their service (I dunno if it's pay or not - I didn't set up the relationship) and they'll, a few times over the day, FTP you some comma-delimited text files, that you can parse and dump into DB tables to your heart's content... they'll

Re: Member database with access levels -=- CF4.0.1+Access97

2000-05-15 Thread Computer Simplistics Suppoer
When do the session variables end? The great thing about the cookies is that if the user comes back a few days later.. viola! he can be automatically logged in. Scott Berry -- Computer Simplistics Support "Simple Solutions for a Complex World" http://www.c-s.net 661-296-4315 - Original

Re: Weather Revisited

2000-05-15 Thread Computer Simplistics Suppoer
Well, I could always setup a download for the graphic and other info to save them locally if I want, but in this case their server is so DAMN fast, that I have no problems displaying instant data. Thanks! Scott Berry -- Computer Simplistics Support "Simple Solutions for a Complex World"

Re: Weather Revisited

2000-05-15 Thread Computer Simplistics Suppoer
Any URL for that? I looked at their site but didn't find anything but their "magnet". Scott Berry -- Computer Simplistics Support "Simple Solutions for a Complex World" http://www.c-s.net 661-296-4315 - Original Message - From: "Scott Weikert" [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: E-Commerce Packages

2000-05-15 Thread S.E.Fling
--052A94E1DB6B8F98381B982B Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit I had good luck with cf_ezcart -- http://twcreations.com sf Vance Duke wrote: A month or 2 ago, there was discussion regarding Able Commerce. I am looking for some of the

Re: Database Structure Question

2000-05-15 Thread Heather Haindel
Assuming I understand correctly, you have two entities...audience and event. Each event on your calendar can be classified under one to many audience (types). Each audience (type) can be a classification for zero to many events. That gives you a many to many relationship between audience and

Re: Web registrars may take back your domain name

2000-05-15 Thread S.E.Fling
I'm not surprised that Network Solutions is the bottleneck, it took me 2 months just to change my e-mail address. The automated solution didn't work and whenever I tried to contact a live person, I kept getting referred back to the stupid forms. I finally had to create a letter, and FAX it to

RE: Slightly OT: Lighten things up a little

2000-05-15 Thread Owens, Howard
When ever I teach, my first night lecture ususally include a talk about this career field and one of the things I always tell the students ... "When I was a kid, I asked my mom about becoming a doctor. She said, 'Well, that's a fine job and you can make lots of money, but you never really stop

Hahah More

2000-05-15 Thread Computer Simplistics Suppoer
Ok.. now that my weather is working =) I need stock quotes and a search function: Stock Quote: I just have yahoo opening in another window with the quote, however, I would like to include the quote in the page. Any services that provide this? Search: Just a simple web search, yahoo is fine. It

Slightly OT: Stable door shuts

2000-05-15 Thread Peter Tilbrook
Microsoft, stung by criticism that its Outlook mail program helped the spread of the Love Bug virus, said today it will offer two new security features soon. An Outlook upgrade will prevent executable code from coming attached to email, and a patch will alert users when an email attempts to send

Re: Zip Convert

2000-05-15 Thread Joel Richards
--=_14808935==_.ALT Content-Type: text/plain; charset="us-ascii" JCSZIP is a really good Access 97 Database Web address is: http://www.jcsm.com/ At 06:23 PM 5/15/00 -0700, you wrote: Any access 97 databases that convert a zip code to a city? Scott Berry -- Computer

RE: CF_Headache and IIS

2000-05-15 Thread Dave Watts
Does anyone know of a way to have CF interact with IIS? Basically, what I am trying to do is make a CF app. that will set up the directories and paths and settings in IIS to get a web site up and going, 100% configured, without using the IIS management console. I'm sure there's a way to do

Re: Zip Convert

2000-05-15 Thread Computer Simplistics Suppoer
Thanks! Scott Berry -- Computer Simplistics Support "Simple Solutions for a Complex World" http://www.c-s.net 661-296-4315 - Original Message - From: "Joel Richards" [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, May 15, 2000 6:46 PM Subject: Re: Zip Convert

RE: Able Commerce

2000-05-15 Thread Paul's Mail
Yep, I have 5 sites up with Able. Now installing their auction software. Paul Burgess -Original Message- From: Jake Hileman [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 16, 2000 12:21 AM To: [EMAIL PROTECTED] Subject: Able Commerce Anyone use Able Commerce? if you do,

RE: Setting up new site in IIS

2000-05-15 Thread Bryan Laplante
I have a similar situation, where I have to develop multiple web sites on the same machine. I do like the last reply and set a mapping to the alternate root so that the relative links will resolve correctly and then I take an additional step as follows. 1. Go to

RE: CF_Headache and IIS

2000-05-15 Thread Tom Rainey
Is there a enterprise solution for standardizing file and variable case size when moving from cf on nt to unix? -Tom -Original Message- From: Dave Watts [mailto:[EMAIL PROTECTED]] Sent: Monday, May 15, 2000 6:55 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: RE: CF_Headache and

CF and the Palm VII

2000-05-15 Thread Nick McClure
I am trying to password protect a site for use with the Palm VII, however the pqa stuff does not support cookies. Does anybody know of a better way with CF to protect a site? -- Nick McClure [EMAIL PROTECTED] Technical Director 606.245.9656 squareFish www.squareFish.com

Re: Uploading SQL Server databases

2000-05-15 Thread James Sleeman
On Tue, 16 May 2000 00:02:17 +0100, Russ Michaels [EMAIL PROTECTED] wrote: Your gonna be needing to do some reading up on database servers before you embark on this methinks. I am a BSc. with a CS major, one of my final courses was for the most part made up of studying SQL in Ingres, so I

RE: Storing Credit Card details securely

2000-05-15 Thread James Sleeman
On Mon, 15 May 2000 12:32:14 +0100, Stewart McGowan [EMAIL PROTECTED] wrote: I think you're over complicating your business rules; if you store the credit card details why do u need to access them again at the client, don't u just charge the card for subsequent purchases automatically? Also

Zip Code FYI

2000-05-15 Thread Computer Simplistics Suppoer
There are some nifty tags in the dev exchange that use the USPS site to do a zip to city lookup, fyi. Scott Berry -- Computer Simplistics Support "Simple Solutions for a Complex World" http://www.c-s.net 661-296-4315

RE: CF and the Palm VII

2000-05-15 Thread Bryan Batchelder
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_01BFBEDE.00D33E70 Content-Type: text/plain; charset="iso-8859-1" Wow, I am working on something very similar. A colleague

Re: Able Commerce

2000-05-15 Thread [EMAIL PROTECTED]
At 07:20 PM 5/15/2000 -0400, you wrote: Anyone use Able Commerce? if you do, tell me :-) We have used it at http://www.rivermyst.com -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit

Re: Uploading SQL Server databases

2000-05-15 Thread Nick McClure
Correct, but different servers will do things differently, SQL server (so far as I can see) stores a database in two seperate files once created - .mdf and .ldf (data and transaction log files), my question is can I just replace these files with newer versions to bring the remote database

Replacing Letters in a String

2000-05-15 Thread Jonathan Karlen
This is a multi-part message in MIME format. --=_NextPart_000_0056_01BFBEBE.CE241C80 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Greetings - I am developing a parts database for a client which is keyed by part = number. He wants to be

RE: Uploading SQL Server databases

2000-05-15 Thread Dave Watts
Correct, but different servers will do things differently, SQL server (so far as I can see) stores a database in two seperate files once created - .mdf and .ldf (data and transaction log files), my question is can I just replace these files with newer versions to bring the remote database

RE: Uploading SQL Server databases

2000-05-15 Thread Nick McClure
I don't think you can simply overwrite these files safely, as metadata for the databases is stored in the master database. At least, that's how it works in earlier versions. If you can shut down any database clients (like CF) during the process, you can restore from a backup device file (that

Regular Expressions

2000-05-15 Thread David Cummins
Hi everybody I've got a bit of a problem with regular expressions. We've taken over development of a web site from other developers, and they didn't tell us which templates are scheduled to run automatically. My idea was to look for pages that don't have any user interaction in them, i.e. no

RE: Uploading SQL Server databases

2000-05-15 Thread Dave Watts
This is true the master db does contain info about the DB including the security settings and things like that. But I think as long as the services are stopped then there should not be a problem. Again I am not sure because the only thing I have done it with was a small static DB but it is

Re: Netscape Image problem

2000-05-15 Thread Jeff
james, :~~ : From: Pecora, James [EMAIL PROTECTED] : : I am getting a wierd response from NN 4.08 (and : others) regarding the resolution of an image. : : img : width=100% : height=33 : border=0 : src=..\images\imgYellow.gif

<    1   2   3   >