CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 2016
    Posts
    5

    Does a SetWindowText required to add a GetNextWindow?

    Hi! I'm trying to create a form where i can add a string to another window, I would like to ask if GetNextWindow is necessary if your using SetWindowText and if hwnd is a property can I assign a coordinates?

  2. #2
    Join Date
    Jul 2001
    Location
    Sunny South Africa
    Posts
    11,283

    Re: Does a SetWindowText required to add a GetNextWindow?

    hWnd usually represents the Handle of the window in question. GetNextWindow may not be necessary, depending on what you want to do in your app. There are other APIs as well such as EnumWindows, GetWindowText and so on

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured