Computer Science, asked by minasingh09ak, 9 months ago

all the processes are _ in visual basic​

Answers

Answered by pawarohit02
1

Answer:

The Process component is a useful tool for starting, stopping, controlling, and monitoring applications. The System.Diagnostics namespace provides classes that allow you to interact with system processes, event logs, and performance counters.

Answered by diogonwazota
2

Answer:

I hope it helps

Explanation:

Process. A process starts, performs a task and ends. With the Process type, from System.Diagnostics, we launch processes directly inside programs.

Shell. Internally this subroutine simply calls Process.Start. It is useful for compatibility reasons. If you have used it often, it may be more convenient.

A summary. Processes are operating system level threads. They are started with the Process.Start function. By starting processes, we introduce many new capabilities to programs.

Shell is a built in Visual Basic function that executes a command line and returns a handle to that process. Shell takes an optional argument that controls the window style of the new process (maximized, normal, hidden, etc.). Unfortunately running another program like this doesn't give you much control over what is happening.

Similar questions