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 strongm 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. Yelellav

    Data bind problem

    Can some help me figure out why the code below will not populate a drop down box. Thanks //build query string string thisSQL = "select distinct column1 from table1"; thisSQL = thisSQL + "where 0 = 0 "; string next; for(int i = 0; i < divList.Count; i++) { if (i == 0) next = "and "; else...
  2. Yelellav

    Oracle Trigger Syntax Error

    Thanks! That showed me the problem.
  3. Yelellav

    Oracle Trigger Syntax Error

    I am trying to create a trigger in oracle but when I run the code I get the following: Warning: Trigger created with compilation errors. Can anyone help me? CREATE OR REPLACE TRIGGER stoplight_flag_to_zero AFTER UPDATE OF status ON projects FOR EACH ROW WHEN (old.status = 'Active') BEGIN...
  4. Yelellav

    2D array to populate a select box.

    Based on your response I think I may only want a 1-D array of length two. The array I had was what I was expecting (when I looked at the view source), but I can not get it to populate the select box correctly either way.
  5. Yelellav

    2D array to populate a select box.

    Below I have attached some code that is populating a select box. It is reeaing a CF query into a JS 1D array and outputting the array into a selsect box. My problem is that I want to make the JS array 2D and when I try to do this, nothing works. If anyone can help out I would appreciate it. 1D...
  6. Yelellav

    CFFILE DELETE through a directory

    In case anyone else is wondering how to do this, I found a custom tag that works great. http://devex.macromedia.com/developer/gallery/SearchResults.cfm?Keywords=delete+directory&category=*&searchOptions=0
  7. Yelellav

    CFFILE DELETE through a directory

    Can anyone help me figure out how to recurse through the directory to delete multiple levels of files and folders using CFFILE. I can delete the top level fine (i.e. one folder and all files in that folder), but when I try to delete a folder within a folder that contains files I get the error...
  8. Yelellav

    STOP cfincluded from refreshing

    Does anyone know how to stop cfinclude from refreshing the &quot;main&quot; page. I have a directory page that is included into my main page. When a link on the directory is clicked I lose any information that the user has put into the page, before they have had a chance to submit. Is there...
  9. Yelellav

    cfinclude refresh problem

    philcha I tried what you suggested but I couldn't get it to work. I am not sure how Attributes.Field1 will retain the value of the form field when the form is not submitted?
  10. Yelellav

    Keep form values

    Does anyone know how I can keep the value that a user puts into a text box, so when the page refreshes the text box will keep the users input (before the form is submitted)?
  11. Yelellav

    cfinclude refresh problem

    Does anyone know how to keep the value a user inputs into a textbox if the page refreshes. I have a couple of textbox's that the user enters values into. One of the fields is populated dynamically when the user clicks on the page that is displayed with cfinclude. When the user does this all of...
  12. Yelellav

    How to keep textbox value?

    Does anyone know how I can keep the value that a user puts into a text box, so when the page refreshes the text box will keep the users input?

Part and Inventory Search

Back
Top