Re: Making 2D array

2001-08-22 Thread Jochem van Dieten
Jochem ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/cf-talk@houseoffu

RE: We've been assimilated...

2001-08-22 Thread Thomas Chiverton
> maybe cuz ie looks better than netscape :) And works - a side issue for a web browser, I know :-) ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co

Re: We've been assimilated...

2001-08-22 Thread Jochem van Dieten
Howie Hamlin wrote: > June Browser Stats (TheCounter.com) > > 1. MSIE 5.x 547358243 (79%) > 2. MSIE 4.x 55140983 (8%) > 3. Netscape 4.x 47151030 (6%) > 4. Netscape comp. 25254337 (3%) > 5. Unknow 3276947 (0%) > 6. Opera x.x 2069039 (0%) > 7. Mozilla 5.x 1876548 (0%) > 8. MSIE 3.x 1189018

RE: Could someone check this with non-IE5.5 ?

2001-08-22 Thread Thomas Chiverton
Hmmm - similar functionality, but much more clunky than mine :-) Incidently, example.html now shows what it is matching against in the browser's staus bar, which may help those of you with IE5 on Windows, from which I have been getting conflicting reports. > http://javascript.internet.com/forms/

OT: ms sql to ms access

2001-08-22 Thread Lorenzo Imperatrice
Hi Sorry for OT and for my english. i have a sql script and i wont this to became an access db how can i do to create a access db with a script for ms sql tnx L Lorenzo Imperatrice Project Manager [EMAIL PROTECTED] -- PROM

RE: ms sql to ms access

2001-08-22 Thread DeVoil, Nick
Lorenzo > i have a sql script and i wont this to became an access db Can you post the script? ** Information in this email is confidential and may be privileged. It is intended for the addressee only. If you have received

RE: Looping through lists

2001-08-22 Thread DeVoil, Nick
Chris, This isn't what you want to hear, but really your database design needs changing so that each keyword is in a separate row. If that's not an option, you could read the list of keywords and do a ListFindNoCase() on it. That will be incredibly slow though, if you do it for every entry in a

RE: ms sql to ms access

2001-08-22 Thread Lorenzo Imperatrice
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[UserProfiles]') and OBJECTPROPERTY(id, N'IsForeignKey') = 1) ALTER TABLE [dbo].[Invoices] DROP CONSTRAINT UserProfiles GO CREATE TABLE [dbo].[UserProfiles2] ( [UserID] [int] IDENTITY (100, 1) NOT NULL , [Compan

RE: Looping through lists

2001-08-22 Thread Craig Dudley
Why not use Verity ? -Original Message- From: Chris Geanious [mailto:[EMAIL PROTECTED]] Sent: 22 August 2001 05:01 To: CF-Talk Subject: Looping through lists Greetings, Am constructing a db search using (among other things) a form text area for keywords. In the data base there is a Ke

RE: db structure question

2001-08-22 Thread DeVoil, Nick
Paul, >wouldn't it be just as fast to stick the actual unique value of the look up table into the tbl_Mast_Table? Yes it would. However, I find that using a unique autonumber ID for every single table makes coding more standardised & therefore faster. Don't quite understand your second point. W

Re: Looping through lists

2001-08-22 Thread Hamid Hossain
Interesting, Chris, I usually use SQL statment as the following: SELECT * FROM dbname WHERE keywords LIKE '%#FORM.QUERY#%' That means, select all columns from dbname where keywords field contains the value of #FORM.QUERY#. % signs means, any set of charachters Regards, Hamid Hossain --- Chri

RE: ms sql to ms access

