This is a discussion on Can we move an image programmatically in pocket pc without flickering using C#? within the Mobile Software Development forums, part of the Software Development category; Can we move an image programmatically in pocket pc without flickering using C#? Actually I got flickering when I move ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
| |||
| Can we move an image programmatically in pocket pc without flickering using C#? Actually I got flickering when I move an image in runtime or manually... How can I stop this flickering....? I need to stop flickering.... Is there any option to stop flickering...? |
| Sponsored Links |
| |||
| Hi, We can avoid flickering by using Double Buffering Concept.... Double buffering means, by using direct draw class, we can create primarysurface and secondary surface.... we can draw and move an image in secondarysurface and redraw those things in primarysurface.... Actually i got flickering, while i draw an image in windows application, so i used this concept... u can try this concept in windows mobile.... hope u got result.. Regards, krishnakumar.S |
| |||
| 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();
__________________ 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 |
| Move an image within a picture box in C# | $enthil | C# Programming | 4 | 01-18-2008 10:42 PM |
| How to send a file from a pocket pc to another pocket pc using C#.Net? | mobilegeek | Mobile Software Development | 4 | 09-01-2007 04:15 AM |
| How to programmatically set the wallpaper of Symbian s60 ? | itbarota | Mobile Software Development | 2 | 08-06-2007 08:19 AM |
| How to animate an image using C# windows application programmatically? | mobilegeek | C# Programming | 1 | 07-29-2007 11:42 PM |
| How can we capture the todays screen image programmatically in windows mobile 5.0 poc | mobilegeek | C# Programming | 1 | 07-21-2007 12:46 AM |