You do not have to add anything. In your main application, just start the process for other applications. Use Process.Start for it.
Update:
In the main application:
ClickStartVBApplciationButton(object sender, EventArgs e){
Process.Start("Path to the VB application EXE");
}
Similar way you can do it for other applicaiton as well.