Fired when the user double clicks an appointment.
Parameters
Parameter | Description |
---|---|
ApptID | ID of the appointment |
Button | The button used to double click |
Shift | Flag indicating whether or not the Shift key is pressed |
Ctrl | Flag 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
ApptLocked, OnApptClick, OnScheduleClick, OnScheduleDblClick