Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C#
  4. SHGetFileInfo does not work for large icons

SHGetFileInfo does not work for large icons

Scheduled Pinned Locked Moved C#
help
3 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    N Offline
    nilam2477
    wrote on last edited by
    #1

    I need to use SHGetFileInfo to display large icons.For small icon display it works fine. If i change the parameter to display large icon (SHGFI_LARGEICON) it does not display the file with large icon, it always displays small icon. Could you pls help me hImgSmall = Win32.SHGetFileInfo(fName, 0, ref shinfo, (uint)Marshal.SizeOf(shinfo), Win32.SHGFI_ICON | Win32.SHGFI_SMALLICON); hImgLarge = Win32.SHGetFileInfo(fName, 0, ref shinfo, (uint)Marshal.SizeOf(shinfo), Win32.SHGFI_ICON | Win32.SHGFI_LARGEICON]);

    D 2 Replies Last reply
    0
    • N nilam2477

      I need to use SHGetFileInfo to display large icons.For small icon display it works fine. If i change the parameter to display large icon (SHGFI_LARGEICON) it does not display the file with large icon, it always displays small icon. Could you pls help me hImgSmall = Win32.SHGetFileInfo(fName, 0, ref shinfo, (uint)Marshal.SizeOf(shinfo), Win32.SHGFI_ICON | Win32.SHGFI_SMALLICON); hImgLarge = Win32.SHGetFileInfo(fName, 0, ref shinfo, (uint)Marshal.SizeOf(shinfo), Win32.SHGFI_ICON | Win32.SHGFI_LARGEICON]);

      D Offline
      D Offline
      DaveyM69
      wrote on last edited by
      #2

      Have you defined the constants correctly? public const uint SHGFI_ICON = 0x100; public const uint SHGFI_LARGEICON = 0x0; // 'Large icon public const uint SHGFI_SMALLICON = 0x1; // 'Small icon

      Dave

      1 Reply Last reply
      0
      • N nilam2477

        I need to use SHGetFileInfo to display large icons.For small icon display it works fine. If i change the parameter to display large icon (SHGFI_LARGEICON) it does not display the file with large icon, it always displays small icon. Could you pls help me hImgSmall = Win32.SHGetFileInfo(fName, 0, ref shinfo, (uint)Marshal.SizeOf(shinfo), Win32.SHGFI_ICON | Win32.SHGFI_SMALLICON); hImgLarge = Win32.SHGetFileInfo(fName, 0, ref shinfo, (uint)Marshal.SizeOf(shinfo), Win32.SHGFI_ICON | Win32.SHGFI_LARGEICON]);

        D Offline
        D Offline
        DaveyM69
        wrote on last edited by
        #3

        After a bit of 'googling' is appears that SHGetFileInfo ... _LARGEICON returns the 32x32 icon, not any greater than that. You need to call SHGetFileInfo to get the image list index, then SHGetImageList to get the larger icons. Some code here[^] that may be useful.

        Dave

        1 Reply Last reply
        0
        Reply
        • Reply as topic
        Log in to reply
        • Oldest to Newest
        • Newest to Oldest
        • Most Votes


        • Login

        • Don't have an account? Register

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • World
        • Users
        • Groups