Re: more questions from an obvious newbie

2000-08-02 Thread Heather Haindel
Before calculating any line prices, set some variable to zero. Add each line price to this variable as you calculate the line price...your variable will then equal the sum of the line prices. --- Jon Tillman <[EMAIL PROTECTED]> wrote: > I need a bit more help (suprise). > > I am wondering how I w

How to disable JavaScript popup windows...

2000-08-22 Thread Heather Haindel
I'm not sure it was here, but I remember someone asking about how to get rid of all the windows some ISPs open up when a user loads your page... I haven't tested this, but I ran across a possible solution this afternoon... http://developer.irt.org/script/540.htm

Re: Formatting Table Join Output question

2000-05-17 Thread Heather Haindel
nttime, "hh:mm tt")# > Location: #location# > WebURL: #webURL# > > Audience: #name# > > Category: #name# > > Description: > #description# > > > ----------- > ---

Re: Very Simple HTML Question

2000-05-19 Thread Heather Haindel
I believe that your answer is no. See http://www.w3.org/TR/REC-CSS2/text.html#lining-striking-props You could try assigning a color to your text decoration...but it wouldn't be to standard. And I don't know if it would work. --- aslam bajaria <[EMAIL PROTECTED]> wrote: > Is it possible to have th

Re: Update Query

2000-06-03 Thread Heather Haindel
You need a primary key field that the user shouldn't be able to modify. Autonumber is the easiest way to do it in Access. That's the only way to uniquely identify a single record in your table. Otherwise, your data integrity would be compromised. --- Miriam Hirschman <[EMAIL PROTECTED]> wrote: >

Re: OT: ASP!

2000-06-11 Thread Heather Haindel
It'll puke if they put in an invalid user name and password. Check for rs.eof before you display their name and color. --- David Shadovitz <[EMAIL PROTECTED]> wrote: > Can any of you ASP programmers tell me whether the > following code will > work? > > It is the action page of a login form. It s

Re: problem with primary key

2000-07-13 Thread Heather Haindel
Double check that your record actually exists. select id from table where id=x (where x is the id you are trying to update) --- gregg Kachel <[EMAIL PROTECTED]> wrote: > Hi, haveing a crisis here. Everything was working > fine earlier, now all of > a sudden when I try to do an update on my memb

Re: Request Server Variables

2000-07-18 Thread Heather Haindel
This is a web server thing. As far as I know, certain server variables are always available. Check the documentation for you web server for details. --- Frank Mamone <[EMAIL PROTECTED]> wrote: > Is this CF4.5+ specific? What is the scope and > longevity of its contents? > > > > ---

Re: (OT)-Book on Intermediated/Advanced SQL

2000-07-21 Thread Heather Haindel
I just purchased SQL Server 7.0 Programming by Robert Vieira. It's been quite handy for SQL Server issues, but I haven't looked at the design chapter(s). ISBN: 1-86102-31-9 --- Christian Labrecque <[EMAIL PROTECTED]> wrote: > Hi all, > > Any suggestions for a good book on SQL programming > -DB m

Re: Help with passing values via url hyperlinks

2000-07-25 Thread Heather Haindel
Here's the basic idea... URL: action page: if url.button=optiona do this stuff if url.button=optionb do different stuff else do some default thing If the forms are basically the same, you can just set the form's action attribute and use the same form. ___

Re: Results from several like tables

2000-07-25 Thread Heather Haindel
select fielda, fieldb, fieldc from JAN2000 union select fielda, fieldb, fieldc from FEB2000 etc. Should do the trick. --- Howie Hamlin <[EMAIL PROTECTED]> wrote: > I have a client application where monthly data are > stored in a single > database (Access 2K for now) but in sep

Re: Javascript:Writing you're own validation routine.

2000-07-28 Thread Heather Haindel
In order to use this from HTML, I would use onClick="return validate()" for a button. Then the function submits the form. Not sure if this applies to your case or not. --- Angél_Stewart <[EMAIL PROTECTED]> wrote: > Ok, in order to validate a date of the format > 01-Jan-2000, someone wrote a > val

Re: SQL UPDATE question (was Update Query/Output question from a newbie)

2000-10-24 Thread Heather Haindel
Mike, You need to remove the quotes from your ID field (which is a number, I assume...) UPDATE tbldistrib SET distrib_name='#Form.distrib_name#', distrib_city='#Form.distrib_city#', distrib_state='#Form.distrib_state#', distrib_phone='#Form.distrib_phone#' WHERE distrib_

