Jump to content

Change Existing Window Icon


JohnBailey
 Share

Recommended Posts

I am wanting to change any window's icon. The below example is attempting to change Notepad and I am using AnyGui2.7.

#include <anygui.au3>
Global $TargethWnd
$targetctl =  _GuiTarget("Untitled - Notepad", 1, "", 15)
_TargetaddButton("Click me", 50, 50, 160, 20,-1,-1, $targetctl) ;<-----  Just to verify that anygui is working
GUISetState(@SW_SHOW)
_TargetChangeIcon()
GUISetState(@SW_SHOW)

Func _TargetChangeIcon()
    GUISetIcon(@SystemDir&"\SHELL32.dll",130,$TargethWnd)
EndFunc 

While 1
    $msg = GUIGetMsg()
    Sleep(100)
WEnd
A decision is a powerful thing
Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...