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 John Tel 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: DarVar
  • Content: Threads
  • Order by date
  1. DarVar

    Help with loading an iframe

    Hi I have the following html file with 3 Javascript functions: I want to find a way to have function setFrame() call callPage(). Then have callPage() finish loading the iframe then call finishedLoading(). And once finishedLoading() is complete function setFrame() will continue. The problem is...
  2. DarVar

    Autorefresh a form every 10 seconds

    Hi I have a simple form I want to auto submit every 10 seconds I want the submit it with out refreshing the whole page. i.e. I tried the following but it refreshes the whole page first function setup(){ window.setInterval("submitform()",10000); } function submitform() {...
  3. DarVar

    Printing out a formated date

    Hi I want to be able to print out the date in a formatted string The format doesn't particularly matter Something like this Tue Mar 28 16:02:04 I read about localtime?? print "$localtime
  4. DarVar

    printing EOUSAGE is not formatted

    Hi my perl program prints the options allover the place print <<EOUSAGE; Usage: option 1 option 2 option 3 etc.. EOUSAGE However it doesn't print to the xterm in a formatted way. i.e. it isn't lined up like above. Is there a way to keep the output in line like above? Thanks in...
  5. DarVar

    Finding column with same value in another column

    I have a table with three coluumns id|name|label Given the label I want an sql statement to find distinct names with the same label Thanks in advance.
  6. DarVar

    Waiting for iframe to load

    I have the following three functions function getFieldValue(fieldName) { var myField = document.getElementById(fieldName); callServlet(myField); return myField.value; //doesn't wait } function callServlet(myField){ var url = '/EvaluationLibrary?settingField='+myField; var...

Part and Inventory Search

Back
Top