What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [?] API Function for changing window taskbar title.

[?] API Function for changing window taskbar title.
Author: Message:
felipEx
Scripting Contest Winner
***


Posts: 378
Reputation: 24
35 / Male / Flag
Joined: Jun 2006
RE: [?] API Function for changing window taskbar title.
something like this ?
code:
function OnEvent_ChatWndCreated(ChatWnd){
var Wstyle = 0 /* WS_OVERLAPPED */ | 0x2000000 /* WS_CLIPCHILDREN */ | 0x4000000 /* WS_CLIPSIBLINGS */  ;
Wstyle = Wstyle | 0x40000;
Interop.Call("user32", "SetMenu", ChatWnd.Handle, 0);
//Interop.Call("user32", "SetWindowTextW", ChatWnd.Handle, "new title...");
Interop.Call("user32", "SetWindowLongW", ChatWnd.Handle, -16 /* GWL_STYLE */, Wstyle);
Interop.Call("user32", "ShowWindow", ChatWnd.Handle, 1);
}

This post was edited on 09-07-2007 at 06:57 AM by felipEx.
09-07-2007 06:14 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[?] API Function for changing window taskbar title. - by roflmao456 on 09-06-2007 at 09:47 PM
RE: [?] API Function for changing window taskbar title. - by deAd on 09-06-2007 at 10:39 PM
RE: [?] API Function for changing window taskbar title. - by roflmao456 on 09-06-2007 at 11:16 PM
RE: [?] API Function for changing window taskbar title. - by Stigmata on 09-06-2007 at 11:24 PM
RE: [?] API Function for changing window taskbar title. - by roflmao456 on 09-07-2007 at 01:08 AM
RE: [?] API Function for changing window taskbar title. - by NanaFreak on 09-07-2007 at 05:43 AM
RE: [?] API Function for changing window taskbar title. - by felipEx on 09-07-2007 at 06:14 AM
RE: [?] API Function for changing window taskbar title. - by Felu on 09-07-2007 at 03:01 PM
RE: [?] API Function for changing window taskbar title. - by roflmao456 on 09-07-2007 at 08:31 PM
RE: [?] API Function for changing window taskbar title. - by deAd on 09-07-2007 at 08:34 PM
RE: [?] API Function for changing window taskbar title. - by Patchou on 09-08-2007 at 04:29 AM
RE: [?] API Function for changing window taskbar title. - by Matti on 09-08-2007 at 09:49 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On