別のアプリケーションの Windows フォームから情報を取得しようとしています。
このアプリケーションのテキストボックスまたはラベルからデータを読み取ることはできますが、PANEL からは読み取れません。このパネルにはコントロールが含まれていないためです。
あなたの提案が必要です。
前もって感謝します。ここで私が使用しているコード:
For Each top As windowsAPIoutils.ApiWindow In enumerator.GetTopLevelWindows()
For Each child As windowsAPIoutils.ApiWindow In enumerator.GetChildWindows(top.hWnd)
If top.MainWindowTitle.StartsWith("TITLE_Of_APPLICATION") Then
'The class name of the control
If child.ClassName = "TEdit" Then
textbox1.Text = child.MainWindowTitle
End If
End If
Next child
Next top