Calling a custom tag dynamically

2001-04-18 Thread JW
Can anyone help? I'm looking to call any one of 30? or so custom tags from a database depending on what category the visitor selects from the first page. i.e. The visitor chooses the health care category and on the next page, the health care custom tag is called: CF_healthCare Param1="param1"

RE: Security Scripting

2001-04-18 Thread Thomas Chiverton
Can someone add this to the FAQ ? What function would you use if the UserID contained characters and numbers such as SPAL12? cfset attributes.string REReplaceNoCase(attributes.string,"","lt;","ALL") cfset attributes.string REReplaceNoCase(attributes.string,"","gt;","ALL") cfset

RE: Calling a custom tag dynamically

2001-04-18 Thread Steve Martin
CFMODULE template="#someDynamicVar#" attributecollection=#SomeStructOfAttributes# nb CFMODULE template="foo" is the same as cf_foo attributecollection is what still appears to be an undocumented method of passing a dynamic list of attributes into a tag. You just create a structure containing

RE: EAetheif

2001-04-18 Thread Will Swain
Why don't you check to see if it put a cookie on your machine? Have a look at the cookie. Try deleting it then return to the site and see what happens. I would bet it was a cookie. Will -Original Message- From: Howie Hamlin [mailto:[EMAIL PROTECTED]] Sent: 12 April 2001 23:06 To:

CFApplet tag

2001-04-18 Thread mahmad
I want to use CFAPPLET tag. I have registered it in administrator. The following syntax does not work. cfform action=action.cfm method="post" CFAPPLET APPLETSOURCE="MoveVBA" NAME="var_name" HEIGHT="200" WIDTH="200" VSPACE="10" HSPACE="10" ALIGN="Left"

Re: ZIPPING with coldfusion

2001-04-18 Thread Michael Lugassy
Thank you all for answering. pkzip w/ cfexcute seemed to be the BEST solution. - Original Message - From: "Michael Lugassy" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 6:42 PM Subject: ZIPPING with coldfusion Could someone point to a good

CFApplet tag:Help Please

2001-04-18 Thread mahmad
Again i am requesting ,waiting u all. Thanks in advance. mahmad@acrolo

cfif myvar IS true vs cfif myvar

2001-04-18 Thread Bert
There seems to be a difference in the outcome of cfif myvar IS true and cfif myvar, when myvar is a number but neither 0 nor 1. Is this a feature to be used, or a bug, or have i missed something? Bert ps save the code below as trueorfalse.cfm to see what i mean: cfparam name="myvar"

Re: Does Studio have Built-in Scripting?

