Creating Appointment w Microsoft Outlook 11.0 Objec

jsnayberkjsnayberk Member Posts: 58
Hello,

I tried to create an appointment from NAV with the 'Microsoft Outlook 11.0 Object Library'. All seems to work properly. But I don´t find a way to tell outlook the starting time of the appointment. My appointments are all starting at 0:00 hrs. I do not see a property which could be set to do the job. May be, I´m blind. Could anyone give me a push into the right direction?
Thanks.

JS
--
Josef Snayberk

Answers

  • canadian_baconcanadian_bacon Member Posts: 91
    Use a variant variable:

    StartTimeVar := '01/31/09 12:30 PM';

    ApptObject.Start := StartTimeVar;
    ApptObject.Duration := 120; // this is in minutes
  • jsnayberkjsnayberk Member Posts: 58
    Thanks.
    --
    Josef Snayberk
Sign In or Register to comment.