Necesito usar objetos de Framework 3.5
Mi idea es poder acceder a los contactos, SMS, teléfono, etc... ya que lo que tiene WM 6.0 no me gusta nada.
También intentar un poco de PocketOutLook.
Y todo esto creo que lo da Framework.
Quiero poder usar códigos como esto:
Teléfono...
- Code: Select all Expand view
- Imports _
Microsoft.WindowsMobile.Telephony
...
Dim phone As New Phone
phone.Talk("+6512345678", True)
Calendario...
- Code: Select all Expand view
- Imports _
Microsoft.WindowsMobile.PocketOutlook
...
Dim appt As New Appointment
appt.Subject = "Meeting with Jeff"
appt.Start = New _
DateTime(2006, 7, 15, 9, 0, 0)
appt.End = New _
DateTime(2006, 7, 15, 11, 0, 0)
'---vibrate the device as a reminder
appt.ReminderVibrate = True
'---repeat the reminder
appt.ReminderRepeat = True
Dim currentSession As New _
OutlookSession
currentSession.Appointments.Items. _
Add(appt)