2001-08-22 Thread DeVoil, Nick
Something like this should work. 1. Make the following changes to the script: Take out statements like the first one. Remove all the square brackets Change IDENTITY(...) to int Change smalldatetime to date Change varchar () to text (Also if there are any text fields change them to memo... t

Re: Hostcentric

2001-08-22 Thread Bud
On 8/22/01, JB Mentzer penned: >* When I called tech support, I was asked if I'd like to give a number for a >planned call back. A tech called back a little early and shed more >light on why >my site wasn't working (namely, problems with another site hosted on >my server). Must have been my cli

Re: Looping through lists

2001-08-22 Thread Bud
On 8/21/01, Chris Geanious penned: >Greetings, >Am constructing a db search using (among other things) a form text area for >keywords. In the data base there is a KeyWords field which contains a >comma delimited list of keywords for each entry. > >I have a query which loops over the form text box

Re: Advanced Cold Fusion Training - Duluth, GA

2001-08-22 Thread Adam Phillip Churvis
> Has anyone attended the Cold Fusion Bootcamp at the Duluth, GA company? > > If so, what did you think of it? Did you like it? Do you recommend it? > > Any other information you could provide would be helpful. John, Talk to Erika Walker on the CF-Community list. She took our last bootcamp. O

Re: We've been assimilated...

2001-08-22 Thread Dave Hannum
I've still got my TI-30! It still works (when I've got batteries in it) Dave - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Tuesday, August 21, 2001 8:01 PM Subject: RE: We've been assimilated... > I hope not; the TI-30 came out when I was a hig

Re: Looping through lists

2001-08-22 Thread Bud
On 8/22/01, Bud penned: Then: WHERE somefield = '#somevalue#' and ( OOPS. Extra "(" --->(keywords LIKE ',#Trim(mycriteria)#,' OR 0=1) Take that out and try it. :) -- Bud Schneehagen - Tropical Web Creations _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ ColdFusion Solutions / eCommerce Development [

Variable scope for structures passed between templates

2001-08-22 Thread Aidan Whitehall
TemplateB creates a structure with 2 keys: variables.Opening.Value variables.Opening.String and returns it to TemplateA with In TemplateA, I'm trying to assign the two values returned with this: The first line throws this error: Error resolving parameter VARIABLES.OPENING.V

RE: db structure question

2001-08-22 Thread Paul Ihrig
Hey Nick Thanks. Your comment about ">Why does the app have to throw an error if the employee is missing - can't it just handle that?<" got me to thinking. first it ticked me off, then i realized what you where getting at. so what i need to do is instead of deleting employee data when they a fir

OT: limit on addresses sent in mailto?

2001-08-22 Thread Kevan . Windle
Odd one this, I'm putting a list of email addresses into a link as in href= mailto:#adresses# . Strangely it seems that it will only send 10 addresses, however many are in the list, and I've verified the list. Any ideas? ***

Re: limit on addresses sent in mailto?

2001-08-22 Thread CF-Talk \(SD Solutions\)
What happens when you do a simple cfquery and cfoutput of the table where the email-adress is stored ? The same problem ? Uwe - Original Message - From: <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, August 22, 2001 2:11 PM Subject: OT: limit on addresses sent in ma

Re: Bar Code Scan

2001-08-22 Thread Bob
Fuon See Tu Just to clarify. What you want is called a wedge scanner, This type of scanner plugs in to your keyboard cables INBETWEEN your keyboard and your computer. The scanner then reads the barcode and decodes it and fills in the data on screen. The scanner WILL NOT go through and fill in al

RE: Looping through lists

2001-08-22 Thread JSchlosser
This may be an example of what you are looking for: === Qry: Populate_job_Function - selects possible codes and descriptions - codes are comma delimited in tbl: gt_resumes.discipline field in Qry: Demographic_display === select code, description from gen_tables where table_name='functions' order

Looping through a CFfile upload

2001-08-22 Thread Terry Troxel
Has anyone had call to allow multiple file uploads from a single form submit and if so how did you approach it? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.the

RE: We've been assimilated...

2001-08-22 Thread JSchlosser
market? have you ever directly paid for NS or IE? It is a great marketing tool for its other apps, I'll admit, but it isn't like MS delivers shoddy products (no comment on IIS) - of course, I speak as a VAR for a product that was released YEARS before they got the bugs to a barely tolerable leve

RE: We've been assimilated...

2001-08-22 Thread JSchlosser
Was your the one with the red LED display that you couldn't read outside in the sun? One of our math teachers was the first on campus with one, wore it on his belt in place of the really high-speed slide rule he used to use (yes, I used a slide rule in high school). He gave me his and I still ha

With all this talk of HostCentric / Virtualscape

2001-08-22 Thread Jeffry Houser
With all this talk of HostCentric / Virtualscape, I thought I would chime in with my story last night. I have a client that hosts w/ Virtualscape and has been for a while. I typically do not get involved with the live site, just a developmental site that is separate. I'm filing email ye

RE: We've been assimilated...

2001-08-22 Thread Jeffry Houser
At 01:00 AM 08/22/2001 -0700, you wrote: > > maybe cuz ie looks better than netscape :) > >And works - a side issue for a web browser, I know :-) I've never had a problem with Navigator. Am I the one lucky one? -- Jeffry Houser | mailto:[EMAIL PROTECTED] AIM: Reboog711 | ICQ: 5246969 | Phon

