pfc_itemfocuschanged


pfcdwsrv.pbl   >   pfc_n_cst_dwsrv_linkage   >   pfc_itemfocuschanged   

Full name pfc_n_cst_dwsrv_linkage.pfc_itemfocuschanged
Access public
Extend of integer
Return value integer
Prototype event integer pfc_itemfocuschanged(long,dwobject)

Name Datatype
No Data

Name Datatype
No Data

event pfc_itemfocuschanged;call super::pfc_itemfocuschanged;//////////////////////////////////////////////////////////////////////////////
//
//	Event:  			pfc_itemfocuschanged
//
//	(Arguments: 	
//	  al_row
//	  adwo_object)
//
//	(Returns:  		Integer
// 				  	1 if it succeeds and -1 if an error occurs. 
//
//	Description:  	Notification that item focus has changed on the requestor dw.
//					  	This event is fired automatically from pfc_u_dw's ItemFocusChanged.
//
//////////////////////////////////////////////////////////////////////////////
//	
//	Revision History
//
//	Version
//	6.0   Initial version
//
//////////////////////////////////////////////////////////////////////////////
//
//	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.
//
//////////////////////////////////////////////////////////////////////////////

if IsNull(al_row) Or IsNull(adwo_object) then
	return -1
end if

// Update the last column to receive focus.
of_ItemFocusChanged (al_row, adwo_object.Name)

Return 1
end event

     
Name Owner
pfc_u_dw.itemfocuschanged pfc_u_dw

     
Name Owner
systemfunctions.isnull systemfunctions

     
Full name
No Data

     
Name Scope
No Data