2001-04-18 Thread Paul Johnston
Just a quick question... has anyone else built any useful little helper applications or stuff like that with the Windows Scripting Engine? I have built things like a button that you click that creates a new document, asks you for various things like the name of the file, the author (there is a

html2pdf more

2001-04-18 Thread MIKE GEORGE
Thanks for the input, but one more question, I noticed in the documentation on it, it said you also needed to have an ANSI C compiler and the FLTK. Did you download these as well, or only htmldoc. Thanks Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/ Unsubscribe:

Waiting:: CFApplet tag...?

2001-04-18 Thread mahmad
Any one know about it? I want to use CFAPPLET tag. I have registered it in administrator. The following syntax does not work. cfform action=action.cfm method="post" CFAPPLET APPLETSOURCE="MoveVBA" NAME="var_name" HEIGHT="200" WIDTH="200" VSPACE="10" HSPACE="10"

Re: cfif myvar IS true vs cfif myvar

2001-04-18 Thread Tim Painter
Bert, CF equates TRUE as being the number 1 and False as being 0. So if you specify myvar to being anything other than 0 or 1, then the variable myvar is considered neither true nor false. When you say cfif myvar it it is the same as saying cfif myvar is TRUE or cfif myvar eq 1 likewise, cfif

Re: anyone else?!

2001-04-18 Thread Tim Painter
Jay, remove the single quotes around the fields - INSERT INTO myWork (siteTypeID, siteUrl, siteName, siteDescription, dateDone, sitePicture) - Original Message - From: "Jay Patton" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Monday, April 16, 2001 6:44 PM Subject: anyone

RE: cfif myvar IS true vs cfif myvar

2001-04-18 Thread Rich Wild
CF equates TRUE as being the number 1 and False as being 0. So if you specify myvar to being anything other than 0 or 1, then the variable myvar is considered neither true nor false. With respect, this isn't actually true... Try this: cfset this = 2 cfif this TRUE cfelse

Quick Question

2001-04-18 Thread Heidi Belal
Hi All, I'm having a bit of a problem here. I'm trying to add stuff entered into a form into a database table, but i get this error: Error Diagnostic Information ODBC Error Code = S0002 (Base table not found) [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name

Re: cfif myvar IS true vs cfif myvar

2001-04-18 Thread Tim Painter
You're right. My bad I think what it means is that if you say cfif myvar CF is basically saying "Does myvar have any value" so in essence, 0 would be FALSE and anything else would be TRUE - Original Message - From: "Rich Wild" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED]

Event List

2001-04-18 Thread Carlo van Wyk
I have a Staff Table in SQL with the following columns: FirstName, LastName, DateofBirth I would like Coldfusion to select the name of staffmembers birthday that will be next, and on which day it will be. How would one go about it? Perhaps there is an example on the web somewhere? Regards

RE: HELP!!!!

2001-04-18 Thread Jay E Wigginton
Funny part was that the form was functioning correctly... I could check a couple of boxes and submit the form and it accepted them input correctly... it was just the CFIF not working.. weird! :) Jay -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent: Wednesday,

NEED HELP!

2001-04-18 Thread Heidi Belal
can some one tell me the reason for this error and how i can solve the problem? Thanks! Error Diagnostic Information ODBC Error Code = S0002 (Base table not found) [Microsoft][ODBC SQL Server Driver][SQL Server]Invalid object name 'PeopleDirectory'. SQL = "INSERT into PeopleDirectory

RE: NEED HELP!

2001-04-18 Thread Terry Bader
find out how you either misspelled or what table you are actually trying to insert into... or make sure you are using the correct datasource... Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL PROTECTED]

Re: NEED HELP!

2001-04-18 Thread Jim Gurfein
Check your datasource "YALLA" to be sure that the database it points to contains the table "PeopleDirectory" Sincerely yours, Jim Gurfein President, CEO RestaurantRow.com, Inc. http://www.restaurantrow.com 914.921.3200 ext 101 914.921.9190 fax

RE: Event List

2001-04-18 Thread Terry Bader
select firstname from tbl_whatever where dateofbirth #createodbcdate(now())# order by dateofbirth DESC i think this should do ya but if not, then it is something real similiar... Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361

Re: NEED HELP!

2001-04-18 Thread C Frederic Valone
Heidi, It looks like the table you are trying two insert into (PeopleDirectory) does not exist in the SQL database represented in the YALLA datasource. Heidi Belal wrote: can some one tell me the reason for this error and how i can solve the problem? Thanks! Error Diagnostic

RE: Waiting:: CFApplet tag...?

2001-04-18 Thread Terry Bader
if the name of the file is CFAPPLET.cfm then you would use it as CF_CFAPPLET if the file is APPLET.cfm then you would use it as CF_APPLET Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL PROTECTED]

Re: Quick Question

2001-04-18 Thread Mark Woods
have you checked that you can using the YALLA datasource you can see the PeopleDirectory table? Just a simple select will confirm. It may be that the table was created by a different user to the one used by the datasource. If this is the case, you may need to refer to the table as something

Re: Custom Mail Header?

2001-04-18 Thread Sean Daniels
On 4/17/01 6:06 PM WebMaster wrote: Is there a way to add your own custom mail header with CFMail (like the "X-Mailer" line)? I've seen programs that let you do this and I think it would be very useful if I could tack a variable into the header of the message. For example: X-Variable:

Re: Event List

2001-04-18 Thread G
You could utilize the MIN function to return just the one record: SELECT MIN(DateOfBirth) as NextBirthDay FROM TableName WHERE DateOfBirth #CreateODBCDate(Now())# HTH Brian - Original Message - From: "Carlo van Wyk" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday,

