CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Jan 2012
    Posts
    1

    Exclamation Program works in Chrome, but not in Firefox.

    I have a program that displays a family tree, essentially a hierarchical system. When I run it in google chrome, the order of the nodes appears correctly. But in firefox, the nodes get reshuffled every time the page reloads. Is there any way to solve this problem and keep the nodes in their correct orientations?

    Thank you

  2. #2
    Join Date
    May 2006
    Location
    UK
    Posts
    4,473

    Re: Program works in Chrome, but not in Firefox.

    What sort of a program is it ie is it an Applet, JSP, JSF etc?
    Posting code? Use code tags like this: [code]...Your code here...[/code]
    Click here for examples of Java Code

  3. #3
    Join Date
    Jan 2012
    Posts
    2

    Re: Program works in Chrome, but not in Firefox.

    a java program (applet) runs under java runtime environment. It has nothing to do with browsers.

  4. #4
    Join Date
    May 2006
    Location
    UK
    Posts
    4,473

    Re: Program works in Chrome, but not in Firefox.

    a java program (applet) runs under java runtime environment. It has nothing to do with browsers.
    Not strictly true. An applet receives notifications from the browser for init, start, stop and destroy. Also if the applet is interacting with Javascript then the browser is involved.
    Posting code? Use code tags like this: [code]...Your code here...[/code]
    Click here for examples of Java Code

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured