Achilles Posted October 12, 2009 Posted October 12, 2009 Each icon has an icon based on it's file type. Is there a way to find a path to this icon (or the exe that contains it)? I've searched some but haven't found any thing related to this. My Programs[list][*]Knight Media Player[*]Multiple Desktops[*]Daily Comics[*]Journal[/list]
bobbintb Posted October 12, 2009 Posted October 12, 2009 i dont quite understand what you are saying. are you trying to specifically access a certain image in the icon file?
TurionAltec Posted October 12, 2009 Posted October 12, 2009 File extension associations are stored in the registry under HKEY_CLASSES_ROOT. Good luck trying to make sense of it. eg: HKR\.wav\(Default)=VLC.wav HKR\VLC.wav\DefaultIcon\(Default)="c:\Program Files\VLC\vlc.exe",0 HKR\.doc\(Default)=Word.document.8 HKR\Word.document.8\DefaultIcon\(Default)=C:\WINDOWS\Installer\{90110409-6000-11D3-8CFE-0150048383C9}\wordicon.exe,1
Zedna Posted October 12, 2009 Posted October 12, 2009 (edited) Each icon has an icon based on it's file type. Is there a way to find a path to this icon (or the exe that contains it)? I've searched some but haven't found any thing related to this.You searched badly ;-)#623934 Edited October 12, 2009 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search
Achilles Posted October 12, 2009 Author Posted October 12, 2009 You searched badly ;-)#623934Apparently I did... Thanks for the link! My Programs[list][*]Knight Media Player[*]Multiple Desktops[*]Daily Comics[*]Journal[/list]
Authenticity Posted October 13, 2009 Posted October 13, 2009 You can also use this function from shell32.dll. Search the forum, there as been many examples to this particular case.
Yashied Posted October 13, 2009 Posted October 13, 2009 (edited) Each icon has an icon based on it's file type. Is there a way to find a path to this icon (or the exe that contains it)? I've searched some but haven't found any thing related to this. I use the following. Returns a path to the icon and its index in "pure" form. #Include <WinAPIEx.au3> Global $Ext = '.au3' ConsoleWrite('(' & $Ext & ')' & @CR) ConsoleWrite('--------------------' & @CR) ConsoleWrite('Type: ' & _WinAPI_AssocQueryString($Ext, $ASSOCSTR_FRIENDLYDOCNAME) & @CR) ConsoleWrite('Command: ' & _WinAPI_AssocQueryString($Ext, $ASSOCSTR_COMMAND) & @CR) ConsoleWrite('Executable: ' & _WinAPI_AssocQueryString($Ext, $ASSOCSTR_EXECUTABLE) & @CR) ConsoleWrite('Icon: ' & _WinAPI_AssocQueryString($Ext, $ASSOCSTR_DEFAULTICON) & @CR) WinAPIEx.au3 Edited October 13, 2009 by Yashied WildByDesign and wakillon 2 My UDFs: iKey | FTP Uploader | Battery Checker | Boot Manager | Font Viewer | UDF Keyword Manager | Run Dialog Replacement | USBProtect | 3D Axis | Calculator | Sleep | iSwitcher | TM | NetHelper | File Types Manager | Control Viewer | SynFolders | DLL Helper Animated Tray Icons UDF Library | Hotkeys UDF Library | Hotkeys Input Control UDF Library | Caret Shape UDF Library | Context Help UDF Library | Most Recently Used List UDF Library | Icons UDF Library | FTP UDF Library | Script Communications UDF Library | Color Chooser UDF Library | Color Picker Control UDF Library | IPHelper (Vista/7) UDF Library | WinAPI Extended UDF Library | WinAPIVhd UDF Library | Icon Chooser UDF Library | Copy UDF Library | Restart UDF Library | Event Log UDF Library | NotifyBox UDF Library | Pop-up Windows UDF Library | TVExplorer UDF Library | GuiHotKey UDF Library | GuiSysLink UDF Library | Package UDF Library | Skin UDF Library | AITray UDF Library | RDC UDF Library Appropriate path | Button text color | Gaussian random numbers | Header's styles (Vista/7) | ICON resource enumeration | Menu & INI | Tabbed string size | Tab's skin | Pop-up circular menu | Progress Bar without animation (Vista/7) | Registry export | Registry path jumping | Unique hardware ID | Windows alignment More...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now