RE: We've been assimilated...

2001-08-22 Thread Russel Madere
Was this overall? Or was this just for the Winders OS? Kind of curious, because here at Turbo Squid, we get slapped around by a vocal number of Mac users who don't use MSIE. Russel > -Original Message- > From: Howie Hamlin [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, August 21, 2001 5:5

RE: With all this talk of HostCentric / Virtualscape

2001-08-22 Thread JSchlosser
This is gonna be good. Which way should we face to see the mushroom cloud? JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 2

RE: We've been assimilated...

2001-08-22 Thread JSchlosser
go to https://members.magazine.org in both NS and IE and do it from a Mac and a PC - then say that again :-) JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Jeffry Houser [mailto:[EMAIL PROT

RE: We've been assimilated...

2001-08-22 Thread JSchlosser
They are the only ones I hear from, too. JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Russel Madere [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 22, 2001 9:10 AM To: CF-Talk Subject

RE: We've been assimilated...

2001-08-22 Thread Jeffry Houser
At 09:15 AM 08/22/2001 -0400, you wrote: >go to https://members.magazine.org in both NS and IE and do it from a Mac >and a PC - then say that again :-) I don't have access to a Mac, but... Navigator 4.7 works great IE 5 it works great Navigator 6 is giving me database errors when I chose

CF and PDAs

2001-08-22 Thread Scott Mulholland
I want to make some basic database querying and result displaying capabilities for wireless pdas or docked pdas using cf...I would like it to work with Palm and CE devices. Can anyone point me in the direction of some resources or where to start. Thanks in advance! Scott Mulholland ~

RE: We've been assimilated...

2001-08-22 Thread Carlisle, Eric
It could be some client specific code on the server that wasn't bug checked enough with N6 :) EC -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 22, 2001 12:34 PM To: CF-Talk Subject: RE: We've been assimilated... At 09:15 AM 08/22/2001

RE: We've been assimilated...

2001-08-22 Thread Katherine Maltby
Navigator have a lovely habit of messing up the layout of pages, usually due to tables and other such things. You're amazingly lucky if you haven't come across this before. I spend half of my life making sure things look the same on Netscape and IE, K Katherine Maltby Web Production Director --

RE: CF and PDAs

2001-08-22 Thread Thomas Chiverton
> Can anyone point me in the direction of some resources or > where to start. Not of hand, but as both the Palm and CE devices have HTML browsers, I think the basic KISS principle will apply - no graphics if you can help it, narrow tables of data, small navigation areas. ~~~

RE: With all this talk of HostCentric / Virtualscape

2001-08-22 Thread Russel Madere
Good thing I learned those 1950s style civil defense maneuvers. Can we say Duck and Cover? > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, August 22, 2001 8:14 AM > To: CF-Talk > Subject: RE: With all this talk of HostCentric / Virtualscape >

Re: Stored Procedure Question

2001-08-22 Thread Clint Tredway
Try running this stored procedure within cfquery... I bet it will work.. -- Original Message -- from: "Bruce Sorge" <[EMAIL PROTECTED]> Reply-To: [EMAIL PROTECTED] date: Tue, 21 Aug 2001 17:24:53 -0500 I have the following code: I have the SP on

Rochester, NY ColdFusion User Group Meeting Tomorrow!!

2001-08-22 Thread Rich Tretola
The next Rochester, NY ColdFusion User Group meeting is tomorrow Thursday 8/23 at 6:00 PM. Please contact me directly @ [EMAIL PROTECTED] to confirm your attendance and if you need directions. Thanks, Rich ~~ Structure your ColdFusion code with F

Re: We've been assimilated...

2001-08-22 Thread BEN MORRIS
Actually the software has been released under the working title "Passport" with the implant hardware to soon follow. Of course, speaking as a developer, I can't wait for complete MS domination of the browser market. NN is a pain I could live without. >>> "Howie Hamlin" <[EMAIL PROTECTED]> 08

RE: ms sql to ms access

2001-08-22 Thread Billy Cravens
Can't you use DTS? --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: Lorenzo Imperatrice [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 22, 2001 3:44 AM To: CF-Talk Subject: OT: ms sql to ms access Hi Sorry for OT and for my english. i have

Data driven Pop-Up / Status

2001-08-22 Thread BT
Anyone know of away to populate a popup wind or status window.. The purpose is to show results as a user adds search criteria to a query? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinf

Re: CF and PDAs

2001-08-22 Thread Alex
WAP search on google.com On Wed, 22 Aug 2001, Scott Mulholland wrote: > I want to make some basic database querying and result displaying > capabilities for wireless pdas or docked pdas using cf...I would like it to > work with Palm and CE devices. > > Can anyone point me in the direction of

RE: We've been assimilated...

2001-08-22 Thread JSchlosser
They used to work in an earlier iteration of NS6, now phft! Welcome to our world :-) NS changed, not us. JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Jeffry Houser [mailto:[E

RE: We've been assimilated...

2001-08-22 Thread JSchlosser
This is not a new site - it worked until NS changed. JoAnn A. Schlosser Senior Consultant Association Management Software Grant Thornton LLP Washington, D. C. 703.837.4428 -Original Message- From: Carlisle, Eric [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 22, 2001 9:39 AM To: CF

Re: We've been assimilated...

2001-08-22 Thread Owen Leonard
> 10. MSIE 2.x 1072927 (0%) > 11. Netscape 2.x 35990 (0%) > 12. MSIE 1.x 3082 (0%) > 13. Netscape 1.x 2026 (0%) C'mon... the REALLY scary part of this list is the last 4 items! Internet Explorer 1?! -- Owen Athens County Library Services http://www.athenscounty.lib.oh.us ~~~

RE: NS-6 db error (was We've been assimilated...)

2001-08-22 Thread BEN MORRIS
I have come across problems with Netscape 6 submitting form information. If I remember correctly, when you have a file upload in a form, no form fields after that upload get posted. This isn't just a display quirk (which are plentiful in NS 4.x), this is a major failure. Down with Netscape.

Copying a huge structure from Session to Request scope to avoid locking

2001-08-22 Thread Tim Dempsey
Folks, I have a (possibly) huge structure being maintained in Session scope. I am in the process of making sure that I have all the appropriate locks when referring to the structure. My question is this: One of my templates makes a number of references (some read only, some write) to this struc

RE: Open Source Content Mananagent System

2001-08-22 Thread Billy Cravens
Isn't ZOPE more of an application server (like CF, Jrun, or ASP) than a CMS? --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: Jared Clinton [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 6:54 PM To: CF-Talk Subject: RE: Open Source Content Ma

date format in CFgrid

2001-08-22 Thread Terry Troxel
How do you format for a date field in CFgrid? Terry Troxel ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.

Re: We've been assimilated...

2001-08-22 Thread Jochem van Dieten
[EMAIL PROTECTED] wrote: > They used to work in an earlier iteration of NS6, now phft! > Welcome to our world :-) NS changed, not us. HTML 4 didn't change either. Jochem ~~ Structure your ColdFusion code with Fusebox. Get the officia

White space/Stored Procedure/Query/ASP Developer griping

2001-08-22 Thread C. Hatton Humphrey
Okay, the topic isn't the best, but I don't think the list would like "How do I tell an ASP developer he's full of it when ..." as the topic. We've got a production server that was set up some time back with Win NT and CF 4.5.1. It's running several sites on IIS with connection to an internal SQ

RE: How can I merge the results of two queries. (tds)

2001-08-22 Thread Tyson Vanek
Why not just write a join in your query, like this: tblAuthors ID, Author, ACCNO tblBooks ACCNO, Title SELECT a.ID , a.Author , a.ACCNO , b.Title FROM tblAuthors a , tblBooks b WHERE a.ACCNO = b.ACCNO I think this is what you're looking for. Hop

RE: Open Source Content Mananagent System

2001-08-22 Thread Stephen Galligan
Hi, Yes zope is an Open Source web application server - cast your eyes over www.zope.org . It is currently at version 2.4.0 for download. Regards Stephen -Original Message- From: Billy Cravens [mailto:[EMAIL PROTECTED]] Sent: 22 August 2001 14:55 To: CF-Talk Subject: RE: Open Source Con

RE: Open Source Content Mananagent System

2001-08-22 Thread Thomas Chiverton
> Isn't ZOPE more of an application server (like CF, Jrun, or > ASP) than a > CMS? No. It features role based security, online editing, lots of stuff. I looked at a year ago before we choose coldfusion, and it was a bit immature. ~~ Structure you

RE: Looping through lists

2001-08-22 Thread Tyson Vanek
Chris, I agree with some of the other comments that your database design might need some work, but as an answer to your question I'll propose this. Say your form has a field called FORM.strKeywords which is the field in which the user will type a set of keywords separated by spaces. Here's what

database connections in Studio

2001-08-22 Thread Tim
I used to not have these problems, and it seems like they just started occuring since I added the upgrade to version 4.5.2 from CF Server 5.0. When I select the database tab in the Resources section of Studio's window and try to expand the tables of an access database, I get an error that reads "

Re: Looping through a CFfile upload

2001-08-22 Thread Deanna Schneider
Yep, I've done that. It was multiple image uploads, the number of which is at the user's discretion. Here's the basic code on the action page: Image #i# was uploaded successfully. INSERT INTO coopep.dd_photo(photoname, caseid) VALUES ('#serverfile#', #form.newid#) Deanna S

Re: Copying a huge structure from Session to Request scope to avoid locking

2001-08-22 Thread Jeffry Houser
My thought is yes. At 10:13 AM 08/22/2001 -0400, you wrote: >Folks, > >I have a (possibly) huge structure being maintained in Session scope. I am >in the process of making sure that I have all the appropriate locks when >referring to the structure. > >My question is this: > >One of my template

RE: ms sql to ms access

2001-08-22 Thread Lorenzo Imperatrice
what is DTS tnx L -Original Message- From: Billy Cravens [mailto:[EMAIL PROTECTED]] Sent: mercoledì 22 agosto 2001 15.49 To: CF-Talk Subject: RE: ms sql to ms access Can't you use DTS? --- Billy Cravens Web Development, EDS [EMAIL PROTECTED] -Original Message- From: Lor

RE: ms sql to ms access

2001-08-22 Thread Lorenzo Imperatrice
tnx Nick L. -Original Message- From: DeVoil, Nick [mailto:[EMAIL PROTECTED]] Sent: mercoledì 22 agosto 2001 12.11 To: CF-Talk Subject: RE: ms sql to ms access Something like this should work. 1. Make the following changes to the script: Take out statements like the first one. Re

Floating Status Bar.

2001-08-22 Thread BT
Anyone know of any good ones beside Geocities.. I'm looking at posting data to it to update a page status. ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm FAQ: http://www.thenetpro

Re: CF and PDAs

2001-08-22 Thread corrigan
Thomas is exactly right. I did this during my internship (to give you an idea of how truly uncomplicated this really is) and CF did it beautifully. We had wireless PDA's on a local network with laser scanning capabilities. We were scanning barcodes and everything. Our biggest issues were those r

submit buttons

2001-08-22 Thread John McCosker
Has anyone worked a way round this? I have a form with multible submit buttons, each submit will perform a different procedure when submitted. I want to use the name attribute of each button to define my conditions in the next template e.g. process.. calculate..

Need a good example of CFPARAM

2001-08-22 Thread [EMAIL PROTECTED]
Morning everyone, I need a good snippet of code to use CFPARAM from a query that is checking whether the email exists in a database, and to insert those values into the text boxes and checkboxes. If anyone has some, it would be great. A look at the query would also be helpful. Thanks. Cassie D

Homer

2001-08-22 Thread Matt Bathje
Hi all. I'm attempting to use the MS Web Application Stress Tool to stress test my site(s). When trying to record a new script, it works great on ASP sites but (surprise surprise) it doesn't on ColdFusion ones. As I'm recording, it always puts a "Connection: closed" header at the top of each CF

Re: White space/Stored Procedure/Query/ASP Developer griping

2001-08-22 Thread Kwang Suh
Well, he is full of it :) You probably have some bug somewhere that's hard to track down. - Original Message - From: "C. Hatton Humphrey" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, August 22, 2001 8:30 AM Subject: White space/Stored Procedure/Query/ASP Develop

OT: activepdf-clarifications

2001-08-22 Thread Janine Jakim
I have set up a cold fusion page- I want the queries of that page to populate my pdf. So the steps I take are: 1. set up pdftoolkit 2 set openinputFile. 3. set up queries 4. Output queries 5. In the cfoutput query statement add SetFormFieldData 6. Tlkt.CopyForm/Tlkt.ClearQueries 7. Go open new p

RE: We've been assimilated...

2001-08-22 Thread Shawn Grover
Both browsers have quirks. But both are about as stable (I'm using IE 5.x and Netscape 4.76). For development, I prefer Netscape - if it works in Netscape, it'll work in IE 99.99% of the time Shawn Grover -Original Message- From: Jeffry Houser [mailto:[EMAIL PROTECTED]] Sent: Wedn

RE: Copying a huge structure from Session to Request scope to avo id locking

2001-08-22 Thread Craig Dudley
I'd make sure your client variables are stored in database and not use session variables at all. Just my opinion. -Original Message- From: Tim Dempsey [mailto:[EMAIL PROTECTED]] Sent: 22 August 2001 15:14 To: CF-Talk Subject: Copying a huge structure from Session to Request scope to avoi

RE: Open Source Content Mananagent System

2001-08-22 Thread Raymond Camden
If Zope isn't an app server, what does it run on? Ie, Spectra runs on CF, what about Zope? === Raymond Camden, Principal Spectra Compliance Engineer for Macromedia Email: [EMAIL PROTECTED] Yahoo IM : morpheus "My ally is th

Re: White space/Stored Procedure/Query/ASP Developer griping

2001-08-22 Thread Maureen
At 10:30 AM 8/22/01 -0400, you wrote: >According to one of my fellow developers, one (and only one) of the sites is >now "slowly dropping record sets". It uses a stored procedure call made >from a query, but according to him the white space in the CFQuery tag is >causing the wrong results to be

RE: We've been assimilated...

2001-08-22 Thread Shawn Grover
My experience says these problems are from non-compliant code (i.e. using instead of ). One of my sites has a layout issue such as this in Netscape. (haven't had a chance to go fix it yet). However, all other sites I've worked on, were tailored for Netscape, and btw, they work fine in IE. Not

Stock Quotes

2001-08-22 Thread Ronald Winn
Any ideas on a good service that allows web servers to obtain stock quotes (preferably free). I'm building a flash and generator interface to display a stock ticker. Thanks Ron ~~ Structure your ColdFusion code with Fusebox. Get the official

RE: ms sql to ms access

2001-08-22 Thread Stephen Galligan
DTS- Data Transformation Services. These facilitate the importation and exportation of heterogeneous data between many data formats - be they databases, spreadsheets and even text files. -Original Message- From: Lorenzo Imperatrice [mailto:[EMAIL PROTECTED]] Sent: 22 August 2001 15:52 To

RE: CFHTTP inside a huge loop

2001-08-22 Thread Tony Schreiber
I have an app that runs for tens of hours that does nothing but cfhttps (it's doing price scans on products) and I haven't really had a problem. I do however, run it from a command line (ie, c:\cfusion\bin\cfml.exe c:\web\pricescan.cfm) but I'm looping over query results. Haven't had any cfhttp p

Re: Bar Code Scan

2001-08-22 Thread Tony Schreiber
I've been doing nothing but barcode apps for the last few weeks (warehouse management and shipping system, all in CF) and here's an extremely helpful tip: Keyboard wedge scanners have the ability to be programmed and most will come by default with a setting of adding a CR to each barcode scan. In

RE: submit buttons

2001-08-22 Thread Nate Smith
Look at the form dump at the bottom of the cfdebugging (if you have it turned on in your CFSERVER). You'll notice that you can check for input's of type image. For instance: You can then check for that particular button press using this code: -Nate -Original Message- From: John McCo

Re: submit buttons

2001-08-22 Thread Jamie W. Steenberge
if you pass this along then it 'should' see the name field. i don't see why it won't work i have it working on a few sites. Jamie W. Steenberge AIM - JSteenberge | ICQ - 863358 [EMAIL PROTECTED] ~~ Struc

Four Selects Related.

2001-08-22 Thread Paul Ihrig
Good afternoon. i was looking at Three Selects Related (Nate Weiss) i need to be able to do 4 Selects Related. if any one knows of a tag that would do this i would appreciate it. if you could also cc me directly i would appreciate it, since i am having problems with external mail at the moment.

RE: date format in CFgrid

2001-08-22 Thread Mark Smyth
hmmm i'm fairly sure that you can't, cfgrid presents data more or less how it is stored in the database. You'll have to format it when you are inserting the data so it is pre-formatted for output Mark Mark Smyth Macromedia Certified ColdFusion Developer Systems Union eBusiness Solutions 0186

Re: cfinclude tag in database field

2001-08-22 Thread Keith Meade
Is this documented anywhere? I played around for a while and could only get the technique to work for plain assignments. It doesn't seem to work for IF, WHILE, DO, FOR, etc. Am I missing something? Thanks! Keith Meade [EMAIL PROTECTED] - Original Message - From: "Brent Goldman" <[EM

Re: Floating Status Bar.

2001-08-22 Thread Dave Hannum
Check out the one in the Tack2 store code in the CF Examples. Dave - Original Message - From: "BT" <[EMAIL PROTECTED]> To: "CF-Talk" <[EMAIL PROTECTED]> Sent: Wednesday, August 22, 2001 10:41 AM Subject: Floating Status Bar. > Anyone know of any good ones beside Geocities.. I'm lookin

Re: submit buttons

2001-08-22 Thread BEN MORRIS
Use: The "x" is the x coordinate of the mouse when the image button is clicked (or something like that). - Ben Morris >>> John McCosker <[EMAIL PROTECTED]> 08/22/01 10:48AM >>> Has anyone worked a way round this? I have a form with multible submit buttons, each submit will perform a differen

Re: Need a good example of CFPARAM

2001-08-22 Thread corrigan
How about something like this? SELECT email as emailValue FROMtable WHEREwhatever = whatever Michael Corrigan Programmer Endora Digital Solutions www.endoradigital.com 630/942-5211 x-134 - Original Message - From: "Cassie@Dove" <[EMAIL PROTECTED]> To: "CF-Talk" <

Passing info from one window to another

2001-08-22 Thread Ben Densmore
Can someone tell me the best way to grab values from a form that is in a main window and use them to display data in a new window. I can write to the second window but I can't figure out how to grab 3 form fields I have in my main window and have CF grab those value in my second window. For exa

CF and WEBDAV

2001-08-22 Thread Mike Sullivan
I would like to put up a link to a WEBDAV file system, so that when a user clicks the link the file system comes up in the users browser as if they had opened a "web folder" (in ms parlance). Has anyone done this? Can someone point me in the right direction? Thanks Mike ~~~

RE: Open Source Content Mananagent System

2001-08-22 Thread Stephen Galligan
As regards Zope - look at this url: www.zope.org ta, Stephen -Original Message- From: Raymond Camden [mailto:[EMAIL PROTECTED]] Sent: 22 August 2001 16:08 To: CF-Talk Subject: RE: Open Source Content Mananagent System If Zope isn't an app server, what does it run on? Ie, Spectra run

RE: Looping through lists

2001-08-22 Thread Chris Geanious
Hi Nick and all who have responded, Thanx for the input. I am sure I will be able to make this work with all your help. I inherited the DB. Would love to have the keywords in seperate cells, but... Actually, it is an EndNote reference library that I converted to an Access db. If anyone has ha

RE: We've been assimilated...

2001-08-22 Thread Katherine Maltby
Why thanks for that Shawn, I'd never thought of that in three years of coding sites from scratch... Katherine Maltby Web Production Director -- United Kingdom http://www.thoughtbubble.co.uk/ Ph: +44 (0) 20 7387 8890 -- New Zealand http://www.thoughtbubbl

RE: submit buttons

2001-08-22 Thread Lorenzo Imperatrice
and at the top of the page U must insert: function submit_form(flag){ if (flag == 1) { vargo = "process.cfm" } else if (flag == 2) { vargo = "calculate.cfm" } else if (flag == 3) { vargo = "compare.cfm" } vargo = vargo + "&field1=" + document.form1.field1.value (et

Re: submit buttons

2001-08-22 Thread Don Vawter
I think you could handle this with javascript 1. Create a hidden form field with a name of "whichbutton" 2. Have as js function: function chButton (myvar){ document.forms[0].whichbutton.value=myvar; //sets the value of the hidden form field return true; } 3. in the onclick event of the b

RE: We've been assimilated...

2001-08-22 Thread Russel Madere
My problem with both browsers, but Netscape in particular, is the poor CSS and HTML 4.0 support. What do we have standards for if the browser companies decide to ignore them. I think I'm just going to format for Amaya. Russel > -Original Message- > From: Shawn Grover [mailto:[EMAIL PRO

RE: Stock Quotes

2001-08-22 Thread Mark Smyth
cf_stockgrabber is available on the exchange hth mark -Original Message- From: Ronald Winn [mailto:[EMAIL PROTECTED]] Sent: 22 August 2001 16:09 To: CF-Talk Subject: Stock Quotes Any ideas on a good service that allows web servers to obtain stock quotes (preferably free). I'm building

Re: Stock Quotes

2001-08-22 Thread BEN MORRIS
I've seen one posted on the Allaire developers exchange. http://devex.allaire.com/developer/gallery/index.cfm Haven't tried any out. >>> "Ronald Winn" <[EMAIL PROTECTED]> 08/22/01 11:08AM >>> Any ideas on a good service that allows web servers to obtain stock quotes (preferably free). I'm buildi

cfhttp Connection failure

2001-08-22 Thread Bud
What could cause this using CFHTTP when I can go to the URL directly in my browser? Thanks, -- Bud Schneehagen - Tropical Web Creations _/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ ColdFusion Solutions / eCommerce Development [EMAIL PROTECTED] http://www.twcreations.com/ 954.721.3452 ~

Re: submit buttons

2001-08-22 Thread Trishan Singh
Well for starters... you might want to do switch opposed to doing a lot of cfifs... its a preformance thing and then when you do that you name the buttons the same thing and switch on the VALUE of the buttons not the NAME Now one way of using images is with a dynamic form element.. do wi

CF Server and JRUN

2001-08-22 Thread Tony Gruen
Having just received JRUN Server we are considering installing it first in our development environment. Issue is that our dev server has CF5/IIS5 on it - does anyone know of the two are happy together? Our freaking IT Director gave me the CD when it came in but doesn't know where he put the box/bo

Re: date format in CFgrid

2001-08-22 Thread Terry Troxel
I figured it out finally. I have not used CFgrid very much and was unaware of the method using CFgrid with no call to a query and then using CFgridcolumn for the header call and finally using CFloop qith a call to CFgridrow with a comma delimited list of the variables you want to throw into the co

  1   2   >