of_getwindowtext


pfcapsrv.pbl   >   pfc_n_cst_platformunicode   >   of_getwindowtext   

Full name pfc_n_cst_platformunicode.of_getwindowtext
Access public
Extend of string
Return value string
Prototype public function string of_getwindowtext(unsignedinteger)

Name Datatype
No Data

Name Datatype
ls_wintext string
lul_rc ulong
lul_size ulong

public function string of_getwindowtext (unsignedinteger ai_handle);//////////////////////////////////////////////////////////////////////////////
//
//	Function:  of_GetWindowText
//
//	Access:  public
//
//	Arguments:
//
//
//	Returns:  string
//					window text
//					"" if error
//
//	Description:  Return the window title text
//
//////////////////////////////////////////////////////////////////////////////
//
//	Revision History
//
//	Version
//	5.0   Initial version
//	5.0.03	Changed int variables to Ulong for NT4.0 compatibility
//
//////////////////////////////////////////////////////////////////////////////
//
//	Copyright © 1996-1997 Sybase, Inc. and its subsidiaries.  All rights reserved.
//	Any distribution of the PowerBuilder Foundation Classes (PFC)
//	source code by other than Sybase, Inc. and its subsidiaries is prohibited.
//
//////////////////////////////////////////////////////////////////////////////
ulong		lul_rc
ulong		lul_size = 255
string 	ls_wintext

ls_wintext = space (lul_size)

lul_rc = GetWindowTextW(ai_handle, ls_wintext, lul_size)

if lul_rc > 0 THEN
	return ls_wintext
else
	return ""
end if

end function

     
Name Owner
No Data

     
Name Owner
systemfunctions.space systemfunctions
pfc_n_cst_platformunicode.GetWindowTextW pfc_n_cst_platformunicode

     
Full name
No Data

     
Name Scope
No Data