Click here to Skip to main content
15,909,440 members
Home / Discussions / Mobile
   

Mobile

 
AnswerRe: Windows Mobile 5.0 - DLL Developed in C# 2.0 Pin
Dushan1234-Dec-08 16:21
Dushan1234-Dec-08 16:21 
AnswerRe: Windows Mobile 5.0 - DLL Developed in C# 2.0 Pin
Joel Ivory Johnson15-Dec-08 10:37
professionalJoel Ivory Johnson15-Dec-08 10:37 
QuestionNotSupportedException Pin
Developer6112-Dec-08 10:47
Developer6112-Dec-08 10:47 
AnswerRe: NotSupportedException Pin
Joel Ivory Johnson5-Dec-08 17:48
professionalJoel Ivory Johnson5-Dec-08 17:48 
QuestionConfiguring Network Pin
Dushan1232-Dec-08 1:53
Dushan1232-Dec-08 1:53 
Questionhelp with socket programming ???? Pin
viku20082-Dec-08 1:11
viku20082-Dec-08 1:11 
Questionhow to send email Pin
spring 271-Dec-08 21:22
spring 271-Dec-08 21:22 
AnswerRe: how to send email Pin
Joel Ivory Johnson2-Dec-08 7:53
professionalJoel Ivory Johnson2-Dec-08 7:53 
In another article[^] I had to make the device send an e-mail with GPS coordinates upon receiving a special SMS message. The code to do that looked like the following. I've removed some code from this to make it simpler but you need to adapt this to your needs. Note that a device can have multiple accounts and you need to identify the account that you want to use.

public void EmailSendCoordinates(string emailAddress, message, string subject)
{
    EmailAccount account = 
      (new OutlookSession()).EmailAccounts[_Settings.EmailAccount];
    EmailMessage msg = new EmailMessage();
    msg.To.Add(new Recipient(emailAddress));
    msg.Subject = "My location";
    msg.BodyText = message;
    msg.Send(account);
}



QuestionANSI versions for Win API functions Pin
akirilov1-Dec-08 4:31
akirilov1-Dec-08 4:31 
AnswerRe: ANSI versions for Win API functions Pin
Giannakakis Kostas4-Dec-08 20:39
professionalGiannakakis Kostas4-Dec-08 20:39 
GeneralRe: ANSI versions for Win API functions Pin
akirilov10-Dec-08 3:36
akirilov10-Dec-08 3:36 
QuestionDecimal numbers and Devices languages. [modified] Pin
Hurricane300028-Nov-08 6:42
Hurricane300028-Nov-08 6:42 
QuestionHelp mee,,,, I'm confused,,, Pin
VANDAWAA25-Nov-08 15:11
VANDAWAA25-Nov-08 15:11 
QuestionI cannot run Java App on Samsung Pin
elshorbagy25-Nov-08 0:35
elshorbagy25-Nov-08 0:35 
QuestionProgramming joystick with Ms embedded vc on the pocket pc Pin
mousemicky24-Nov-08 8:13
mousemicky24-Nov-08 8:13 
QuestionThe problem of scrolling a scroll in a dialog ? Pin
oppstp24-Nov-08 5:47
oppstp24-Nov-08 5:47 
QuestionHow to connect a PDA to a remote mysql database? Pin
baburman24-Nov-08 5:41
baburman24-Nov-08 5:41 
QuestionWinCE Services and Logging Pin
Like2Byte18-Nov-08 11:07
Like2Byte18-Nov-08 11:07 
AnswerRe: WinCE Services and Logging Pin
Giannakakis Kostas19-Nov-08 3:14
professionalGiannakakis Kostas19-Nov-08 3:14 
GeneralRe: WinCE Services and Logging Pin
Like2Byte19-Nov-08 3:48
Like2Byte19-Nov-08 3:48 
QuestionGDI: How do we repaint a static control placed on gradient background Pin
vmsjames17-Nov-08 12:42
vmsjames17-Nov-08 12:42 
QuestionWriteFile returns Success(Nonzero Value) NumberofBytesWritten is 0 Pin
Shiva Prasad9-Nov-08 2:50
Shiva Prasad9-Nov-08 2:50 
QuestionExcel file Pin
Praful Nand N7-Nov-08 22:12
Praful Nand N7-Nov-08 22:12 
QuestionRe: Excel file Pin
danhpt8-Nov-08 17:28
danhpt8-Nov-08 17:28 
AnswerRe: Excel file Pin
ujjawal kumar12-May-09 2:45
ujjawal kumar12-May-09 2:45 

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.