how to obtain previous clicked item ?

  • Thread starter Thread starter KLAT
  • Start date Start date
K

KLAT

hello,

I'm a newbie in customizing outlook 2002 using VBScript and VBA.

I have made a new journal formular, which contains two date fields.
By default these two fields shall be set with currentdate.
However if the user first select a date within the journal view then
the two date fields shall be set with the date that the user had
selected.

Another way of stating my problem is that I would like to remember if
the user have click on
an date item and in that case obtain the date of the item and set the
two new fields with
that date.

Can anyone help me find a solution to this problem.

Thanks in advance
Keld
 
If this is form code then define a variable at module level (outside of any
procedure) in the form code and set it as the control values are changed.
You can respond to the CustomPropertyChange event for that.
 
Back
Top