Re: HTML problem still here...

2000-10-30 Thread Heather Haindel
This should help: http://forums.allaire.com/DevConf/Thread.cfm?&&Message_ID=597339&_#Message597339 If it doesn't, try going to http://forums.allaire.com - click on search at the top and type in your function name, select your scope and click search. Good Luck, Heather --- ibtoad <[EMAIL PROTECT

Re: Input type="File"

2000-11-10 Thread Heather Haindel
In your form tag, you need to set the enctype: --- Norman Elton <[EMAIL PROTECTED]> wrote: > Well I'm not particularly looking for any > photojournalists, BUT: > > I'm trying to do an , but it > doesn't seem to work! In > reading some websites and documentation, it looks > like I need to insta

Re: help with stored prodedure

2000-03-24 Thread Heather Haindel
Try this in your query window: create procedure usp_prioritybid ( @BID int ) as SELECT * FROM PriorityStuff WHERE BID = @BID AND PriorityType = 'CP' OR PriorityType = 'Both' ORDER BY StartDate GO --- S R <[EMAIL PROTECTED]> wrote: > Hi everyone, > > I'm trying to create this stored procedure in

This list has definitely gone nuts

2000-04-26 Thread Heather Haindel
I'm getting up to 4 copies of some messages. What's going on? __ Do You Yahoo!? Send online invitations with Yahoo! Invites. http://invites.yahoo.com -- Archives: http://ww

Re: Simple Form ProblemII

2000-04-27 Thread Heather Haindel
would do that. "fld" is your string. --- aslam bajaria <[EMAIL PROTECTED]> wrote: > Can someone tell me how to parse a string. Like if > the > user inputs JOE'S COMPANY in the text box, how do I > search for the apostrophe and then use the following > code to insert in the database. > > Apprec

RE: REVERSE QUESTION --- Is there anything that Cold Fusion can do that ASP can't do?

2000-05-10 Thread Heather Haindel
I have yet to find a way to get .asp to duplicate the functionality of cfinclude. I guess this is supposed to be fixed w/ the new version (of IIS or ASP?)... __ Do You Yahoo!? Send instant messages & get email alerts with Yahoo! Messenger. http://im

*answer?*Re: Question(banging my head against a wal)

2000-05-12 Thread Heather Haindel
Try cf_querytoarray in the developer exchange. Then you'll be able to have the number of fields and their names. http://devex.allaire.com/developer/gallery/ --- Clint Tredway <[EMAIL PROTECTED]> wrote: > I am trying to build a dynamic browser based > database utility. Is there a > way to output c

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 event

Portland, Oregon: Ben Forta to Present

2000-11-27 Thread Heather Haindel
>From an Internet Professionals Northwest (http://www.ipn.org/) mailing list... Directions to OHSU are available at the IPN web site. *** ColdFusion 5.0 Preview with Ben Forta Tuesday December 5, 2000 *** Allaire’s B

RE: Learning Javascript Books,

2001-01-08 Thread Heather Haindel
The best book we've got here at work for JavaScript is "Professional JavaScript" (ISBN: 1-861002-70-X). There's also IRT's JavaScript FAQ which has excellent specific examples at http://developer.irt.org/script/script.htm. Heather ~~ Structure your

Re: OT Flash List

2001-03-01 Thread Heather Haindel
There is also the flasher list at chinwag... www.chinwag.com (under technical in the left navigation bar). --- "Guy J. McDowell" <[EMAIL PROTECTED]> wrote: > Hi CF_Folks, > > I'm trying to find a list similar to this one about > Flash and > ActionScripting, to no avail. > Can anyone point me in

Re: Query join problem

2001-03-19 Thread Heather Haindel
This will get you the email addresses for exact matches (zapSearch = body) for one advert_details record. This should at least help get you started. SELECT zapEmail FROMzap z WHERE zapSearch IN (SELECT body FROMadvert_details WHERE

Re: HTML problem

2001-03-22 Thread Heather Haindel
If images are designed at one size and displayed at another, chances are that something's going to look funny. What I've done and heard recommended is to cushion the edge(s) with table cells filled with background color or a solid color image (depends on which browsers you need to support). Leave