Click here to Skip to main content
15,915,065 members
Home / Discussions / Mobile
   

Mobile

 
Questionalternate for curdir or startuppath Pin
Rupesh Kumar Swami30-Jul-07 0:50
Rupesh Kumar Swami30-Jul-07 0:50 
AnswerRe: alternate for curdir or startuppath Pin
Mike Dimmick30-Jul-07 23:58
Mike Dimmick30-Jul-07 23:58 
GeneralRe: alternate for curdir or startuppath Pin
Rupesh Kumar Swami31-Jul-07 2:06
Rupesh Kumar Swami31-Jul-07 2:06 
QuestionDebugging my WM5 device Pin
2hdass28-Jul-07 8:29
2hdass28-Jul-07 8:29 
AnswerRe: Debugging my WM5 device Pin
Justin Perez30-Jul-07 9:12
Justin Perez30-Jul-07 9:12 
QuestionTask Manager window does not show application when hide form Pin
Rupesh Kumar Swami27-Jul-07 23:56
Rupesh Kumar Swami27-Jul-07 23:56 
Questionunhandeled error occur when we reopen form Pin
Rupesh Kumar Swami27-Jul-07 23:35
Rupesh Kumar Swami27-Jul-07 23:35 
AnswerRe: unhandeled error occur when we reopen form Pin
Justin Perez28-Jul-07 14:07
Justin Perez28-Jul-07 14:07 
GeneralRe: unhandeled error occur when we reopen form Pin
Rupesh Kumar Swami29-Jul-07 21:38
Rupesh Kumar Swami29-Jul-07 21:38 
GeneralRe: unhandeled error occur when we reopen form Pin
Justin Perez30-Jul-07 8:26
Justin Perez30-Jul-07 8:26 
GeneralRe: unhandeled error occur when we reopen form Pin
Rupesh Kumar Swami30-Jul-07 21:42
Rupesh Kumar Swami30-Jul-07 21:42 
GeneralRe: unhandeled error occur when we reopen form Pin
Justin Perez31-Jul-07 4:56
Justin Perez31-Jul-07 4:56 
AnswerRe: unhandeled error occur when we reopen form Pin
Eike Mueller1-Aug-07 2:47
Eike Mueller1-Aug-07 2:47 
GeneralRe: unhandeled error occur when we reopen form Pin
Rupesh Kumar Swami1-Aug-07 3:03
Rupesh Kumar Swami1-Aug-07 3:03 
GeneralRe: unhandeled error occur when we reopen form Pin
Eike Mueller1-Aug-07 3:48
Eike Mueller1-Aug-07 3:48 
QuestionExternal Display and Keypad For Mobile Pin
Raju J27-Jul-07 18:42
Raju J27-Jul-07 18:42 
Question' ', hexadecimal value 0x01, is an invalid character Pin
BlueKooZZZZZZZZ27-Jul-07 1:01
BlueKooZZZZZZZZ27-Jul-07 1:01 
QuestionRead Sms from Inbox Pin
Rupesh Kumar Swami26-Jul-07 22:19
Rupesh Kumar Swami26-Jul-07 22:19 
AnswerRe: Read Sms from Inbox Pin
2hdass28-Jul-07 8:26
2hdass28-Jul-07 8:26 
QuestionHow can I create file in NOKIA mobile phone memory disk? Pin
fujoey26-Jul-07 0:10
fujoey26-Jul-07 0:10 
How can I create file in NOKIA mobile phone memory disk? How can I create dirrectory in NOKIA mobile phone memory disk?

My mobile phone is Nokia N72. I can access its memory disk after I connect it wity my computer. Its directory is 'My Computer\\Nokia N72\\memorydisk\\'
I failed to access it with the following code:
CString csNokiaDir("My Computer");
bFindFile=finder.FindFile(csNokiaDir);
csNokiaDir = "My Computer\\Nokia N72";
bFindFile=finder.FindFile(csNokiaDir);
csNokiaDir = "My Computer\\Nokia N72\\memorydisk";


I get another directory by the following MFC code:
BROWSEINFO bi;
TCHAR Buffer[512]="";
TCHAR FullPath[512]="";
bi.hwndOwner = m_hWnd;
bi.pidlRoot = NULL;
bi.pszDisplayName = Buffer;
bi.lpszTitle = "Select directory";
bi.ulFlags = BIF_RETURNONLYFSDIRS|BIF_EDITBOX|BIF_BROWSEFORCOMPUTER ;
bi.lpfn = NULL; //回调函数,有时很有用
bi.lParam = 0;
bi.iImage = 0;
ITEMIDLIST* pidl = ::SHBrowseForFolder (&bi);

if(::SHGetPathFromIDList (pidl,FullPath))
{
m_sFonePath2 = FullPath;
}
The path I got is'::{20D04FE0-3AEA-1069-A2D8-08002B30309D}\::{416651E4-9C3C-11D9-8BDE-F66BAD1E3F3A}\354533010872671\E:\'

I used FindFile to check it and failed again.
Does any one know how to handle this kind of directory?
QuestionExternal Display and Kepad Pin
Raju J25-Jul-07 20:38
Raju J25-Jul-07 20:38 
QuestionProblems using GPRS connection Pin
kudorgyozo25-Jul-07 3:37
kudorgyozo25-Jul-07 3:37 
QuestionHow can get WAVE file length? Pin
t800t825-Jul-07 1:45
t800t825-Jul-07 1:45 
QuestionWM2003/WM5 on stand-by Pin
tuga-x24-Jul-07 4:23
tuga-x24-Jul-07 4:23 
AnswerRe: WM2003/WM5 on stand-by Pin
Mike Dimmick25-Jul-07 5:08
Mike Dimmick25-Jul-07 5:08 

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.