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

Re: Open the calendar on a specific day? by Peter

Peter
Fri Feb 16 05:50:35 CST 2007

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

--
Peter Foot
Device Application Development MVP
www.peterfoot.net | www.inthehand.com

"Jan" <no-spam-thank-you@hotmail.com> wrote in message
news:e1YBgAbUHHA.2212@TK2MSFTNGP02.phx.gbl...
>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
>