Click here to Skip to main content
16,006,378 members
Home / Discussions / Mobile
   

Mobile

 
GeneralRe: Get rid of the authentification key in bluetooth Pin
Jonas Larsson12-Jan-04 22:39
Jonas Larsson12-Jan-04 22:39 
GeneralRemoving shortcuts from the start menu Pin
KellyR12-Jan-04 4:50
KellyR12-Jan-04 4:50 
GeneralRe: Removing shortcuts from the start menu Pin
Jonas Larsson12-Jan-04 21:49
Jonas Larsson12-Jan-04 21:49 
GeneralPopup Menu Pin
Member 5146729-Jan-04 4:56
Member 5146729-Jan-04 4:56 
GeneralStorage cards Pin
#realJSOP9-Jan-04 4:08
professional#realJSOP9-Jan-04 4:08 
GeneralRe: Storage cards Pin
#realJSOP12-Jan-04 5:28
professional#realJSOP12-Jan-04 5:28 
GeneralRe: Storage cards Pin
#realJSOP12-Jan-04 9:02
professional#realJSOP12-Jan-04 9:02 
GeneralRe: Storage cards Pin
#realJSOP13-Jan-04 3:12
professional#realJSOP13-Jan-04 3:12 
Well, I tried using this code, and it still finds the "iPAQ File Store", even though it's not a flash card.

Grrrrr....

BOOL            bFoundCard = TRUE;
CString         strSub     = _T("");
HANDLE          hCard      = NULL;
WIN32_FIND_DATA fdCard;

hCard = FindFirstFlashCard(&fdCard);
if (hCard != INVALID_HANDLE_VALUE)
{
   strSub.Format(_T("%s%s\\"), pszPath, fdCard.cFileName);
   EnumDirs(strSub, pszFilter, hItem);
   while (bFoundCard)
   {
      bFoundCard = FindNextFlashCard(hCard, &fdCard);
      if (bFoundCard)
      {
         // I had to include the following two lines of code to make sure
         // that my list only included actual storage cards
         CString sKey(_T("storage card 2 slot 2"));
         CString sTemp(fdCard.cFileName);
         sTemp.MakeLower();
         if (sKey.Find(sTemp) >= 0)
         {
            EnumDirs(strSub, pszFilter, hItem);
         }
      }
   } // while (bFoundCard)
}
FindClose (hCard);


------- signature starts

"...the staggering layers of obscenity in your statement make it a work of art on so many levels." - Jason Jystad, 10/26/2001

"You won't like me when I'm angry..." - Dr. Bruce Banner

Please review the Legal Disclaimer in my bio.

------- signature ends
GeneralRe: Storage cards Pin
João Paulo Figueira13-Jan-04 3:47
professionalJoão Paulo Figueira13-Jan-04 3:47 
GeneralRe: Storage cards Pin
#realJSOP16-Jan-04 6:21
professional#realJSOP16-Jan-04 6:21 
GeneralError installing WinCE SDK Pin
Elbie9-Jan-04 0:45
Elbie9-Jan-04 0:45 
GeneralRe: Error installing WinCE SDK Pin
João Paulo Figueira9-Jan-04 0:56
professionalJoão Paulo Figueira9-Jan-04 0:56 
GeneralRe: Error installing WinCE SDK Pin
Elbie12-Jan-04 3:36
Elbie12-Jan-04 3:36 
GeneralPalm Devices Pin
hxxbin8-Jan-04 8:31
hxxbin8-Jan-04 8:31 
GeneralRe: Palm Devices Pin
Ian Darling9-Jan-04 0:58
Ian Darling9-Jan-04 0:58 
GeneralRe: Palm Devices Pin
kaangonel10-Jan-04 11:21
kaangonel10-Jan-04 11:21 
GeneralSIP on PropertyPage disapear! Pin
VOlivier8-Jan-04 0:10
VOlivier8-Jan-04 0:10 
GeneralRe: SIP on PropertyPage disapear! Pin
#realJSOP8-Jan-04 5:07
professional#realJSOP8-Jan-04 5:07 
GeneralRe: SIP on PropertyPage disapear! Pin
VOlivier8-Jan-04 5:53
VOlivier8-Jan-04 5:53 
GeneralRe: SIP on PropertyPage disapear! Pin
cmk9-Jan-04 21:09
cmk9-Jan-04 21:09 
GeneralIt is possible to save a drawing? (.Net) Pin
Nick Seng8-Jan-04 0:05
Nick Seng8-Jan-04 0:05 
GeneralThis is not a programming question Pin
Nick Seng7-Jan-04 21:49
Nick Seng7-Jan-04 21:49 
GeneralRe: This is not a programming question Pin
João Paulo Figueira7-Jan-04 22:20
professionalJoão Paulo Figueira7-Jan-04 22:20 
GeneralRe: This is not a programming question Pin
Nick Seng7-Jan-04 22:34
Nick Seng7-Jan-04 22:34 
GeneralRe: This is not a programming question Pin
João Paulo Figueira7-Jan-04 22:54
professionalJoão Paulo Figueira7-Jan-04 22:54 

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.