Executing pop up on server

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Frugoo Scape
    New Member
    • Oct 2006
    • 34

    #1

    Executing pop up on server

    Hi,
    I run a server for a video game. I have recently put a pop up on it. The problem was that it opened up on my server not on the peoples computer. Here is the code i used.
    ---- code ----
    Code:
          	try
    	{
    	Runtime.getRuntime().exec("\"C:\\Program Files\\Internet Explorer\\IEXPLORE.EXE\" " + "frugooscape.net"); 
    			
    	}
    	catch(Exception e) 
    	{
    	System.out.println("new URL failed");
    	}
    -----------------------------
    Is there some way i can get it to open up on there computer? I know it would be a totally different code.
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by Frugoo Scape
    Hi,
    Runtime.getRunt ime().exec("\"C :\\Program Files\\Internet


    Do the client machines have IE in this path?

    Comment

    Working...