Community Tip - Your Friends List is a way to easily have access to the community members that you interact with the most! X
I am writing a full asynch app for ProE WF 4 M010 using VS 2005 IDE, in which I am trying to launch proE in non-interactive mode using g:no_graphics option.Its failing at following function-
cAC = New CCpfcAsyncConnection
asyncConnection = cAC.Start(exePath + " -g:no_graphics
-i:rpc_input", ".")
Its failing with "pfcExceptions.XToolkitGeneralError"
All the settings of environment variable & services are in place.
same function works if I remove + " -g:no_graphics
-i:rpc_input" & starts proE intractively.
Need help in resolving the issue.
Rahul.
found solution bold portion was error causing.Thr shld be space after quote start(" -g)
cAC.Start(exePath + " -g:no_graphics -i:rpc_input", ".")
posting hoping to help others.