如何让vb显示(最大化)另一个进程(窗口)

Geo*_*rea 0 vb.net

我有另一个程序正在运行,其进程名称是met2.exe.如何让另一个程序最大化met2.exe并在开始栏中保持打开状态?

vol*_*ody 5

尝试使用GetProcessesByName

Private Declare Function ShowWindow Lib "user32" (ByVal handle As IntPtr, ByVal nCmdShow As Integer) As Integer
Sub ShowAppWindow()
    Try
        Dim localByName As Process() = Process.GetProcessesByName("met2")
        For Each p As Process In localByName
            ShowWindow(p.MainWindowHandle, 3) ' SW_MAXIMIZE
        Next
    Catch ex As Exception
        ' do something
    End Try
End Sub
Run Code Online (Sandbox Code Playgroud)