What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Skype & Technology » Skype & Live Messenger » Help with coding/hex editing

Help with coding/hex editing
Author: Message:
Frosty
Junior Member
**


Posts: 17
34 / Male / –
Joined: Oct 2004
O.P. Help with coding/hex editing
ok. So i managed to scrounge this code from like one of my best friends.

Private Sub Command1_Click()
On Error GoTo error:
Open "C:\Program Files\Messenger\msmsgs.exe" For Binary As #1
Put #1, &H16EC1, "4542"
Close #1
MsgBox "Banner has been sucessfully removed"
error:
MsgBox "Please close messenger!"
End Sub

He told me he used it for messenger 4 or MSN 4 i can't remember which. But he wont explain it to me. He tells me i gotta work it out myself. But i have spent a while trying to understand it. I undersstand that "4542" is a variable of some sort but the "&H16EC1" part i dont. I hex edit and find nothing of the sort. Plus in the code it shows no sign of changing variables at all. So i'm really stuck on this. So if anyone could help me that would be great :)
10-09-2004 11:36 AM
Profile E-Mail PM Web Find Quote Report
Choli
Elite Member
*****

Avatar
Choli

Posts: 4714
Reputation: 42
42 / Male / Flag
Joined: Jan 2003
RE: Help with coding/hex editing
&H16EC1 is an hexadecimal number. It's decimal value is
((((((1 * 16) + 6) * 16) + 14) *16) + 12) * 16 +1
which is the same as
1*16^4 + 6*16^3 + 14*16^2 + 12*16 + 1

It's just another way to represent numbers.


The code, opens the exe of messenger and modifies it. It writes the string "4542" at the offset 0x16EC1 from the begining. Doing that is illegal, so I won't explain anything more.
Messenger Plus! en espaņol:
<< http://www.msgpluslive.es/ >>
<< http://foro.msgpluslive.es/ >>
:plus4:
10-09-2004 01:43 PM
Profile PM Find Quote Report
Frosty
Junior Member
**


Posts: 17
34 / Male / –
Joined: Oct 2004
O.P. RE: Help with coding/hex editing
Thank you soooooo much!!! *understands* :)
10-09-2004 05:15 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »


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