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 gkittelson 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. Bodger2

    Javascript OO and XMLHttpRequest

    I have solved my problem. My primary requirement is to access my object from within the processReqChange function that is called by XMLHttpRequest so that I can manage functionalilty. Here is my solution: function myAJAXRequest (url, sendOutputTo) { myRequest = new XMLHttpRequest ()...
  2. Bodger2

    Javascript OO and XMLHttpRequest

    Thank you for your replies. mbrooks - I need a little more power then is described there. I am having trouble understanding and working with the OO aspects of Javascript in regards to this. rac2 >this.processReqChange = function works, my processReqChange gets called, but it does not have...
  3. Bodger2

    Javascript OO and XMLHttpRequest

    I am trying to organize a request/response ajax thingy here and have written this. function myAJAXRequest (url, sendOutputTo) { this.url = url; this.myRequest = new XMLHttpRequest (); this.sendOutputTo = sendOutputTo; this.myResponseDoc = null; function processReqChange () { var state...
  4. Bodger2

    NAV 2004 and Perl

    I have NAV 2004 on XP not SP2, ActiveState Perl. When I login, I have a perl script copy a backup file from a mounted network drive to a local drive (a simple backup scheme). Well when it runs, the Perl script takes a long time and after that long time I get a dialog that "slides" out saying...

Part and Inventory Search

Back
Top