What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » Search » Results

Search Results
Subject Author Forum Time
RE: Known Problems with VB
I think its not that settings are saved in the wrong place, but you access the settings wrongly. There is a line that says ini = iniSettings + "\Freedom.ini", but i think u meant ini = ini + "\Freedom.ini" [i]Edit: I posted this at around the ...
eSouLPlug-Ins01-11-2006 at 05:57 PM
RE: Request: Font Character Extention
How is this not already possible? MsgPlus already supports Unicode.. and these characters are not even Unicide I suppose?
eSouLPlug-Ins12-22-2005 at 09:19 AM
RE: MSNCrypt Encryption Plugin
Hi RooJ, There is no separate exe running. Yes it does support salt. I have a protocol for session establishment, therefore two parties communicate with the cipher associated with the session. I guess with VB, its quite hard to write text directly in...
eSouLPlug-Ins11-27-2005 at 07:01 PM
RE: MSNCrypt Encryption Plugin
Inevitably yes.
eSouLPlug-Ins11-27-2005 at 08:21 AM
RE: MSNCrypt Encryption Plugin
Hi, You might be interested to know that I've made an encryption plugin already. It will be released some time later. :) Some major features:[list] [*]Supports 13 types of block cipher [*]Cipher and key management [*]Emoticons support [*]Font suppor...
eSouLPlug-Ins11-27-2005 at 06:42 AM
RE: Change message limit
Matty, if I use the method you suggested, does it mean I don't need to have SPNG installed in order to send, say, 5000 chars?
eSouLPlug-Ins11-20-2005 at 07:17 PM
Change message limit
Hi, In regular MSN, the character limit per message is 400. With MsgPlus, it can be set to 1100. With StuffPlug, it can go up to 5000! My questions are: 1. From what I observe the 400-limit don't seem to be a protocol thingy, or rather, there is no ...
eSouLPlug-Ins11-20-2005 at 02:22 PM
RE: [vb6] Send file
I've tried with both IMWindowClass and DirectUIHwnd but they give the same effect of invoking Voice conversation.
eSouLPlug-Ins11-07-2005 at 06:54 PM
[vb6] Send file
1. Is there a way to get notified when the IM window receives a file transfer request, and when the transfer is completed? 2. I tried to implement auto-accept by sending "Alt-C" to the IM window's hwnd via 3 methods (sendkeys, postmessage, keyb_ev...
eSouLPlug-Ins11-07-2005 at 06:20 PM
RE: Display PIc Stealer
:o:o:o Care to share what you know? I'm also curious how you managed to find that out.
eSouLPlug-Ins11-02-2005 at 04:45 AM
RE: Display PIc Stealer
Is there a way to find out which CA<number>.bin file correspond to which contact?
eSouLPlug-Ins11-01-2005 at 01:12 PM
RE: [VB6] vbModeless?
Cookie, when I use the exact same code in a normal exe project to call up a new form, the bahaviour was everything as expected, ie. you click the form, it gets its focus and becomes highlighted in the taskbar. But when the same piece of code is used ...
eSouLPlug-Ins10-28-2005 at 07:53 PM
RE: [VB6] vbModeless?
Hi, I discovered an odd behaviour when using this method to show a modeless form. Whenever you use the form (writing some text into a textbox, clicking a button etc.), the form does not appear to be activated, if you look at the taskbar! What i mean...
eSouLPlug-Ins10-28-2005 at 07:14 AM
RE: Tutorial: making an installer for your plugin in a few easy steps
Hi Xerxis, Thanks for the great tutorial! I have a question though.. How do I specify the subdirectory to install at? For instance, I have a plugin called ABC.dll, and in the plugin folder i have a subfolder 'ABC', which contains another two subfol...
eSouLPlug-Ins10-27-2005 at 05:07 PM
RE: MSN or Windows Messenger?
Dempsey, how? As far as I know, nVersion only returns the level of support of MsgPlus! Mike, yes, I'm using SetParent API. VB6 can't seem to subclass a window not owned by itself. :( If anybody knows a workaround please let me know. And also, how d...
eSouLPlug-Ins10-24-2005 at 03:24 PM
MSN or Windows Messenger?
Hi, Is there a way to detect what is the messenger client the user is running? My plugin places an icon below MsgPlus!'s sound icon if the user is using MSN Messenger, and don't do anything if he is using the other (since MsgPlus! do not place any ...
eSouLPlug-Ins10-24-2005 at 02:43 PM
RE: Manipulating window position given hwnd
Thanks for the reply Cookie. After reading them, I tried to rewrite some part of my code and indeed, much to my delight, PostMessage can be sent to a hidden window :D SetWindowPos worked fine too but now that I don't need to change coordinates, I re...
eSouLPlug-Ins10-20-2005 at 04:03 AM
RE: Manipulating window position given hwnd
I can't use ShowWindow(). I need to PostMessage() to the conversation window so I have to activate the window for a brief moment before returning control to my custom window. If the conversation window is visible on screen, it will create flickering...
eSouLPlug-Ins10-19-2005 at 03:02 PM
Manipulating window position given hwnd
Hi, My plugin hides a conversation window (IMessengerConversationWnd object) by changing its 'Left' property to -20000, before opening my own custom window using ShowWindow API (such that it is non-modular). I do this because I need the conversatio...
eSouLPlug-Ins10-19-2005 at 10:21 AM
RE: hWnd of IMWindowClass chat input box
I shifted the code out and tested it on a separate project, but it still doesn't work. Anything is wrong? [code] Dim hwnd_msn As Long Dim hwnd_msn_edit As Long hwnd_msn = FindWindow("IMWindowClass", vbNullString) hwnd_msn_edit = FindWindowEx(hwnd_...
eSouLPlug-Ins10-12-2005 at 05:13 AM
RE: hWnd of IMWindowClass chat input box
Strangely, posting to DirectUIHWND still doesn't do anything. :O
eSouLPlug-Ins10-11-2005 at 03:47 AM
RE: hWnd of IMWindowClass chat input box
Yup I passed both as true. I got around the problem by using sendkeys instead.
eSouLPlug-Ins10-10-2005 at 07:03 PM
RE: hWnd of IMWindowClass chat input box
Hi Matty, your code is fantastic! It helped me very much :D Except for one thing, the message does not seem to get sent at the SendText function (the contact that is supposed to receive the message does not receive anything). I have verified that bot...
eSouLPlug-Ins10-10-2005 at 06:09 PM
[VB6] vbModeless?
Hi, another one from me, sorry for the never-ending questions.. :$ When i do this: form1.show vbmodeless Nothing happens. the form will show up only when I use vbModal for it. Why is it so?
eSouLPlug-Ins10-10-2005 at 05:02 PM
RE: hWnd of IMWindowClass chat input box
Matty, is there a method to set the text of the textbox or perhaps sendkeys to it?
eSouLPlug-Ins10-10-2005 at 04:39 PM
[Hide Excerpts] Pages: (2): « First [ 1 ] 2 » Last »