Display Window Title with GetFocus() and GetWindowText()

Last reviewed: April 29, 1996
Article ID: Q96540
The information in this article applies to:
  • Microsoft Visual FoxPro for Windows, version 3.0
  • Microsoft FoxPro for Windows, versions 2.5 and 2.5a

SUMMARY

The sample code below displays the title of the window that has the focus. It demonstrates how to use the FOXTOOLS.FLL library commands to call the following Microsoft Windows application programming interface (API) functions:

   GetFocus()
   GetWindowText()

MORE INFORMATION

The program first loads the FOXTOOLS.FLL library that is supplied with FoxPro for Windows and creates a variable. Next, it retrieves the handle to the window that has the focus, that is, the currently active window. It then calls the GetWindowText() function, passing the second parameter by reference by using the @ sign. This is the variable that will hold the title of the window. It then displays the window title.

   set library to sys(2004)+"foxtools.fll" additive

   * create a string variable to hold the title
   * and initialize it with blank characters

   place = replicate(chr(32),80)

   * get the handle to the window

   gethwnd = RegFN("GetFocus","","I")
   hwnd = CallFN(gethwnd)

   * call the Windows function to get the title
   * using pass by reference for the variable place

   gettitle = RegFN("GetWindowText","I@CI","I")
   = CallFN(gettitle,hwnd,@place,80)

   * display the window title
   * the output ends with a null character

   ? "The window title is: " + alltrim(place)

   release library sys(2004)+"foxtools.fll"

REFERENCES

Microsoft Windows Software Development Kit, "Programmer's Reference, Volume 2: Functions," pages 376 and 484

FOXTOOLS.WRI located in the C:\FOXPROW\GOODIES\FOXTOOLS subdirectory


Additional reference words: VFoxWin 3.00 FoxWin 2.50 2.50a FOXTOOLS.FLL
SDK
KBCategory: kbinterop kbtool kbprg kbcode
KBSubcategory: FxprgFoxtools


THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY.

Last reviewed: April 29, 1996
© 1998 Microsoft Corporation. All rights reserved. Terms of Use.