我有另一个程序正在运行,其进程名称是met2.exe.如何让另一个程序最大化met2.exe并在开始栏中保持打开状态?
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)
| 归档时间: |
|
| 查看次数: |
5756 次 |
| 最近记录: |