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. pwillia3

    Remote Script and Progress Bar

    There is no function/object name conflicts that I can see or are alerted to. What are you seeing? Does IE throw an error for you? My problem is that the screen is not updating when SetPosition is called from within MaterialType_OnChange.
  2. pwillia3

    Remote Script and Progress Bar

    Here is the code to create the progressbar: <code> function Body_OnLoad() { var x = document.body.scrollLeft + 10; var y = document.body.scrollTop + 10; //Create the progresss bar progressBar = new ProgressBar("progressBar", 10, 150, 0, 10, 1, 0, "#663399", "#ffffff")...
  3. pwillia3

    Child Window Function

    Yea I tried that and it didn't work. That was the first thing I tried. Thanks for the help. I decided to scrap the idea.
  4. pwillia3

    Remote Script and Progress Bar

    The progress bar does not move at all. The screen is not updating when I change it. As far as RS.htm, it has nothing to do with this problem. Also it must be on the server in the correct directory, not the client. I experienced with RS. Patrick
  5. pwillia3

    Remote Script and Progress Bar

    All, I have some remote scripts that queries a database. However there is no feedback to the user that anything is happening. So I created a progress bar that I want to update throughout the execution of the script. However all of my efforts to update (and the browser actually display) the...
  6. pwillia3

    Child Window Function

    Nothing worked unless I declared X in Child B like this: document.X = ...
  7. pwillia3

    Child Window Function

    Is it possible to call a member function on a global object that lives in a child window? Example: Parent A - Calls window.open("Child B", "child); Child B - Contains object X Parent A - Calls X.function(); <-- Is this possible in any way? Thanks, Patrick
  8. pwillia3

    Netscape and DOM

    Here is the function that is having a problem in Netscape. function Calculate_OnClick() { var ie = ((document.all)?true:false); var RSLaminateCalculator = RSGetASPObject("RSLaminateCalculator.asp"); var request = new String(""); var arrLCRequest = new Array(); var rows = new String("")...
  9. pwillia3

    Netscape and DOM

    All, I have a web page that when a user enters some information and clicks the 'Add' button the information is dynamically inserted into a scrollable table using DOM. In Netscape sometimes the new table row is not displayed. In other words I don't think the table is being redrawn. Has anyone...
  10. pwillia3

    VB Variable Sharing

    Hi all, I would like to have my vbsript call a Java Applet and wait for it to finish. When it finishes I want to pop up a small results window with an image and three buttons. The address for the image I get from the Java Applet. I would like to know if I can share variables between windows...

Part and Inventory Search

Back
Top