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 TouchToneTommy 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: Yelellav
  • Content: Threads
  • Order by date
  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

    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...
  3. 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...
  4. 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...
  5. 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...
  6. 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)?
  7. 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...
  8. 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