Click here to Skip to main content
16,005,141 members
Home / Discussions / Mobile
   

Mobile

 
QuestionCheckbox on a BlackBerry 8800 Pin
JollyRubber8-May-07 2:39
JollyRubber8-May-07 2:39 
QuestionHandling the PIN entering dialog Pin
Tjie Pouw7-May-07 20:20
Tjie Pouw7-May-07 20:20 
AnswerRe: Handling the PIN entering dialog Pin
Christopher Fairbairn22-May-07 15:27
Christopher Fairbairn22-May-07 15:27 
QuestionForm instances Pin
Blue_Boy7-May-07 4:25
Blue_Boy7-May-07 4:25 
AnswerRe: Form instances Pin
Christopher Fairbairn22-May-07 15:00
Christopher Fairbairn22-May-07 15:00 
AnswerRe: Form instances Pin
Soleil couchant5-Jun-07 19:54
Soleil couchant5-Jun-07 19:54 
QuestionHow to add item from application to local mobile calendar Pin
chloe_hhi6-May-07 20:35
chloe_hhi6-May-07 20:35 
AnswerRe: How to add item from application to local mobile calendar Pin
Christopher Fairbairn22-May-07 15:09
Christopher Fairbairn22-May-07 15:09 
Have a look at the following article on developer.com - http://www.developer.com/ws/pc/article.php/10947_3556186_1[^]. It contains step by step instructions on how to add the required references etc in order to use the Microsoft.WindowsMobile.PocketOutlook assembly.

You can also find a very good example here which does exactly what you want - http://rareedge.com/gmobilesync/2006/12/08/add-appointments-to-pocketoutlook/[^]. I have reposted the code example here for you:

using System;   <br />
using Microsoft.WindowsMobile.PocketOutlook;   <br />
public class PocketOulookSample   <br />
{   <br />
    public void AddAppointment()   <br />
    {   <br />
        Appointment appointment = new Appointment();   <br />
        using (OutlookSession outlook = new OutlookSession()) <br />
        {<br />
             appointment.Subject = "Bake a cake";   <br />
             appointment.Start = DateTime.Now.AddDays(1);   <br />
             appointment.AllDayEvent = true;   <br />
             appointment.Body = "Nicole loves cake!";   <br />
             appointment.Location = "Kitchen";   <br />
             appointment.Sensitivity = Sensitivity.Personal;   <br />
  <br />
             outlook.Appointments.Items.Add(appointment);   <br />
        }<br />
    }   <br />
}  


Hope it helps,
Christopher Fairbairn
GeneralRe: How to add item from application to local mobile calendar Pin
chloe_hhi22-May-07 16:05
chloe_hhi22-May-07 16:05 
QuestionConnect to Internet with Pocket PC Emulator...? Pin
Mundo Cani6-May-07 18:57
Mundo Cani6-May-07 18:57 
AnswerRe: Connect to Internet with Pocket PC Emulator...? Pin
Mundo Cani6-May-07 19:04
Mundo Cani6-May-07 19:04 
GeneralRe: Connect to Internet with Pocket PC Emulator...? Pin
Chandana Subasinghe6-Jun-07 4:10
Chandana Subasinghe6-Jun-07 4:10 
Questionhow can i transfer Pin
deano100006-May-07 2:01
deano100006-May-07 2:01 
QuestionHow can i connect to sql server using PPC Pin
Your Code5-May-07 22:19
Your Code5-May-07 22:19 
AnswerRe: How can i connect to sql server using PPC Pin
ReinerZiegler11-May-07 3:23
ReinerZiegler11-May-07 3:23 
QuestionHighlighting a row in DataGrid - desktop code does not work Pin
RajXXXXX5-May-07 5:42
RajXXXXX5-May-07 5:42 
AnswerRe: Highlighting a row in DataGrid - desktop code does not work Pin
RajXXXXX5-May-07 6:01
RajXXXXX5-May-07 6:01 
Questionerror RDA Pin
SVb.net4-May-07 23:30
SVb.net4-May-07 23:30 
Questionsaving data after the device has been closed Pin
steve_rm4-May-07 0:05
steve_rm4-May-07 0:05 
QuestionBreakpoint Problem Pin
Blue_Boy3-May-07 22:03
Blue_Boy3-May-07 22:03 
AnswerFound Solution Pin
Blue_Boy3-May-07 22:41
Blue_Boy3-May-07 22:41 
QuestionVideo calling (Video Telephony)in windows mobile 6.0 crossbow Pin
badal_akr3-May-07 17:57
badal_akr3-May-07 17:57 
Question"Save Password" on asp.net mobile pages? Pin
Kir Birger2-May-07 10:44
Kir Birger2-May-07 10:44 
QuestionRadio Button owner draw problem Pin
Shailesh Namjoshi1-May-07 20:13
Shailesh Namjoshi1-May-07 20:13 
QuestionOpening a TCP/IP connection over ActiveSync Pin
GuyM1-May-07 4:49
GuyM1-May-07 4:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.