.NET Components for Mobility

InTheHand.WindowsMobile.PocketOutlook.Recipient

Last post 07-29-2008 7:13 PM by oldsap. 6 replies.
Page 1 of 1 (7 items)
Sort Posts: Previous Next
  • 07-25-2008 1:25 AM

    InTheHand.WindowsMobile.PocketOutlook.Recipient

    how do i create a message in my inbox using msg.moveto?

    Dim msg As New InTheHand.WindowsMobile.PocketOutlook.SmsMessage
    msg.Body = "inserted sms" 

    when msg.From is ReadOnly?

    i'd like to add a new sms in the inbox with the "From" = to a certain number and then search for the number in my contact list and change the number to the FileAs if it's there, if not then it will just show the number.

    http://oldsap.blogspot.com
  • 07-25-2008 3:31 AM In reply to

    Re: InTheHand.WindowsMobile.PocketOutlook.Recipient

    That is correct the property is currently read-only, however there is an alternative:-

    msg.Properties(MessageProperty.SenderName) = "John Doe"

    msg.Properties(MessageProperty.SenderEmailAddress) = "123456789"

     

    Peter

    Peter Foot
    Microsoft Device Application Development MVP
    www.peterfoot.net | www.inthehand.com
  • 07-25-2008 4:15 AM In reply to

    Re: InTheHand.WindowsMobile.PocketOutlook.Recipient

     Thank you sir.

    http://oldsap.blogspot.com
  • 07-25-2008 4:53 AM In reply to

    Re: InTheHand.WindowsMobile.PocketOutlook.Recipient

     Dim msg As New InTheHand.WindowsMobile.PocketOutlook.SmsMessage
            With msg
                .Body = "insert"
                .Properties(InTheHand.WindowsMobile.PocketOutlook.MessageProperty.SenderName) = "John Doe"
                .Properties(InTheHand.WindowsMobile.PocketOutlook.MessageProperty.MessageDeliveryTime) = Now
                .Read = False
            End With
            msg.MoveTo(session.SmsAccount.Inbox)
            msg.Update()

     

    i tried this code but then the sms in my inbox says  [no sender]

    http://oldsap.blogspot.com
  • 07-27-2008 6:36 AM In reply to

    Re: InTheHand.WindowsMobile.PocketOutlook.Recipient

    Try setting both the name and address in the SenderEmailAddress property e.g.

    "John Doe" <0123456789>

    Peter Foot
    Microsoft Device Application Development MVP
    www.peterfoot.net | www.inthehand.com
  • 07-28-2008 8:39 PM In reply to

    Re: InTheHand.WindowsMobile.PocketOutlook.Recipient

     it worked sir.  thank you

    http://oldsap.blogspot.com
  • 07-29-2008 7:13 PM In reply to

    Re: InTheHand.WindowsMobile.PocketOutlook.Recipient

    somehow, for wm6.1 roms, you have to close tmail.exe and re-open it again for the sms to show up. 

    http://oldsap.blogspot.com
Page 1 of 1 (7 items)
Copyright © 2001-2008 In The Hand Ltd. All rights reserved. Terms of Use and Privacy Policy.