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 Chriss Miller 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: *

  • Users: CFDev
  • Order by date
  1. CFDev

    Follow Up to Check Box Problem

    Here's a follow up to bmacman's Check Box Problem posted on 11/7: I have a data entry page (UpdateDetail.cfm) which allows the user to either update or bypass numerous (5-30) actl_perf_amt records. This, and a number of other hidden fields, are then passed to the action page (UpdatePerf.cfm)...
  2. CFDev

    Passing form variables incorrectly.

    Thank you, thank you, thank you John. Worked like a charm!
  3. CFDev

    Passing form variables incorrectly.

    I'm passing a date from SelectPerfDate.cfm via drill down box as follows: <SELECT NAME=&quot;dateSelected&quot; SIZE=&quot;3&quot;> <CFOUTPUT QUERY=&quot;GetMonth&quot;> <CFSET choice = #mth_name# & #year#> <OPTION VALUE=&quot;#trim(mth_name)# #trim(year)#&quot;>#mth_name# #year#   ...
  4. CFDev

    Comma delimited list not returning &quot;0&quot; values

    I'm trying to pass the following 9 data values from an update.cfm to an action page: 8.67, B, 25.00, B, B, 96.00, B, B, B (B is an indicator for a check box which, when selected, bypasses the records and should produce a value of 0) However, a check of my ouptput returns: 8.67,25.00,96.00...
  5. CFDev

    Array to List.. then Loop and Update (another CF rookie)

    Thanks Sylvano:-) The 9 data records are entered as follows: 8.67, B, 25.00, B, B, 96.00, B, B, B (B=Bypass Record which produces .0000) Code test returns 8.67,25.00,96.00 so it is bypassing the appropriate records but should the comma delimited list look like 8.67,25.00,,96.00,,, ???? What...
  6. CFDev

    Array to List.. then Loop and Update (another CF rookie)

    I have a data entry page which allows the user to either update or bypass actl_perf_amt. This, and a number of other hidden fields, are then passed to an UpdatePerf (Action Page) in a comma delimited list. I first use the ListContains to cull out any bypasses (BypassMthCheck). I then want to...
  7. CFDev

    ListDelimiter problem with ListContains &amp; ListGetAt

    This one is killing me!! I am trying to use the ListContains and ListGetAt functions to update a list that has been passed from an array. I am using the default delimiter (comma). The values are passing to the action page as numerics such as .00, .00, l25.29, etc. I first look to see if the...
  8. CFDev

    Multiples SAVES while looping through arrays

    I'm trying to do multiple SAVEs while looping throuh an arrays without success. Any help would be appreciated. <!DOCTYPE HTML PUBLIC &quot;-//W3C//DTD HTML 3.2 Final//EN&quot;> <HTML> <HEAD> <TITLE>PGM Detail Information</TITLE> </HEAD> <BODY BGCOLOR=&quot;White&quot...

Part and Inventory Search

Back
Top