Click here to Skip to main content
15,902,777 members
Home / Discussions / Mobile
   

Mobile

 
QuestionFolder selection dialog in Embedded VC++ [modified] Pin
joemittu20-Mar-07 1:50
joemittu20-Mar-07 1:50 
QuestionDeploy CF.NET 2.0 Runtime into PDA Pin
AlexB4720-Mar-07 0:17
AlexB4720-Mar-07 0:17 
AnswerRe: Deploy CF.NET 2.0 Runtime into PDA Pin
Mike Dimmick22-Mar-07 6:17
Mike Dimmick22-Mar-07 6:17 
GeneralRe: Deploy CF.NET 2.0 Runtime into PDA Pin
abalbo23-Mar-07 14:31
abalbo23-Mar-07 14:31 
QuestionClient-Server programming in Pocket PC 2000 emulator Pin
sas09919-Mar-07 23:09
sas09919-Mar-07 23:09 
QuestionSHBrowseForFolder not working in wince 5.0(x86) processor Pin
joemittu19-Mar-07 17:16
joemittu19-Mar-07 17:16 
AnswerRe: SHBrowseForFolder not working in wince 5.0(x86) processor Pin
Mike Dimmick20-Mar-07 1:10
Mike Dimmick20-Mar-07 1:10 
GeneralSHBrowseForFolder not working in wince 5.0(x86) processor Pin
joemittu20-Mar-07 1:33
joemittu20-Mar-07 1:33 
Hi,
Iam using CEPC with x86 procesor booted with wince 5.0 image.I need to open a folder selection dialog in my application and for this purpose i have used the following code
BROWSEINFO bi = { 0 };
bi.lpszTitle = _T("Pick a Directory");
LPITEMIDLIST pidl = SHBrowseForFolder ( &bi );
if ( pidl != 0 )
{
// get the name of the folder
TCHAR path[MAX_PATH];
if ( SHGetPathFromIDList ( pidl, path ) )
{
_tprintf ( _T("Selected Folder: %s\n"), path );
}

// free memory used
IMalloc * imalloc = 0;
if ( SUCCEEDED( SHGetMalloc ( &imalloc )) )
{
imalloc->Free ( pidl );
imalloc->Release ( );
}

}
On compiling this code iam able to run the application successfully in emulator.But while running the application in a device it got strucked at a parameter checking in api.cpp file.This happens when SHBrowseForFolder is issued.I don't know how SHBrowseForFolder links with the function SHGetFileInfo.What parameters should i pass to overcome this problem.
Thanks in Advance
GeneralRe: SHBrowseForFolder not working in wince 5.0(x86) processor Pin
Mike Dimmick22-Mar-07 3:01
Mike Dimmick22-Mar-07 3:01 
Question.NET Remoting in .NET Compact Framework Pin
joon vh.19-Mar-07 4:25
joon vh.19-Mar-07 4:25 
AnswerRe: .NET Remoting in .NET Compact Framework Pin
Chris-Kaiser6-Apr-07 12:28
Chris-Kaiser6-Apr-07 12:28 
Questionget path of sdf file Pin
Blue_Boy18-Mar-07 23:16
Blue_Boy18-Mar-07 23:16 
AnswerRe: get path of sdf file Pin
Mike Dimmick19-Mar-07 6:18
Mike Dimmick19-Mar-07 6:18 
Questioncoupon system Pin
Tauseef A15-Mar-07 3:55
Tauseef A15-Mar-07 3:55 
AnswerRe: coupon system Pin
fehima18-Jun-12 1:48
fehima18-Jun-12 1:48 
QuestionWeb application for BlackBerry Pin
Vsree14-Mar-07 21:15
Vsree14-Mar-07 21:15 
Question.NET CF Pin
Blue_Boy13-Mar-07 6:13
Blue_Boy13-Mar-07 6:13 
AnswerRe: .NET CF Pin
Mike Dimmick13-Mar-07 7:59
Mike Dimmick13-Mar-07 7:59 
Question3d engines for Windows CE? Pin
Don Rolando12-Mar-07 4:06
Don Rolando12-Mar-07 4:06 
QuestionWindows Mobile 5.0 FormFactor Pin
Not Active12-Mar-07 3:23
mentorNot Active12-Mar-07 3:23 
AnswerRe: Windows Mobile 5.0 FormFactor Pin
Mike Dimmick12-Mar-07 12:42
Mike Dimmick12-Mar-07 12:42 
GeneralRe: Windows Mobile 5.0 FormFactor Pin
Not Active12-Mar-07 13:50
mentorNot Active12-Mar-07 13:50 
QuestionEvent programming related problem Pin
Shaileshhex11-Mar-07 23:30
Shaileshhex11-Mar-07 23:30 
QuestionSynchronize data Pin
Blue_Boy9-Mar-07 4:16
Blue_Boy9-Mar-07 4:16 
QuestionSmooth drawing for a window ?(win CE) Pin
nguyenvodich8-Mar-07 21:30
nguyenvodich8-Mar-07 21:30 

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.