View Single Post
  #4 (permalink)  
Old 04-23-2008, 09:17 PM
krishnakumar krishnakumar is offline
D-Web Analyst
 
Join Date: May 2007
Posts: 206
krishnakumar is on a distinguished road
Smile Re: Can we move an image programmatically in pocket pc without flickering using C#?

Hi,

Install the microsoft pocketpc in ur visual studio and open the new device application in windows mobile pocketpc and

use the namespace using Microsoft.WindowsMobile.PocketOutlook;

And then copy the code below u need to send sms like any button event


Code:
string a = textBox1.Text;
            string sms = textBox2.Text;
            SmsMessage message = new SmsMessage(a, sms);
            message.Send();
Further, if u have any doubt , refer the below source code
Attached Files
File Type: zip sendsms.zip (15.0 KB, 2 views)
__________________
Krishnakumar.S
Beware of Everything -that is un true; stick to the Truth shall succeed slowly but steadily
Reply With Quote