View Single Post
  #2 (permalink)  
Old 07-31-2007, 07:47 AM
brianhks brianhks is offline
Senior Member
 
Join Date: Jul 2007
Posts: 134
brianhks will become famous soon enough
Does one just need to call the other or do they both need to run at the same time. If it is the first case just make the following call:
Code:
SecondProgramMainClass.main(new String[] { "first arg", "second arg" });
If you want them both to run at the same time you will need to start up a thread that then in turn does the above.
Reply With Quote