of_modify


pfcwnsrv.pbl   >   pfc_w_statusbar   >   of_modify   

Full name pfc_w_statusbar.of_modify
Access public
Override of integer
Return value integer
Prototype public function integer of_modify(string)

Name Datatype
as_modifyexp string

Name Datatype
ls_rc string

public function integer of_modify (string as_modifyexp);//////////////////////////////////////////////////////////////////////////////
//
//	Function:  of_modify
//
//	Access:  Public
//
//	Arguments:	
//	as_modifyexp	The modify string to execute
//	
//	Returns:  Integer
//	1 if it succeeds and -1 if an error occurs.
//
//	Description:
//	Modifies the properties of an 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.
//
//////////////////////////////////////////////////////////////////////////////

string	ls_rc

dw_statusbar.SetRedraw(False)

// Execute the Modify statment.					
ls_rc = dw_statusbar.Modify (as_modifyexp)		

dw_statusbar.SetRedraw(True)

If ls_rc <> "" Then
	Return -1
End If

Return 1

end function

     
Name Owner
pfc_n_cst_winsrv_statusbar.of_modify pfc_n_cst_winsrv_statusbar

     
Name Owner
dragobject.setredraw dragobject
datawindow.modify datawindow

     
Full name
pfc_w_statusbar

     
Name Scope
No Data