Open the calendar on a specific day?

  • Thread starter Thread starter Jan
  • Start date Start date
J

Jan

I have a pocket pc application which shows some data with dates.
When the user selects an entry, I would like to open the standard calendar
on that particular day.

Is that possible? If so, how can I do this?

I am using Visual Studio 2005 and C#.
The application I'm writing is for a Windows Mobile 2005 device. So no
problem if the solution does not support older models.

Regards,
Jan
 
You can start it with command line arguments:-

Process.Start("poutlook.exe", "calendar -vd -dyyyymmdd");

-vd specifies day view and obviously replace yyyymmdd with the required
date.

Peter
 
Back
Top