What kinds of applications can be launched from a windows form?

lydu 1 Reputation point
2022-02-03T23:13:16.913+00:00

I currently have a windows form desktop application and would like to build another application that can be launched from within the windows form app by a button. I want to know if I can develop this other application in any way I want and can still be able to launch it within the windows form? Is there limitation what can be launched form a windows form app?

Windows Forms
Windows Forms
A set of .NET Framework managed libraries for developing graphical user interfaces.
1,825 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Castorix31 81,636 Reputation points
    2022-02-04T05:15:42.69+00:00

    Is there limitation what can be launched form a windows form app?

    There is no particular limitation
    You can launch any Desktop application (with Process.Start, ShellExecute, CreateProcess, WinExec, etc...)
    or UWP applications (with IApplicationActivationManager)

    0 comments No comments