of_SetRowSelect


pfcmain.pbl   >   pfc_u_dw   >   of_SetRowSelect   

Full name pfc_u_dw.of_SetRowSelect
Access public
Extend of integer
Return value integer
Prototype public function integer of_SetRowSelect(boolean)

Name Datatype
No Data

Name Datatype
No Data

public function integer of_SetRowSelect (boolean ab_switch);//////////////////////////////////////////////////////////////////////////////
//	Public Function:  of_SetRowSelect
//	Arguments:		boolean
//   					true  - Start (create) the service
//   					false - Stop (destroy ) the service
//	Returns:			Integer - 1 if Successful operation, 0 = No action taken and -1 if an error occured
//						1 - Successful operation.
//						0 - No action taken.
//						-1 - An error was encountered.
//	Description:  Starts or stops the Row Selection Services.  This service
//					  provides for single, multi and extended row selection.
//////////////////////////////////////////////////////////////////////////////
//	Rev. History	Version
//	5.0   Initial version
//////////////////////////////////////////////////////////////////////////////
//	Copyright © 1996-1999 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.
//////////////////////////////////////////////////////////////////////////////
// Check arguments
if IsNull(ab_switch) then return FAILURE

if ab_Switch then
	if IsNull(inv_RowSelect) or not IsValid (inv_RowSelect) then
		inv_RowSelect = Create n_cst_dwsrv_rowselection
		inv_RowSelect.of_SetRequestor ( this )
		return SUCCESS
	end if
else 
	if IsValid (inv_RowSelect) then
		Destroy inv_RowSelect
		return SUCCESS
	end if	
end if

return NO_ACTION
end function

     
Name Owner
w_resp_customer_search.pfc_postopen w_resp_customer_search
w_resp_employee.pfc_postopen w_resp_employee
w_resp_sales_order.pfc_postopen w_resp_sales_order
w_resp_salesperson.pfc_postopen w_resp_salesperson
pfc_w_selection.dw_1.constructor dw_1
pfc_w_filterextended.dw_functioncategory.constructor dw_functioncategory
pfc_w_filterextended.dw_function.constructor dw_function
pfc_w_filterextended.dw_columns.constructor dw_columns
pfc_w_filterextended.dw_values.constructor dw_values
pfc_w_restorerow.dw_delete.constructor dw_delete
pfc_u_dw.pfc_print pfc_u_dw
pfc_u_dw.destructor pfc_u_dw
pfc_u_tabpg_dwproperty_buffers.dw_requestorview.constructor dw_requestorview
pfc_u_tabpg_dwproperty_buffers.dw_requestorduplicate.constructor dw_requestorduplicate
pfc_u_tabpg_dwproperty_services.dw_services.constructor dw_services
pfc_u_tabpg_dwproperty_services.pfc_propertyapplyimmediate pfc_u_tabpg_dwproperty_services
pfc_u_tabpg_dwproperty_status.dw_requestorview.constructor dw_requestorview
pfc_w_toolbars.dw_toolbars.constructor dw_toolbars

     
Name Owner
systemfunctions.isnull systemfunctions
systemfunctions.isvalid systemfunctions
pfc_n_cst_dwsrv.of_setrequestor pfc_n_cst_dwsrv

     
Full name
No Data

     
Name Scope
No Data