Click here to Skip to main content
15,891,657 members
Home / Discussions / Mobile
   

Mobile

 
GeneralRe: Google Maps and GPS application Pin
moos38-Sep-08 0:59
moos38-Sep-08 0:59 
AnswerRe: Google Maps and GPS application Pin
renu.iitkgp16-Oct-08 18:09
renu.iitkgp16-Oct-08 18:09 
QuestionHow to get Device-informations and how to call and send SMS? Pin
softwarejaeger6-Sep-08 1:15
softwarejaeger6-Sep-08 1:15 
AnswerRe: How to get Device-informations and how to call and send SMS? Pin
Dushan1237-Sep-08 17:22
Dushan1237-Sep-08 17:22 
AnswerRe: How to get Device-informations and how to call and send SMS? Pin
Rupesh Kumar Swami11-Sep-08 20:47
Rupesh Kumar Swami11-Sep-08 20:47 
GeneralRe: How to get Device-informations and how to call and send SMS? Pin
Hurricane300022-Sep-08 6:52
Hurricane300022-Sep-08 6:52 
QuestionDevice Id Pin
ellllllllie5-Sep-08 0:13
ellllllllie5-Sep-08 0:13 
AnswerRe: Device Id Pin
Dushan1235-Sep-08 19:49
Dushan1235-Sep-08 19:49 
//import InteropServices namespace
using System.Runtime.InteropServices;
//Import DLL
[DllImport("coredll.dll")]
private extern static int GetDeviceUniqueID([In, Out] byte[] appdata,
int cbApplictionData,
int dwDeviceIDVersion,
[In, Out] byte[] deviceIDOuput,
out uint pcbDeviceIDOutput);



public string getDeviceUniqueID()
{
byte[] buffer = GetDeviceID("MyAppString");
StringBuilder sb = new StringBuilder();
for (int x = 0; x < buffer.Length; x++)
{
sb.Append(string.Format("{0:x2}", buffer[x]));
}

string strUniqueID = sb.ToString();

return strUniqueID;

}

ssss

AnswerRe: Device Id Pin
PavanPareta6-Sep-08 0:52
PavanPareta6-Sep-08 0:52 
Question[Message Deleted] Pin
THOBANI3-Sep-08 3:49
THOBANI3-Sep-08 3:49 
AnswerRe: Phonebook Accss Pin
Pavel Klocek3-Sep-08 20:08
Pavel Klocek3-Sep-08 20:08 
AnswerRe: Phonebook Accss Pin
PavanPareta6-Sep-08 0:16
PavanPareta6-Sep-08 0:16 
QuestionAccess SMS in SmartPhone Pin
Blue_Boy3-Sep-08 0:16
Blue_Boy3-Sep-08 0:16 
AnswerRe: Access SMS in SmartPhone Pin
PavanPareta6-Sep-08 0:46
PavanPareta6-Sep-08 0:46 
NewsRe: Access SMS in SmartPhone Pin
Blue_Boy6-Sep-08 3:05
Blue_Boy6-Sep-08 3:05 
QuestionWait Cursor for WM 5.0+ Pin
akirilov2-Sep-08 22:34
akirilov2-Sep-08 22:34 
AnswerRe: Wait Cursor for WM 5.0+ Pin
Dushan1235-Sep-08 19:44
Dushan1235-Sep-08 19:44 
AnswerRe: Wait Cursor for WM 5.0+ Pin
PavanPareta6-Sep-08 0:24
PavanPareta6-Sep-08 0:24 
AnswerRe: Wait Cursor for WM 5.0+ Pin
akirilov8-Sep-08 21:46
akirilov8-Sep-08 21:46 
QuestionPanel ... Pin
PavanPareta1-Sep-08 19:50
PavanPareta1-Sep-08 19:50 
QuestionPlaying MP3 to the caller Pin
huangrongchuan1-Sep-08 17:45
huangrongchuan1-Sep-08 17:45 
AnswerRe: Playing MP3 to the caller Pin
Pavel Klocek3-Sep-08 18:52
Pavel Klocek3-Sep-08 18:52 
GeneralRe: Playing MP3 to the caller Pin
huangrongchuan3-Sep-08 19:29
huangrongchuan3-Sep-08 19:29 
GeneralRe: Playing MP3 to the caller Pin
Pavel Klocek3-Sep-08 20:01
Pavel Klocek3-Sep-08 20:01 
QuestionHelp on Smart Phone sms Application Pin
danialhill28-Aug-08 7:25
danialhill28-Aug-08 7:25 

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.