itemchanged


pfcwnsrv.pbl   >   pfc_w_toolbars   >   dw_toolbars   >   itemchanged   

Full name pfc_w_toolbars.dw_toolbars.itemchanged
Access public
Extend of
Return value
Prototype event itemchanged()

Name Datatype
No Data

Name Datatype
lb_checked boolean
lnv_conversion n_cst_conversion

event itemchanged;call super::itemchanged;//////////////////////////////////////////////////////////////////////////////
//
//	Event:  itemchanged
//
//	Description:
//	Update toolbarvisible information
//
//////////////////////////////////////////////////////////////////////////////
//	
//	Revision 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.
//
//////////////////////////////////////////////////////////////////////////////

boolean	lb_checked
n_cst_conversion	lnv_conversion

// Validate arguments
if IsNull (dwo) then
	return
end if

if dwo.name = "toolbarvisible" then
	if ii_toolbarindex > 0 then
		lb_checked = lnv_conversion.of_Boolean (data)
		if not IsNull (lb_checked) then
			inv_toolbar[ii_toolbarindex].b_visible = lb_checked
			cb_apply.Enabled = True
		end if
	end if
end if
end event

     
Name Owner
No Data

     
Name Owner
systemfunctions.isnull systemfunctions
pfc_n_cst_conversion.of_boolean pfc_n_cst_conversion
pfc_u_dw.itemchanged pfc_u_dw

     
Full name
pfc_w_toolbars
pfc_w_toolbars.cb_apply

     
Name Scope
No Data