What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » WLM Plus! General » Force Plus to load

Force Plus to load
Author: Message:
lopardo
Veteran Member
*****


Posts: 1395
Reputation: 33
37 / Male / Flag
Joined: Nov 2002
Status: Away
O.P. RE: Force Plus to load
Great! Now I understand :)

This is for Delphi:
function IsMessengerAutostartEnabled: Boolean;
var
  reg: TRegistry;
  Buffer: DWORD;
begin
  Result := False;

  reg := TRegistry.Create;
  try
    reg.RootKey := HKEY_CURRENT_USER;

    if (reg.OpenKey('\Software\Microsoft\MSNMessenger',False)) then
    begin
      try
        if (reg.ReadBinaryData('AppSettings',Buffer,SizeOf(Buffer)) = 4) then
        begin
          Result := (Buffer and $0200 <> 0);
        end;
      except
      end;
    end;
  finally
    reg.Free;
  end;
end;

One last thing though, how did you know that option was 0x200?
[Image: userbar452797dd.gif]
08-12-2004 04:44 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
Force Plus to load - by lopardo on 08-07-2004 at 08:59 PM
RE: Force Plus to load - by Ezra on 08-07-2004 at 09:02 PM
RE: Force Plus to load - by lopardo on 08-07-2004 at 09:14 PM
RE: Force Plus to load - by Ezra on 08-07-2004 at 09:15 PM
RE: Force Plus to load - by lopardo on 08-07-2004 at 09:21 PM
RE: Force Plus to load - by CookieRevised on 08-09-2004 at 03:17 PM
RE: Force Plus to load - by Patchou on 08-09-2004 at 05:04 PM
RE: Force Plus to load - by cooldude_i06 on 08-09-2004 at 06:24 PM
RE: Force Plus to load - by CookieRevised on 08-10-2004 at 03:04 AM
RE: Force Plus to load - by Patchou on 08-10-2004 at 07:05 AM
RE: Force Plus to load - by CookieRevised on 08-10-2004 at 10:07 AM
RE: Force Plus to load - by lopardo on 08-10-2004 at 09:17 PM
RE: Force Plus to load - by CookieRevised on 08-11-2004 at 01:32 PM
RE: Force Plus to load - by CookieRevised on 08-11-2004 at 05:02 PM
RE: Force Plus to load - by Patchou on 08-11-2004 at 05:50 PM
RE: Force Plus to load - by Dempsey on 08-11-2004 at 06:47 PM
RE: Force Plus to load - by Choli on 08-11-2004 at 09:06 PM
RE: Force Plus to load - by lopardo on 08-12-2004 at 04:44 AM
RE: Force Plus to load - by CookieRevised on 08-12-2004 at 08:38 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