需要帮助获得儿童窗户

时间:2013-11-01 02:28:22

标签: vb.net visual-studio-2010 vb.net-2010 handle spy++

我正在与Visual Studio 2010合作。

不再支持应用程序AnyOrder,我正在尝试创建一个应用程序,我们的用户可以输入信息,然后将信息填充到AnyOrder(以及其他网站 - 他们必须填充大量冗余信息)但一旦数据在VB窗口应用程序中,我没有运气任何订单的子窗口填充。

我可以让父窗口句柄很好但似乎无法获得子窗口句柄来挽救我的生命。我甚至无法获得第一级,我需要填充的空白是父窗口的伟大的孙子。

它不会让我发布间谍++的屏幕截图,因为我刚注册并且没有10个代表,但这里是捕获的链接。

enter image description here

提前感谢您提供的任何帮助。

1 个答案:

答案 0 :(得分:1)

以某种方式弄清楚答案。

#Region "functions"
Private Declare Function FindWindow Lib "user32.dll" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Int32
Public Delegate Function EnumWindowProcess(ByVal Handle As IntPtr, ByVal Parameter As IntPtr) As Boolean
<DllImport("User32.dll", SetLastError:=True, CharSet:=CharSet.Auto)>
Private Shared Function EnumChildWindows(ByVal WindowHandle As IntPtr, ByVal Callback As EnumWindowProcess, ByVal lParam As IntPtr) As Boolean
End Function
Private Shared Function EnumWindow(ByVal Handle As IntPtr, ByVal Parameter As IntPtr) As Boolean
Dim ChildrenList As List(Of IntPtr) = CType(GCHandle.FromIntPtr(Parameter).Target, Global.System.Collections.Generic.List(Of Global.System.IntPtr))
ChildrenList = CType(GCHandle.FromIntPtr(Parameter).Target, Global.System.Collections.Generic.List(Of Global.System.IntPtr))
If ChildrenList Is Nothing Then Throw New Exception("GCHandle Target could not be cast as List(Of IntPtr)")
ChildrenList.Add(Handle)
Return True
End Function
Private Shared Function GetChildWindows(ByVal ParentHandle As IntPtr) As IntPtr()
Dim ListHandle As GCHandle = GCHandle.Alloc(ChildrenList)
Try
    EnumChildWindows(ParentHandle, AddressOf EnumWindow, GCHandle.ToIntPtr(ListHandle))
Finally
    If ListHandle.IsAllocated Then ListHandle.Free()
End Try
Return ChildrenList.ToArray
End Function
#End Region

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
iParentHandle = FindWindow(vbNullString, AOParentName)
GetChildWindows(FindWindow(vbNullString, AOParentName))
Dim Childlist As String = String.Join(". ", ChildrenList)
MsgBox("list of child windows: " & Childlist)
End Sub