WolfWorld Posted July 25, 2007 Posted July 25, 2007 (edited) How do we get icon from an exe And Copy It Out As A Ico Edited July 25, 2007 by athiwatc Main project - Eat Spaghetti - Obfuscate and Optimize your script. The most advance add-on.Website more of GadGets!
Monamo Posted July 25, 2007 Posted July 25, 2007 How do we get icon from an exeAnd Also a number of itIf you're just looking to extract icons, get the reference number, etc, you can use Resource Hacker.But I typically use Icon Sushi for extracting/building my icon sets. - MoChr(77)& Chr(97)& Chr(100)& Chr(101)& Chr(32)& Chr(121)& Chr(97)& Chr(32)& Chr(108)& Chr(111)& Chr(111)& Chr(107)-------I've told you 100,000 times not to exaggerate!-------Don't make me hit you with my cigarette hand...-------My scripts:Random Episode Selector, Keyboard MouseMover, CopyPath v2.1, SmartRename for XP,Window Tracer[sup]New![/sup]
WolfWorld Posted July 25, 2007 Author Posted July 25, 2007 If you're just looking to extract icons, get the reference number, etc, you can use Resource Hacker.But I typically use Icon Sushi for extracting/building my icon sets.i need to make it with pure autoit(That why i post in autoit forum) Main project - Eat Spaghetti - Obfuscate and Optimize your script. The most advance add-on.Website more of GadGets!
Kogmedia Posted July 25, 2007 Posted July 25, 2007 Here is an IconViewer not quote what you are looking for bur may give you some inspiration. #include <GUIConstants.au3> #Include <GuiListView.au3> GUICreate("Shell32.dll icons") $listview = GUICtrlCreateListView ("Shell32.dll icons",0,0,400,350) _GUICtrlListViewSetColumnWidth ( -1, 0, $LVSCW_AUTOSIZE_USEHEADER ) GUICtrlSetStyle($listview,$LVS_ICON) for $i = 0 to 237 GUICtrlCreateListViewItem($i,$listview) GUICtrlSetImage (-1, "shell32.dll", $i,1) Next global $state = 1 $button = GUICtrlCreateButton("Switch",0,351,400,50) GUISetState (@SW_SHOW) ; will display an empty dialog box While 1 $msg = GUIGetMsg() select case $msg = $GUI_EVENT_CLOSE ExitLoop case $msg = $button select case $state = 1 $state = 2 GUICtrlSetStyle($listview,$LVS_LIST) case $state = 2 $state = 3 GUICtrlSetStyle($listview,$LVS_SMALLICON) case $state = 3 $state = 1 GUICtrlSetStyle($listview,$LVS_ICON) EndSelect EndSelect Wend [font="Verdana"]Keith (Kogmedia)[/font]My ScriptQuick Search - Internet / Hard Drive Search
WolfWorld Posted July 25, 2007 Author Posted July 25, 2007 Still it does not help me but thanks Main project - Eat Spaghetti - Obfuscate and Optimize your script. The most advance add-on.Website more of GadGets!
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