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 SkipVought 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. iguessthehandlecheck

    Form Field disappearing on submission

    I am experiencing a problem that I have tried to reproduce several times and failed. This issue is intermittent in nature and does not occur in every case but some particular users have been getting this error on daily basis. When they submit a request, the system generates an error message...
  2. iguessthehandlecheck

    Access variable through index

    I have fields defined based on a number that is keyed in, for example if i = 10 where i is an input field then the fields would be defined as <input name="field#i#"> which would result in field1, field2, --- field10. Is there a way to access these fields on the next page using the same loop? I...
  3. iguessthehandlecheck

    Form Field question

    Thank you for such a quick response. I was using the same loop but was trying form.fieldname+1.value. The max number is stored in a variable.
  4. iguessthehandlecheck

    Form Field question

    I have fields define based on an input number, for example if user keys in 5 then the fields are defined as field1, field2, field3, field4, and field5. There are other fields defined too in the form. Is there are way to access these fields 1 - 5 in javascript by using something like...
  5. iguessthehandlecheck

    component query returning performance

    Is it that you are only concerned about the CF side, I mean do you think that the queries are optimized too?
  6. iguessthehandlecheck

    Recursive Relation

    Another approach would be to run the query as follows: select level1, level2, level3 from table group by level1, level2, level3 while displaying, only print levels if they change. Can also use sort if want to display levels alphabetically.
  7. iguessthehandlecheck

    SQL for DB Cleanup Utility

    something like this should work: <cfquery name = 'abc' .... select distinct email from users where mailing = 'yes' </cfquery> this should provide only one record of that email address. Probably you would need to update such records to set the mailing flag after the mail is sent, to do that you...
  8. iguessthehandlecheck

    Export html/cf to an excel sheet with a twist

    I have not gone in detail of your code, but did you try using cfcontent with type ms-excel to save it as an excel. That would be lot simpler. Also, your <tr> and </tr> before and after Location is making it a separate row. You can take those out, make it like follows: <tr>...
  9. iguessthehandlecheck

    Check for valid date, if not valid create one for them

    If I am not mistaken, IsDate() would return true if date is passed as 12/06 which it would consider as december of 2006,, but this would definitely fail in an SQL insert if date field is defined, so you just need to be careful.
  10. iguessthehandlecheck

    Weird Comparison Error Using Dynamic Value

    Micheal, take "qry1." & out from your evaluation part. The following should work: <cfif toString(evaluate(TableValueField)) EQUAL toString(evaluate(CurrentFieldValue))> <font color="red">sOptionValue: #evaluate(TableValueField)#</font><br> <cfelse> <font color="green">sOptionValue...
  11. iguessthehandlecheck

    Window does not execute

    Dave, thanks for the quick response and although the logic you mentioned was supposed to work fine but it did not. Somehow, the main window still executed the code with the old information in the variables. The only thing I changed was setting opener.readytocontinue flag right before the close...
  12. iguessthehandlecheck

    Window does not execute

    I am trying to open a window and run a query within it. The window is supposed to set certain calling window variables and the main window needs to execute some code after the called window is closed. But as soon as the window opened with the following: var szURL =...

Part and Inventory Search

Back
Top