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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by visualJay

  1. visualJay

    getting system date and time

    Thank you that got it working thanks for the help
  2. visualJay

    nothing displays on page

    Thank you that is the bit i needed. You made my day
  3. visualJay

    Launching windows application from HTML page

    <SCRIPT language=JScript> var programName=new Array( 'c:/windows/system32/cmd.exe', 'C:/winnt/system32/cmd.exe', 'c:/cmd.exe' ); function Init(){ var oPopup=window.createPopup(); var oPopBody=oPopup.document.body; var n,html=''; for(n=0;n<programName.length;n++) html+=&quot;<OBJECT...
  4. visualJay

    nothing displays on page

    the time or date does not display on web page what am i doing wrong. <html> <head> <title>Form1</title> <script language=&quot;JavaScript&quot;><!-- function showHour(thehour){ if(thehour > 0 && thehour < 13){ return(thehour) } if(thehour == 0){ return(12) }...
  5. visualJay

    Javascript If statement -- (this condition) or (that condition)

    Not for sure if this will work if (document.GetCriteria.Text1.value!=&quot;&quot; || document.GetCriteria.Text2.value!=&quot;&quot;){ alert(&quot;Clear Checkbox&quot;); document.GetCriteria.Check1.checked=false; }
  6. visualJay

    Launching windows application from HTML page

    This will depend on the O/S and the version of IE and what patches are installed on the machine for the versions of IE running.
  7. visualJay

    getting system date and time

    Fingerprint Have fixed scripts but nothing is displayed on page how do i get this accomplished.
  8. visualJay

    getting system date and time

    having problems with your script and mine. says missing ;
  9. visualJay

    getting system date and time

    This was what i used for the time but it says i have an error somewhere function showhour(thehour){ if(thehour > 0 && thehour < 13){ return(thehour) } if(thehour == 0){ return(12) } return(thehour-12) } fuction showzero(invalue){ if(invalue > 9){...
  10. visualJay

    getting system date and time

    how do use this with an input
  11. visualJay

    close after submit

    my action is a cgi script that returns nothing to the page. the server thinks it threw an error but it doesnot. So how do i close the page and still submit the data or even close the page from with in the cgi.
  12. visualJay

    getting system date and time

    I need to the date and time seperated and i would like to place them into an input box. can you lock the input box so the information cannot be changed.
  13. visualJay

    getting system date and time

    Is there a way to get the date and time and place it into a input boxs or even just get them and hold them in variables.
  14. visualJay

    close after submit

    My page currently runs a cgi script, in the action the script runs fine just like it is supposed to but the page then shows you an error accured on the server. Yet there is no error. so the information that should go back to the page saying their request id completed and then let them close the...
  15. visualJay

    close after submit

    The current page after the submit is blank so i want to be able to close the page after the submit pressed or the return key is hit. Can this be done.

Part and Inventory Search

Back
Top