If I have a window handle, how will I be able to get the title caption text of the window? (something like GetWindowText_ , but I cannot figure out how to get the caption text)
- Matt
Window Titles
Code: Select all
Procedure.s getTitle(hWnd)
title.s = Space(#MAX_PATH)
GetWindowText_(hWnd, title, #MAX_PATH)
ProcedureReturn title
EndProcedure
