doubleclicked


pfcmain.pbl   >   pfc_u_calendar   >   dw_cal   >   doubleclicked   

Full name pfc_u_calendar.dw_cal.doubleclicked
Access public
Extend of
Return value
Prototype event doubleclicked()

Name Datatype
No Data

Name Datatype
No Data

event doubleclicked;call super::doubleclicked;//////////////////////////////////////////////////////////////////////////////
//
//	Event:  			doubleclicked
//
//	(Arguments:		None)
//
//	(Returns:  		None)
//
//	Description:	
//
//////////////////////////////////////////////////////////////////////////////
//	
//	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.
//
//////////////////////////////////////////////////////////////////////////////

//Return if click was not on a valid dwobject, depending on what was
//clicked, dwo will be null or dwo.name will be "datawindow"
If IsNull(dwo) Then Return
If Pos(dwo.name, "cell") = 0 Then Return

//If appropriate, hide the Calendar.
If IsValid(inv_dropdown) Then
	If ib_closeondclick Then
		// Set focus on the Requestor object which in turns hides the calendar.
		of_SetFocusOnRequestor()
	End If
End If
end event

     
Name Owner
No Data

     
Name Owner
systemfunctions.isnull systemfunctions
systemfunctions.isvalid systemfunctions
pfc_u_calendar.of_setfocusonrequestor pfc_u_calendar
datawindow.doubleclicked datawindow

     
Full name
No Data

     
Name Scope
No Data