getnextwindow ??

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Steve

    #1

    getnextwindow ??

    Hi, I'm coming back to VB for some work i need to do. Last I used was VB3
    and it had a API call called 'getnextwindow' . It would take a window it
    found and goto the next one of the same type. Whats the VB6 equivelant of
    this?

    Thanks

    -steve


  • RM

    #2
    Re: getnextwindow ??

    That may work
    Public Declare Function GetNextWindow Lib "user32" Alias "GetWindow" _
    (ByVal hwnd As Long, ByVal wFlag As Long) As Long
    HTH

    "Steve" <bla@blah.com > wrote in message
    news:6p-dnaPwkJO6wxvcRV n-qw@comcast.com. ..[color=blue]
    > Hi, I'm coming back to VB for some work i need to do. Last I used was VB3
    > and it had a API call called 'getnextwindow' . It would take a window it
    > found and goto the next one of the same type. Whats the VB6 equivelant of
    > this?
    >
    > Thanks
    >
    > -steve
    >
    >[/color]


    Comment

    Working...