Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > Visual C++ MFC > General Discussion
  New Posts New Posts RSS Feed - Windows 7 issue
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Windows 7 issue

 Post Reply Post Reply
Author
Message
terrym View Drop Down
Senior Member
Senior Member


Joined: 13 April 2007
Status: Offline
Points: 836
Post Options Post Options   Thanks (0) Thanks(0)   Quote terrym Quote  Post ReplyReply Direct Link To This Post Topic: Windows 7 issue
    Posted: 25 March 2009 at 9:05am

The following code gives an error on Windows 7, but works fine on Windows Vista and below.  Any ideas would be appreciated :(, there is more code to this but we broke it down to bare minimum so others can try to help us.

CComPtr<IMalloc> spIMalloc;
HRESULT hResult = ::SHGetMalloc(&spIMalloc);
LPITEMIDLIST progFolder = NULL;
hResult = ::SHGetSpecialFolderLocation(NULL, CSIDL_PRINTERS, &progFolder );
CComPtr<IShellFolder> spIShellFolder;
CComPtr<IShellFolder> spFolderProgram;
hResult = ::SHGetDesktopFolder(&spIShellFolder);
hResult = spIShellFolder->BindToObject(progFolder, NULL, IID_IShellFolder, (void **)&spFolderProgram );
CComPtr<IEnumIDList> spIEnumIDList;
hResult = spFolderProgram->EnumObjects(NULL, SHCONTF_NONFOLDERS, &spIEnumIDList );
ULONG ulCount = 0;
LPITEMIDLIST listNoFolder = NULL;
hResult = spIEnumIDList->Next(1, &listNoFolder, &ulCount ); // hResult shows an error
spIMalloc->Free(progFolder);
Thank you,
Terry Mancey

email terry@tmancey.ltd.uk | linkedin www.tmancey.ltd.uk | twitter @tmancey
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.141 seconds.