This is a discussion on How to fix the appointments in windows mobile using C#? within the C# Programming forums, part of the Software Development category; How to fix the appointments in windows mobile using C#?...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| For appointment class, we have to use this namespace, using Microsoft.WindowsMobile.PocketOutlook; Those below codings are written in one button event Appointment newappoinment = new Appointment(); newappoinment.Subject = textBox1.Text; //newappoinment.Start = DateTime.Now; newappoinment.Start = new DateTime(2007, 02, 10, 12, 00, 00); //newappoinment.Duration = new TimeSpan(01, 00, 00); newappoinment.Location = textBox2.Text; newappoinment.End = new DateTime(2007, 02, 10, 15, 00, 00); newappoinment.ReminderVibrate = true; newappoinment.ReminderSound = true; newappoinment.ReminderRepeat = true; newappoinment.ReminderSet = true; using (OutlookSession session = new OutlookSession()) { session.Appointments.Items.Add(newappoinment); session.Dispose(); } MessageBox.Show("Appoinment is fixed"); |
| |||
| i am trying to pick an appoinment from appoinment list... But i got some error... Do u have any sample for pick the appoinment in calender....
__________________ H2O Without us, no one can survive.. |
| |||
| Hi, For pick the appointment, we have to use Microsoft.WindowsMobile.PocketOutlook; Here the code is used for pick the appointment from appointment list AppointmentCollection apptcollec; OutlookSession pick = new OutlookSession(); apptcollec = pick.Appointments.Items; foreach (Appointment appt in apptcollec) { textBox1.Text = appt.Start.ToShortDateString() + " " + appt.Start.ToShortTimeString(); textBox2.Text = appt.End.ToShortDateString() + " " + appt.End.ToShortTimeString(); textBox3.Text = appt.Location; textBox4.Text = appt.Subject; } Hope u got clear by use this...
__________________ Krishnakumar.S Beware of Everything -that is un true; stick to the Truth shall succeed slowly but steadily |
![]() |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Windows Mobile - Interview FAQ | prasannavigneshr | Interview Questions & Answers and Tips | 15 | 01-24-2008 04:48 AM |
| Windows Mobile Tweaks | prasannavigneshr | Windows Mobile | 162 | 11-15-2007 09:56 PM |
| Answering Machine for Windows Mobile | S.Vinothkumar | Windows Mobile | 1 | 09-06-2007 08:43 AM |
| How to Soft Reset Windows Mobile 5.0 ? | theone | Windows Mobile | 0 | 07-17-2007 03:42 AM |
| New T-Mobile phone runs Windows Mobile 6 | vadivelanvaidyanathan | The Lounge | 0 | 05-22-2007 08:19 AM |