of_setparentwindow


pfcmain.pbl   >   pfc_n_ds   >   of_setparentwindow   

Full name pfc_n_ds.of_setparentwindow
Access public
Extend of integer
Return value integer
Prototype public function integer of_setparentwindow(window)

Name Datatype
No Data

Name Datatype
No Data

public function integer of_setparentwindow (window aw_parent);//////////////////////////////////////////////////////////////////////////////
//
//	Function:  of_SetParentWindow
//
//	Access:  public
//
//	Arguments:
//	aw_parent   The Parent window for this Dynamically created object.
//
//	Returns:  integer
//	 1 = success
//	-1 = error
//
//	Description:	Sets the Parent window for this Dynamically created object.
//
//////////////////////////////////////////////////////////////////////////////
//
//	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.
//
//////////////////////////////////////////////////////////////////////////////

// Validate the argument.
If IsNull(aw_parent) or Not IsValid(aw_parent) Then
	Return -1
End If

iw_parentwindow = aw_parent
Return 1
end function

     
Name Owner
pfc_n_cst_tvsrv_levelsource.of_register pfc_n_cst_tvsrv_levelsource
pfc_n_cst_tvsrv_levelsource.of_converttorow pfc_n_cst_tvsrv_levelsource
pfc_n_cst_lvsrv_datasource.of_ConvertToRow pfc_n_cst_lvsrv_datasource
pfc_n_cst_lvsrv_datasource.of_Register pfc_n_cst_lvsrv_datasource

     
Name Owner
systemfunctions.isnull systemfunctions
systemfunctions.isvalid systemfunctions

     
Full name
No Data

     
Name Scope
No Data