Been just randomly playing around with some code here lately and drawpic with an icon and teh -g option doesn't seem to work right.

Help file:
Quote:
The -gN switch attempts to load the large icon in an icon file, if none exists, it loads the small icon. If N is specified, N = 0 loads the small icon, N = 1 loads the large icon, and N = 2 loads the actual icon.


But using -g0 loads the large icon, -g1 loads the small one

the icon 221 is the info icon.

To show the small icon i had to use this:
drawpic -cog1 @window 12 7 221 $+(", C:\WINDOWS\system32\shell32.dll, ")

A friend of mine installed an older version (6.16) and it showed the large icon on that version.

Made a quick fix temporarily using this so that it worked on both versions:

drawpic -co $+ $iif($version = 6.2*,g0,g1) @window 12 7 221 $+(", C:\WINDOWS\system32\shell32.dll, ")

Has anyone else had this problem on 6.2?