pfc_retrieveend


pfcdwsrv.pbl   >   pfc_n_cst_dwsrv_linkage   >   pfc_retrieveend   

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

Name Datatype
No Data

Name Datatype
ll_row long
ls_column string

event pfc_retrieveend;call super::pfc_retrieveend;//////////////////////////////////////////////////////////////////////////////
//
//	Event:  			pfc_retrieveend
//
//	(Arguments:
//	 al_rowcount: 	A long identifying the row count just retrieved.
//
//	(Returns:  		Integer
//   					 1 If sucessful.
//						-1 If an error is encountered.
//
//	Description:  Notification that the datawindow is ended retrieving data.
//
//////////////////////////////////////////////////////////////////////////////
//	
//	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.
//
//////////////////////////////////////////////////////////////////////////////

long ll_row
string ls_column

// Get the current row and current column.
ll_row = idw_requestor.GetRow()
ls_column = idw_requestor.GetColumnName()

// Update the item which has focus.
of_ItemFocusChanged (ll_row, ls_column)

// No longer retrieving data.
ib_retrieving = False
Return 1
end event

     
Name Owner
pfc_u_dw.retrieveend pfc_u_dw

     
Name Owner
datawindow.getcolumnname datawindow
datawindow.getrow datawindow
pfc_n_cst_dwsrv_linkage.of_itemfocuschanged pfc_n_cst_dwsrv_linkage

     
Full name
No Data

     
Name Scope
No Data