主题:怎么样访问%SystemRoot%\\system32\\shell32.dll文件?
Icon ic0=myExtractIcon("%SystemRoot%\\system32\\shell32.dll",15);
TreeImageList.Images.Add(ic0);
Icon ic1=myExtractIcon("%SystemRoot%\\system32\\shell32.dll",5);
TreeImageList.Images.Add(ic1);
Icon ic2=myExtractIcon("%SystemRoot%\\system32\\shell32.dll",7);
TreeImageList.Images.Add(ic2);
Icon ic3=myExtractIcon("%SystemRoot%\\system32\\shell32.dll",11);
TreeImageList.Images.Add(ic3);
Icon ic4=myExtractIcon("%SystemRoot%\\system32\\shell32.dll",3);
TreeImageList.Images.Add(ic4);
Icon ic5=myExtractIcon("%SystemRoot%\\system32\\shell32.dll",4);
TreeImageList.Images.Add(ic5);
Icon ic6=myExtractIcon("%SystemRoot%\\system32\\shell32.dll",101);
TreeImageList.Images.Add(ic6);
看到这么一段代码,据说系统图标文件都存在%SystemRoot%\\system32\\shell32.dll这个文件里,我怎么样才能查看里面的图标呢?
上面代码引用了这个dll文件,并且知道index,怎么做到的?
??
TreeImageList.Images.Add(ic0);
Icon ic1=myExtractIcon("%SystemRoot%\\system32\\shell32.dll",5);
TreeImageList.Images.Add(ic1);
Icon ic2=myExtractIcon("%SystemRoot%\\system32\\shell32.dll",7);
TreeImageList.Images.Add(ic2);
Icon ic3=myExtractIcon("%SystemRoot%\\system32\\shell32.dll",11);
TreeImageList.Images.Add(ic3);
Icon ic4=myExtractIcon("%SystemRoot%\\system32\\shell32.dll",3);
TreeImageList.Images.Add(ic4);
Icon ic5=myExtractIcon("%SystemRoot%\\system32\\shell32.dll",4);
TreeImageList.Images.Add(ic5);
Icon ic6=myExtractIcon("%SystemRoot%\\system32\\shell32.dll",101);
TreeImageList.Images.Add(ic6);
看到这么一段代码,据说系统图标文件都存在%SystemRoot%\\system32\\shell32.dll这个文件里,我怎么样才能查看里面的图标呢?
上面代码引用了这个dll文件,并且知道index,怎么做到的?
??