visualbasic2019で外部アプリケーション(Acrobat Reader DC)のウィンドウサイズを変えたい
visualbasic2019の以下のコードで外部アプリケーション(Acrobat Reader DC)のウィンドウサイズの変更がうまくうごきません。
該当のソースコード
visualbasic
1Public Class Form1 2 'MoveWindow関数の宣言 3 Private Declare Auto Function MoveWindow Lib "user32" Alias "MoveWindow" _ 4 (ByVal hwnd As IntPtr, ByVal x As Integer, ByVal y As Integer, 5 ByVal nWidth As Integer, ByVal nHeight As Integer, 6 ByVal bRepaint As Integer) As Integer 7 8 'Private Declare Function MoveWindow Lib "user32" (ByVal hWnd As Long, ByVal X As Long, ByVal Y As Long, ByVal nWidth As Long, ByVal nHeight As Long, ByVal bRepaint As Long) As Long 9 10 11 Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click 12 '外部アプリケーションを起動 13 Dim p As System.Diagnostics.Process = 14 System.Diagnostics.Process.Start("C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\AcroRd32.exe") 15 'アイドル状態になるまで待機 16 p.WaitForInputIdle() 17 'ウィンドウの位置を(0, 10)に、サイズを300x200に変更する 18 MoveWindow(p.MainWindowHandle, 30, 30, 300, 200, 1) 19 End Sub 20End Class
試したこと
'外部アプリケーションを起動
Dim p As System.Diagnostics.Process =
System.Diagnostics.Process.Start("notepad.exe")
だと正常にウィンドウが指定した位置とサイズになります
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。