hmCal_mini_GET LAST DEST

hmCal_mini_GET LAST DEST(area;target;date;value1;value2)

Parameter          Type             Description
area               Longint      ->  hmCal area
target             Longint      <-  target
date               Datum        <-  click date
value1             Longint      <-  value 1
value2             Longint      <-  value 2

Contents

Description

The command hmCal_mini_GET LAST DEST returns information about the last click oder doubleclick. You can use this command in the object method of the mini-calendar.

target


Example

The following example requests several information about the last click within the mini-calendar:

C_DATE($vd_date)
C_LONGINT($vl_target;$vl_value1;$vl_value2)

If (Form event=On Plug in Area)

$vd_date:=hmCal_mini_Get Date (calmini)

hmCal_SET START DATE (calarea;$vd_date)

hmCal_DELETE ALL SPECIAL DAYS (calArea)
hmCal_ADD SPECIAL DAY (calArea;$vd_date;-1;-1;-1)

$vl_target:=0
$vd_date:=!00.00.0000!
$vl_value1:=0
$vl_value2:=0

hmCal_mini_GET LAST DEST (calmini;$vl_target;$vd_date;$vl_value1;$vl_value2)

End if