Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. nalbiso

    Help with date

    That worked. Thanks for the help! [thumbsup]
  2. nalbiso

    Help with date

    Thanks for replying. Actually startdate is the textbox where the customer puts in the date (in format mm/dd/yy). There are two textboxes. startdate and startingdayofweek, in which I would like the day of the week to appear depending on what date the customer puts in the startdate field.
  3. nalbiso

    Help with date

    Hello, I need help with a date processing function. I have a form where my customers will put in a date (in format mm/dd/yy). But I want that date to be used to update another field on the form with just the day of the week only. I've tried this: <script type=&quot;text/javascript&quot;>...
  4. nalbiso

    Hello, I need help with a date

    Hello, I need help with a date processing function. I have a form where my customers will put in a date (in format mm/dd/yy). But I want that date to be used to update another field on the form with just the day of the week only. I've tried this: <script type=&quot;text/javascript&quot;>...
  5. nalbiso

    Word/RTF - Different problem.

    Ok, I am having a new RTF problem. Now the page displays in both browsers but only shows one record in the table. Any suggestions would be greatly appreciated. Thanks! <link rel=&quot;stylesheet&quot; href=&quot;css/intranet.css&quot; type=&quot;text/css&quot;> <CFQUERY...
  6. nalbiso

    RTF - HELP!!!!

    Need Help! I have written the following code to display an rtf report for my site. It downloads and displays fine using Netscape. But just shows a bunch of garbage in IE. Can anyone tell me what's wrong before I yank out every strand of hair from my head? :) Thanks...
  7. nalbiso

    Looking for a better way to update a shopping cart

    I understand what you're saying. I originally had the code written that way. But that forces you to update one item in the cart at a time. I don't want to do that. I want to allow my customers to change quantities of multiple items and then be able to click on &quot;Update&quot; to update all...
  8. nalbiso

    Looking for a better way to update a shopping cart

    My problem is with updating. I am able to add new items in fine. The error I get is: Error Diagnostic Information An error occurred while evaluating the expression: session.MyCart[i].subtotal = form.price * form.quantity Error near line 18, column 24...
  9. nalbiso

    Looking for a better way to update a shopping cart

    Here's the Cart: ------------------------------------------------------------ [code] <script language=&quot;Javascript&quot;> function JumpToCat(){window.location=&quot;catalog.cfm&quot;;} function JumpToCheckOut(){window.location=&quot;Checkout.cfm&quot;;} </script> <cfinclude...
  10. nalbiso

    Looking for a better way to update a shopping cart

    Here's the Cart: ------------------------------------------------------------ <script language=&quot;Javascript&quot;> function JumpToCat(){window.location=&quot;catalog.cfm&quot;;} function JumpToCheckOut(){window.location=&quot;Checkout.cfm&quot;;} </script> <cfinclude...
  11. nalbiso

    Looking for a better way to update a shopping cart

    Oops. Sorry, I was trying something different when I post this code and didn't change it back. Here's what I have: ----------------------------------------------------------- <cfset i = 1> <cfloop from = &quot;1&quot; to =&quot;#ArrayLen(session.MyCart)#&quot; index=&quot;i&quot;> <!--- set new...
  12. nalbiso

    Looking for a better way to update a shopping cart

    Hello, I am attempting to write a script to update a shopping cart. I have the following code: -------------------------------------------------------------------------------------------------- <cfloop from = &quot;1&quot; to =&quot;#ArrayLen(session.MyCart)#&quot; index=&quot;count&quot;>...
  13. nalbiso

    ColdFusion Graph not displaying in Netscape -- WHY???

    Thanks for the response. I figured out the problem on my own after a long walk. :)
  14. nalbiso

    ColdFusion Graph not displaying in Netscape -- WHY???

    Hello, I have created a graph in coldfusion (fileformat=flash) but it won't display in Netscape. Does anyone know why? Thanks! <!-- Calling graph tag --> <cfgraph Type=&quot;Pie&quot; query=&quot;grandtotal&quot; ValueColumn=&quot;gtotal&quot; itemcolumn=&quot;Status&quot...
  15. nalbiso

    PLEASE HELP!! Radio button problem

    Sorry, I was moving stuff around trying to get this to work when I copied the Javascript. This one works: <Script Language=&quot;Javascript&quot;> <!-- Begin function checkRadios() { var el =...
  16. nalbiso

    PLEASE HELP!! Radio button problem

    Thanks for the suggestions, I really appreciate the help. But I tried both suggestions and I still get errors. When I move the break statement I still get the same error. When I changed the radio group statement, it stopped displaying the pop up all together. Any other suggestions would be...
  17. nalbiso

    PLEASE HELP!! Radio button problem

    Hello, I have a radio button validation script that should display an error message if no button is selected. It displays the error correctly when the form is submitted without a button being checked, but it also displays when the button is checked. Can someone look this over and let me know...
  18. nalbiso

    ERROR

    Hi! I keep getting this error and running out of things to try: &quot;The Crystal Reports Engine (CRPE32.DLL) could not be located on this server. ColdFusion's reporting functionality requires the Crystal Engine. Please verify that you have installed this component before using the CFREPORT...
  19. nalbiso

    Array Problem

    Thanks everyone. I figured it out on my own. I just had a loop in the wrong place in my code.
  20. nalbiso

    Array Problem

    Hi, I need some help with a code to append data to an array. When I add a new item to my cart, it just keeps creating a brand new array instead of just adding the item to the existing one. This is the code: ------------------------------------------------------------ <cfif NOT...

Part and Inventory Search

Back
Top