of_keybrowselect


pfcdwsrv.pbl   >   pfc_n_cst_dwsrv_rowselection   >   of_keybrowselect   

Full name pfc_n_cst_dwsrv_rowselection.of_keybrowselect
Access protected
Extend of integer
Return value integer
Prototype protected function integer of_keybrowselect(long)

Name Datatype
No Data

Name Datatype
li_rc integer

protected function integer of_keybrowselect (long al_row);//////////////////////////////////////////////////////////////////////////////
//
//	Function:  		of_KeybRowSelect
//
//	Access:    		protected
//
//	Arguments:
//	al_row			The row on which some action is required.
//
//	Returns:  		Integer
//						1 if it succeeds and -1 if an error occurs.
//
//	Description:  Calls the appropriate specific select processing on a row.
//
//////////////////////////////////////////////////////////////////////////////
//
//	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.
//
//////////////////////////////////////////////////////////////////////////////

integer	li_rc=-1

CHOOSE CASE ii_style
	CASE SINGLE 
		li_rc = of_RowSelectSingle ( al_row )

	CASE MULTIPLE 
		// No Action.

	CASE EXTENDED 
		li_rc = of_KeyBRowSelectExt (al_row, Keydown(KeyControl!), Keydown(KeyShift!)) 
END CHOOSE
	
Return li_rc
end function

     
Name Owner
pfc_n_cst_dwsrv_rowselection.pfc_rowfocuschanged pfc_n_cst_dwsrv_rowselection

     
Name Owner
systemfunctions.keydown systemfunctions
pfc_n_cst_dwsrv_rowselection.of_rowselectsingle pfc_n_cst_dwsrv_rowselection
pfc_n_cst_dwsrv_rowselection.of_keybrowselectext pfc_n_cst_dwsrv_rowselection

     
Full name
No Data

     
Name Scope
No Data