Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
One of our programers here is wanting to use the WFindTitle API Library routine in VFP6.
************************************************************************
* FindWindow( cWindowName )
*
* Auth: William GC Steinford
* Date: 7/16/98
* Purp: Ask windows if a particular window name exists
* (Case Insensitive)
*
************************************************************************
FUNCTION FindWindow
LPARAMETERS cWinName
DECLARE INTEGER FindWindow in win32api as apiFindWindow INTEGER nClass, STRING cName
Return apiFindWindow( 0, cWinName )
ENDFUNC