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 ----
-----------------------------
Is there some way i can get it to open up on there computer? I know it would be a totally different code.
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.
Comment