I believe I've figured out how to have a JLink async app start and connect to ProE. Here is my code for doing this:
The problem is when ProE starts it won't load any of the user's settings like config.pro or the config.win. Why would it do this? If it doesn't load the user's setting it's useless. Does anyone know how to have an async app load ProE in the same fashion as when I click my desktop icon? Thanks.
What I want to accomplish is a JLink app that will launch ProE and insert a button in the menu that will lauch a GUI to perform some file management operations.
Wildfire 3.0
Win XP pro
Code:
try{
AsyncConnection connection = pfcAsyncConnection.AsyncConnection_Start("C:\\Program Files\\proeWildfire 3.0\\bin\\proe.exe", null);
Session session = connection.GetSession();
}catch(jxthrowable x){ System.out.println(x.toString()); }
The problem is when ProE starts it won't load any of the user's settings like config.pro or the config.win. Why would it do this? If it doesn't load the user's setting it's useless. Does anyone know how to have an async app load ProE in the same fashion as when I click my desktop icon? Thanks.
What I want to accomplish is a JLink app that will launch ProE and insert a button in the menu that will lauch a GUI to perform some file management operations.
Wildfire 3.0
Win XP pro