
The program 'WindowExplorer' received an X Window System error.
This probably reflects a bug in the program.
The error was 'BadWindow (invalid Window parameter)'.
  (Details: serial 10796 error_code 3 request_code 20 minor_code 0)
  (Note to programmers: normally, X errors are reported asynchronously;
   that is, you will receive the error a while after causing it.
   To debug your program, run it with the --sync command line
   option to change this behavior. You can then get a meaningful
   backtrace from your debugger if you break on the gdk_x_error() function.)


Fehlerrückgabewert = 1

|-------------------------------------------------------------------------------|

Hinweis ToolTipp

Monitors events for the RootWindow:

ActiveWindow  
Current Virtual Desktop Change  
Virtual Desktop Count Change
Virtual Desktop Geometry Change 
WindowGeometry - Moved or Re-sized
WindowIcon Change
WindowName Change
WindowState -normal, minimized, maximized, full screen
Windows - notifies creation, destruction and stacking order changes

|-------------------------------------------------------------------------------|

Public Sub GetDTWindowsList()
  Dim iCount As Integer
  Dim DTWindow As DesktopWindow
  Dim aDTWindowsList As Integer[]
  
  txaWindowList.Clear
  aDTWindowsList = Desktop.FindWindow(txbPatternBox.Text)
  lblWindowCount.Text = aDTWindowsList.Count
  For iCount = 0 To aDTWindowsList.Max
      DTWindow = New DesktopWindow(aDTWindowsList[iCount])
      If DTWindow.Id = aDTWindowsList[iCount] Then
         txaWindowList.Text &= Str(iCount + 1) & "\t" & (DTWindow.Desktop + 1) & "      " & DTWindow.Id & "\t" & DTWindow.Name & gb.NewLine
      Endif ' DTWindow.Id = aDTWindowsList[iCount ?
  Next ' iCount

End ' GetDTWindowsList()


Public Sub btnGetDTWList_Click()
  GetDTWindowsList()
End ' btnGetDTWList_Click()
