Fired when the user double clicks an appointment.

Parameters

ParameterDescription
ApptIDID of the appointment
ButtonThe button used to double click
ShiftFlag indicating whether or not the Shift key is pressed
CtrlFlag indicating whether or not the Control key is pressed

Remarks

The OnApptDblClick event fires when the user double clicks an appointment. The ApptID parameter provides the unique ID of the appointment involved and can be used directly with any properties requiring an appointment ID. The Button parameter provides the name of the button used to perform the double click while the Shift and Ctrl parameters provide the states of the Shift and Control keys respectfully.

Example

Transfer Param1 to ApptID 
Transfer Param2 to Button 
Transfer Param3 to Shift 
Transfer Param4 to Ctrl 

// Lock the appointment 
Set_Property(@Window:".OLE_SCHEDULE", "OLE.ApptLocked[":ApptID:"]", Yes$) 

// Open the appointment form passing the ID to the CreateParam 
Start_Window("DBW_APPT", "", ApptID)

See Also

ApptLockedOnApptClickOnScheduleClickOnScheduleDblClick

  • No labels