Opening a GUI application from a button in another GUI...

Soldato
Joined
18 Oct 2002
Posts
3,596
Location
Nottingham
I have a GUI based application and on the click of a button it needs to open another GUI based app - I only have a compile executable of the latter. The latter can maintain focus until it is closed.

Any ideas on how I do this. It needs to be cross-platform. I can do it crudely with "system" but that also opens a console/terminal which I don't want.

I'm coding in C++ using wxWidgets for the GUI.

Thanks
 
Why wouldn't you write seperate apps?

Not sure what you mean. I'm writing an app that processes output from others that already exist, but in the spec I'm only allowed one point of interaction, therefore my app has to execute 3 existing apps.
 
I am using wxWidgets for my app and hadn't realised what I wanted to do is already covered... "wxExecute". I need to RTFM properly next time... cheers.
 
Back
Top Bottom