RE: Event List

2001-04-18 Thread Carlo van Wyk
I have adjusted my code, but the output I get is not as desired. First of all it sorts them by year aswell. Like for instance: -Original Message- From: Terry Bader [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 2:20 PM To: CF-Talk Subject: RE: Event List select firstname

Re: cfif myvar IS true vs cfif myvar

2001-04-18 Thread Dave f
But the original query said there was a diff between cfif myvar and cfif myvar eq TRUE, implying that some non-zero values return FALSE, or at least NOT TRUE. - Original Message - From: "Tim Painter" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, April 18, 2001 7:28

RE: Event List

2001-04-18 Thread Carlo van Wyk
I have adjusted my code, but the output I get is not as desired. It sorts the people by year instead of sorting them just by dd/mm. I also don't want to display the whole list of birthdays after today, I just want to display the next or upcoming 2 birthdays after today. Like for instance:

Re: html2pdf more

2001-04-18 Thread Eric Dawson
I installed the binaries and haven't had any problems. Eric From: "MIKE GEORGE" [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] To: CF-Talk [EMAIL PROTECTED] Subject: html2pdf more Date: Wed, 18 Apr 2001 06:41:07 -0400 Thanks for the input, but one more question, I noticed in the documentation

Need Help for cfhttp

2001-04-18 Thread ychen
Hi, I have a cfm page that needs access to https site to get files back to my server, here is my problem and question. In order for me to get the file, I will need to login to https site first then click one submit form to get the file. I am able to use cfhttp to send username and password

Macs and CFFILE! WHY????

2001-04-18 Thread Jeff Fongemie
Hello cf-talk, I'm becoming very frustrated with Mac Browsers. I use CFFILE and the client in using MAC Internet Explorer. He gets errors when uploading a picture. I've got: cffile Destination="#Application.Filedir#" Action="upload" ACCEPT="image/gif, image/pjpg, image/pjpeg,

OT: HTML editor for idiots? recommendation?

2001-04-18 Thread Peter Theobald
Sorry for the OT post... I have a client who needs to be able to make simple text changes to static HTML pages. I tried having him use FrontPage but he managed to destroy the entire site, which I had to restore from backups. Can someone recommend an HTML editor that will simply download ONE

RE: CF Shopping Cart Solution?

2001-04-18 Thread Benjamin S. Rogers
Does someone with CF Webstore experience know how to use a CFModule call for this tag so that I can avoid having to place the custom tag in CF Admin? A CFX tag is a DLL; DLLs cannot be called through CFMODULE. You can download custom tags written in CFML that will probably handle what the CFX

SQL7 - OLE OR ODBC ?

2001-04-18 Thread Michael Lugassy
I'd love to hear your remarks and suggestions on OLE vs ODBC? which one is better for MSSQL7? We're operating on NT machine (P3-733Mhz Dual), 512RAM. Any pointers would be great! BTW: are there any functions/tags I should consider replacing or changing (not include CreateODBCTime)? Thanks,

Re: HTML editor for idiots? recommendation?

2001-04-18 Thread Bryan LaPlante
Try Dreamweaver, if you can walk them through using it, the wysiwyg editor is a lot more code friendly than M$ - Original Message - From: "Peter Theobald" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, April 18, 2001 9:09 AM Subject: OT: HTML editor for idiots?

2 /'s

2001-04-18 Thread savan . thongvanh
why does an additional / appear in the url after i submit a form? when i submit from 127.0.0.1/index.cfm?action=contact to index.cfm w/ input type="hidden" name="fuseaction" value="confirmcontact" if get the page i want but it's under the url 127.0.0.1//index.cfm

Should I optimize collections?

2001-04-18 Thread Michael Lugassy
I'm using Verity engine with CF. My Collections are PURGED and RE-INDEXED daily at off-peak hours. NO IMMEDIATE UPDATE/DELETE is made to the collections at any time. Should I still optimize the collections in between for better performance? Michael.

Re: HTML editor for idiots? recommendation?

2001-04-18 Thread Chuck Brockman
You might want to try First Page. It's a free html editor and decent. http://www.evrsoft.com/ - Original Message - From: "Peter Theobald" [EMAIL PROTECTED] To: "CF-Talk" [EMAIL PROTECTED] Sent: Wednesday, April 18, 2001 10:09 AM Subject: OT: HTML editor for idiots? recommendation?

Re: Macs and CFFILE! WHY????

2001-04-18 Thread Nick McClure
You need to use CFTry and CFCatch around your CFfile commands. You also need to make sure that you have enctype="multipart/form-data" in the form tag. At 10:09 AM 4/18/2001 -0400, you wrote: Hello cf-talk, I'm becoming very frustrated with Mac Browsers. I use CFFILE and the client in

RE: Event List

2001-04-18 Thread Diana Nichols
why not try sorting by dayofyear? e.g.: WHERE datepart('dy', dateofbirth) #dayofyear(now())# Haven't tested, so am not sure how the order by would work, but this should give you the recordset you're looking for. HTH D -Original Message- From: Carlo van Wyk [mailto:[EMAIL PROTECTED]]

RE: HTML editor for idiots? recommendation?

2001-04-18 Thread James Maltby
If you use Dreamweaver you can create template files that allow you to "lock" sections of the page that you don't want the cl-idiot-nt touching. J (alternately suggest re-building the whole site with a remote management system that hold editable content in a huge database and create a js pseudo

Putting Post CF Processed file into MAILPARAM

2001-04-18 Thread William J Wheatley
What i want to do is send a POST PROCESSED CFM FILE throuh a MAILPARAM in an CFMAIL rather then just cfincluding the file. Any ideas? The reason being with HTML email we're using some of the corporate users of the site can only view the html properly is the file is an attachment. So i have to

Re: CF Shopping Cart Solution?

2001-04-18 Thread Dave Hannum
There is CF_Image in the tag gallery. I use it with the catalog/shopping cart system I developed myself. it works great and you don't have to register it since it's a CFML tag. I don't know if it does exactaly what CFX_Image does or not though. Dave - Original Message - From:

Trouble with controlling decimal places in Access table currency datatype

2001-04-18 Thread Hubert Earl
Hi, I'm having trouble controlling the number of decimal places that is used by a column in an Access table with currency datatype. Although I set the number at 2, I keep getting 4. I'd appreciate any advice. Sincerely, --- Hubert Earl ICQ#: 16199853 AIM: hubertfme My Jamaican Art, Craft

RE: html2pdf more

2001-04-18 Thread John Wilker
Nope. Didn't even notice that part. Unless I've got them installed from something else, I didn't install them, just the htmldoc.exe and the cfx tag. J. John Wilker Web Applications Consultant Allaire Certified ColdFusion Developer www.red-omega.com http://www.red-omega.com Pepsi's "Come

Re: 2 /'s

2001-04-18 Thread Michael Lugassy
If possible, Try specifing form action="index.cfm?action=contact" without using the IP address (i.e: make the form runs locally, or with absolute/relative mapping : /forms/actions/index.cfm?actio=contact") I belive the 127.0.0.1 caused the problem. But I may be wrong. Thanks, Michael Lugassy

RE: 2 /'s

2001-04-18 Thread Adkins, Randy
Paste your form tag so we can isolate it for you -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 10:20 AM To: CF-Talk Subject: 2 /'s why does an additional / appear in the url after i submit a form? when i submit from

RE: slightly OT: html formatted e-mails

2001-04-18 Thread McAtee, Malcolm
I am trying to send an HTML formatted e-mail that degrades gracefully so that e-mail clients thqt do not support HTML formated messages will be able to read plain text and not a HTML code. I appropriated the following from a message that I have received --- this seems to get mixed results And

RE: HTML editor for idiots? recommendation?

2001-04-18 Thread Katherine Maltby
I never thought I'd suggest such a programme, but Dreamweaver might be what you're after. With the new version (4) you can make templates which have 'editable' and 'uneditable' regions, which allows you to lock off navigation and things that you don't want anyone to mess with. Also it includes

RE: 2 /'s

2001-04-18 Thread Thomas Chiverton
What does the form tag say ? if get the page i want but it's under the url 127.0.0.1//index.cfm ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

RE: Putting Post CF Processed file into MAILPARAM

2001-04-18 Thread Andrew Tyrone
I'm not sure what you mean... Do you mean send a processed cfm page (now html) as an attachment? - Andy -Original Message- From: William J Wheatley [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 10:35 AM To: CF-Talk Subject: Putting Post CF Processed file into

Setting form var with Java

2001-04-18 Thread Bruce, Rodney
Sent this once already but have not gotten any replies, can anyone help? A little help please. I am trying to use some javascript on my CF pages. I would like to pass the formname and fieldname to the function, perform an action and return the value: i.e. SCRIPT LANGUAGE = "JavaScript" !--

RE: HTML editor for idiots? recommendation?

2001-04-18 Thread Andy Ewings
If this is no good you could look at making th content dynamic and building a Remote Management System for the client to use to change the content. By using Java Script you can even allow the users to italisise, make bold, underline, etc.without requiring them to have any HTML knowledge.

CF studio RDS debugging?

2001-04-18 Thread Akbar Pasha
hi all, i am trying to debug a page on the remote server (RDS). i have added the required development mappings, and set the start page too. but when i start it, it gives me an error called --Can't debug request. --Unable to convert:0 to a port. --Date/Time: 04/18/01 11:00:22 --Browser:

Re: Putting Post CF Processed file into MAILPARAM

2001-04-18 Thread William J Wheatley
Yes, because we can show the processed CFM page (html) with an CFINCLUDE in the CFMAIL tag but i want to have it send that processed data via an Attachment Bill Wheatley Director of Development AEPS INC Allaire ColdFusion Consulting Partner Allaire Certified ColdFusion Developer

RE: slightly OT: html formatted e-mails

2001-04-18 Thread ron
I am trying to send an HTML formatted e-mail that degrades gracefully so that e-mail clients thqt do not support HTML formated messages will be able to read plain text and not a HTML code. Malcolm, We had a thread going about this last week. Here's the answer from the archives:

RE: 2 /'s

2001-04-18 Thread savan . thongvanh
the form returns the page i want but with an unusual url all my locations are relative and i'm running it locally. the results come back under 127.0.0.1//index.cfm any ideas? !---index.cfm?fuseaction=contact--- p class="title"Contact/p pWe love feedback about our site and opinions on other

make the select menu a must select

2001-04-18 Thread paul .
Hi Guys !. i need this select menu a must selct when i submit the form atleast one item has to be selcted Kindly help me - select name="member_role" option value="0"/option cfoutput query=qry_get_roles

RE: Setting form var with Java

2001-04-18 Thread Semrau, Steven L Mr SRA
Although this is a JavaScript question (OT) not a CF question. you might want to try oldvalue = eval("document."+FormName+"."+FieldName+".value") Steven Semrau SRA International, Inc. Senior Member, Professional Staff [EMAIL PROTECTED] [EMAIL PROTECTED] Com: (703) 805-1095 DSN: (703)

moving CF from Windows to HP-UX?

2001-04-18 Thread Marc Garrett
I'd like to move a simple CF site with a mySQL database from my local Windows machine to a shared hosting HP-UX. I know that the same CF code is supposed to run on both servers. Are there any issues I should watch out for, either with CF or mySQL? Any pointers to resources on porting from Win

RE: Putting Post CF Processed file into MAILPARAM

2001-04-18 Thread Andrew Tyrone
If you are just going to send one attachment, you can just use the MIMEATTACH attribute of the CFMAIL tag (from the studio docs): MIMEATTACH Optional. Specifies the path of the file to be attached to the email message. Attached file is MIME-encoded You COULD use CFMAILPARAM, but in this case

Re:Trouble with controlling decimal places in Access table c

2001-04-18 Thread Carol Bluestein
Look into the masks for each field and/or go into REGIONAL SETTINGS on your control panel. Carol L. Bluestein Senior Programmer NYS Office of Real Property 518-486-6335 [EMAIL PROTECTED] ~~ Structure your ColdFusion code with Fusebox. Get the

RE: HTML editor for idiots? recommendation?

2001-04-18 Thread Michael Rosario
If you decide to write your own solution, you may consider forcing your client to use a IE browser. Then you can use the HTML editing features of the browser. It's very easy to code. Here's some DOCS from MSDN... http://msdn.microsoft.com/workshop/author/dhtml/edit/default.asp The

RE: HTML editor for idiots? recommendation?

2001-04-18 Thread Garza, Jeff
One thing that I've done that has REALLY cut down on mainenance is I've incorporated EZEdit into some of my internal, end-user administrative templates and stored the resultant HTML in a DB for retreival. That way, there is no access to the source CFM files and any modifications are taken care

RE: make the select menu a must select

2001-04-18 Thread Thomas Chiverton
cffrom. cfselect. -Original Message- From: paul . [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 4:56 PM To: CF-Talk Subject: make the select menu a must select Hi Guys !. i need this select menu a must selct when i submit the form atleast one item has to be

RE: moving CF from Windows to HP-UX?

2001-04-18 Thread James Maltby
a KEY point to remember when moving from win to x systems is that linux and unix are case sensitive - so calling an image "image.gif" from you code, while storing it as "Image.gif" on the server - will throw an error - same goes for page links, calls to datasets, etc. The best method is to

RE: make the select menu a must select

2001-04-18 Thread Howarth, Craig (IBK-NY)
You have two options with this code: 1) Remove the option value="0"/option default value. That way a valid value will always be selected. 2) Change the test in the JS function to if (theform.member_role.selectedindex != 0), since the first item has an index of 0, not -1. The

RE: Need Help for cfhttp

2001-04-18 Thread JustinMacCarthy
Look at cfx_http in the taggallery... Justin -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 2:50 PM To: CF-Talk Subject: Need Help for cfhttp Hi, I have a cfm page that needs access to https site to get files back to

Sort of OT - F*cked Company slamming CF ??

2001-04-18 Thread Jason
http://www.fuckedcompany.com/comments/html/10760220471-1.html I can't believe people buy this crap? ~~ Structure your ColdFusion code with Fusebox. Get the official book at http://www.fusionauthority.com/bkinfo.cfm Archives:

Re: Last row inserted

2001-04-18 Thread Gene Kraybill
It's my understanding that CFTRANSACTION may not give guaranteed protection here, if your database supports row-level locking. Correct? Howie Hamlin wrote: Yep that's it. However, you should do a transaction so that another record isn't added while you're fetching the current highest ID.

RE: Macs and CFFILE! WHY????

2001-04-18 Thread Terry Bader
ok, i saw this before and did a search on my archieved emails, you might want to try using TRIM()... here is the email msg i am refering to: The answer is: Mac IE sends some bytes in a blank file field. So to get around this I

RE: HTML editor for idiots? recommendation?

2001-04-18 Thread Peter Froh
Take a look at eWebEditPro (http://www.ektron.com/single.cfm?doc_id=36) or even eMPower Express http://www.ektron.com/product.cfm?doc_id=843. There have been posts to this list that suggest other HTML editing tools so you might want to search the mail archives

Re: make the select menu a must select

2001-04-18 Thread savan . thongvanh
try working off this script function validate(arg1){ if(arg1.selectedIndex==0){ alert("Please make a selection"); arg1.focus(); return false; } } /script form onsubmit=" return validate(this.email);" select name="email" optionSelect and itemoption /select /form

Access 2000 SQL 'between ... and ...'

2001-04-18 Thread Bill Davies
Can any1 tell me whats wrong with this this? CFQUERY NAME="checkWorkerTimes" DATASOURCE="#Application.DSN#" SELECT id FROM timeChunks WHERE (worker = #Attributes.worker#) AND ('#Attributes.startDateTime#' BETWEEN ##[timeChunks.start]## AND ##[timeChunks.end]##) /CFQUERY Returns - ODBC Error

RE: Setting form var with Java

2001-04-18 Thread Daye, Marianne
No guarantees here, but try this: var oldvalue = FormName[FieldName].value Marianne Daye -Original Message- From: Bruce, Rodney [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 11:21 AM To: CF-Talk Subject: Setting form var with Java Sent this once already but have not

Re[2]: Need Help for cfhttp

2001-04-18 Thread ychen
where can I find cfx_http, it does not exists at http://www.fsc.follett.com/ website. does anyone has cfx_http tag? or where can I get it? Thank you very much YC ~~ Structure your ColdFusion code with Fusebox. Get the official

syntax for cli execution of a cfm page?

2001-04-18 Thread Tony Schreiber
What is the syntax to use to execute a cfm page directly from the commmand line? Something like cfml.exe /path/to/template.cfm? (Win2000, CF4.5) Also, where does the output go of the page when you do this? And, does RequestTimeout have any use here, or will the process run as long as it

RE: slightly OT: html formatted e-mails

2001-04-18 Thread McAtee, Malcolm
I guess I was after a simpler solution --- Is there a way of just setting the content-type and mime type in the code of the page itself ?? The person requesting this is not a cf developer Thanks Again -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent:

RE: make the select menu a must select

2001-04-18 Thread Saidi; Marwan
Jeff Garza sat down, thought things over, and said ~~ From the submit button call onClick="return validate();" ~~ It has been my experience that attaching onClick events to the Submit button can be problematic. You have two options to get around this: In your form tag -

RE: From MSSQL7 To SQL 2000

2001-04-18 Thread Lee Fuller
That's not ENTIRELY true. If your'e using Spectra (I know this isn't that list.. But it's worth the mention) you're in for a surprise. And actually seems to do the same thing on either SQL 7 or 2000, but doesn't seem to manifest itself until after the upgrade (i.e., if you go back to 7 from

http 500 Internal Server Error and CF installation

2001-04-18 Thread sebastian palmigiani
I have just installed CFServer 4.5.1 on Windows 2000 with IIS. I get the html pages to display but not the cfm pages, when for example, going to the cf administrator page. I get an http 500 Internal Server Error. I have followed all the instructions in the knowledge base article 7671 and the

RE: Sort of OT - F*cked Company slamming CF ??

2001-04-18 Thread Terry Bader
i cant believe you brought it here... leave this stuff off this list... CF-talk Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL PROTECTED] (757)581-5981 - Mobile [EMAIL PROTECTED]

CFML not being executed

2001-04-18 Thread Duane Boudreau
Just had a box put together with Win2k, IIS, CF 4.5.1 sp2 and for some reason it is not executing the CFML code. When I view the source the CFML code is still in the contained in the returned html. I've tried everything even reinstalling both CF and the OS. I checked the ISAPI filters, execute,

RE: Trouble with controlling decimal places in Access table curre ncy datatype

2001-04-18 Thread Braver, Ben
Erika, Good question! -- in this case, it was an audit requirement for exact calculations re: annual pay increases under a union contract. The payroll folks were giving us (IT) the data in a Currency field, with formatting showing 2 decimal places. They were unaware that internally it

Netscape equivalent of iframe

2001-04-18 Thread Rosa, Issac
Does anyone know of an equivalent in Netscape to the IE tag iframe. NS6 supports the tag, but we are currently using NS4 as corp standard. I need to embed documents(.doc, .ppt, .xls, .pdf) that automatically load when the page loads. Any help or suggestions would be greatly appreciated. Thank

RE: Access 2000 SQL 'between ... and ...'

2001-04-18 Thread Terry Bader
no '' around dates Terry Bader IT/Web Specialist EDO Corp - Combat Systems (757) 424-1004 ext 361 - Work [EMAIL PROTECTED] (757)581-5981 - Mobile [EMAIL PROTECTED] icq: 5202487 aim: lv2bounce

RE: Access 2000 SQL 'between ... and ...'

2001-04-18 Thread Adkins, Randy
Yes. Your Attributes.startdatetime is a DateTime field. That in the SQL Line should be the field name you are doing the Datetime comparison. Ex: (worker = 2) AND (myDateTimeField BETWEEN '01/04/01 12:15:00' AND '04/04/01 12:15:00') -Original Message- From: Bill Davies

Windows NT Error 109 occurred

2001-04-18 Thread Angél Stewart
"Error","TID=724","04/18/01","11:33:32","Unable to write reply -- client browser stopped waiting for request. " "Error","TID=724","04/18/01","11:33:33","Windows NT error number 109 occurred." "Error","TID=728","04/18/01","13:15:34","Unable to write reply -- client browser stopped waiting for

RE: syntax for cli execution of a cfm page?

2001-04-18 Thread Ruben Chadien
To set the template use SET CF_TEMPLATE_PATH=MyTemplate.cfm Set a query string.. SET QUERY_STRING=requesttimeout= Then just run the cfml.exe The output will be redirected to the screen. /Ruben Chadien -Original Message- From: Tony Schreiber [mailto:[EMAIL PROTECTED]] Sent:

Re: OT: DNS

2001-04-18 Thread GoingSideways
I haven't participated in the specific type of migration you mentioned, but I can tell you that if you're going to use Active Diretory in Win2K you should allow AD to install DNS as part of it's own installation (DCPROMO). It is far more reliable this way. There is a workaround you can use

DON'T FOLLOW LINK: Sort of OT - F*cked Company slamming CF ??

2001-04-18 Thread Saidi; Marwan
You need to be a little more careful. You posted a link to a site which contains the Jscript seeker worm. Nice. Fortunately, my AV software caught it, but that is most definitely not cool. And if you did it on purpose, you are an ass. Marwan Saidi -Original Message- From: Jason

Re: syntax for cli execution of a cfm page?

2001-04-18 Thread Mark Woods
The cfml.exe executes the template specified in the CF_TEMPLATE_PATH environment variable. So first set this to the physical path to the CFML template you want to execute. e.g. set CF_TEMPLATE_PATH=c:\inetpub\wwwroot\temp\test.cfm then run cfml.exe c:\cfusion\cfml.exe You can also pass query

RE: Netscape equivalent of iframe

2001-04-18 Thread Hayes, David
Take a look at ILayer. -Original Message- From: Rosa, Issac [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 12:31 PM To: CF-Talk Subject: Netscape equivalent of iframe Does anyone know of an equivalent in Netscape to the IE tag iframe. NS6 supports the tag, but we are

Re: CFML not being executed

2001-04-18 Thread Bryan LaPlante
Couple of things to look for. Forgive me I am not sitting at my W2k machine but you need to go to computer manager and find the IIS manager. Right click on the default web site or the site in question and go to the home directory tab. Look at application settings and see if you have an entry for

RE: Netscape equivalent of iframe

2001-04-18 Thread JLB
layer and Ilayer are the closest tags. But they are not nearly as easy to work with as iframes. -Original Message- From: Rosa, Issac [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 1:31 PM To: CF-Talk Subject: Netscape equivalent of iframe Does anyone know of an equivalent

Re: OT: HTML editor for idiots? recommendation?

2001-04-18 Thread Peter Theobald
Thanks everyone for lots of comments... But I guess I didn't describe the situation well. This client is very small, can't spend much money, and has ZERO knowledge of HTML (hence the analogy of my Grandmother has to be able to use it) 'First Page' is *not* wysiwyg you have to edit HTML code

RE: CFML not being executed

2001-04-18 Thread JustinMacCarthy
Sure the template is being called via the webserver? You got IIS log entries? Does cf administrator work Justin -Original Message- From: Duane Boudreau [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 6:24 PM To: CF-Talk Subject: CFML not being executed Just had a box put

RE: Netscape equivalent of iframe

2001-04-18 Thread Semrau, Steven L Mr SRA
ILAYER Steven Semrau SRA International, Inc. Senior Member, Professional Staff [EMAIL PROTECTED] [EMAIL PROTECTED] Com: (703) 805-1095 DSN: (703) 655-1095 -Original Message- From: Rosa, Issac [mailto:[EMAIL PROTECTED]] Sent: Wednesday, April 18, 2001 1:31 PM To: CF-Talk Subject:

  1   2   >