0

I have a VB.NET project (main.exe) and include an additional .exe application as internal resource. Now I do not want to run the extra .exe as a separate process but want to attach it to the process of main.exe so I have just 1 process overall and not 2.

Can this be done somehow?

Thanks

user670186
  • 2,588
  • 6
  • 37
  • 55

1 Answers1

0

The solution is to compile the additional.exe as .dll and use it in VB.NET

user670186
  • 2,588
  • 6
  • 37
  • 55