How to change the mouse cursor

Share your advanced PureBasic knowledge/code with the community.
Mistrel
Addict
Addict
Posts: 3415
Joined: Sat Jun 30, 2007 8:04 pm

Post by Mistrel »

Thank you, Raymond!

http://blogs.msdn.com/oldnewthing/archi ... 55532.aspx

Code: Select all

SHGetSpecialFolderLocation_(0,#CSIDL_FONTS,@*ppidl)
FontsPath.s=Space(#MAX_PATH)
SHGetPathFromIDList_(*ppidl,@FontsPath.s)
Debug Trim(FontsPath.s)
Post Reply