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

Search Results
Subject Author Forum Time
RE: Finished Advanced Plugin installer/uninstaller C++ and VB
Where the message goes? It goes to Messenger Plus! It tells it that we want to install/update a plugin. So Messenger Plus! unloads all its plugins and after 5 seconds it reloads them. In those 5 seconds, you have to copy the plugin in the plugins di...
allex87Plug-Ins07-09-2003 at 08:49 PM
RE: Getting a handle to the conversation HWND...
Haha.. that's clever... thx a lot...
allex87Plug-Ins07-09-2003 at 03:24 PM
Getting a handle to the conversation HWND...
I am trying to get the HWND to the conversation window.. here's what I do... PLUGIN_PARAM plParam; IMessengerWindow *pIMessengerWindow = NULL; plParam.iConversationWnd->QueryInterface(IID_IMess engerConversationWnd, (void **)&pIMessengerWindow); It s...
allex87Plug-Ins07-09-2003 at 01:53 PM
RE: Debugging plugins made with VC++...
Works great! Thank you!
allex87Plug-Ins07-09-2003 at 01:27 PM
RE: Windows Media Player plugin
I think it would be easier if u use a separate protocol, your own protocol... like Indy: http://www.indyproject.org/indy.html It would make it easier for you... Indy is "an open source internet component suite comprised of popular internet protocol...
allex87Plug-Ins07-09-2003 at 12:29 PM
RE: New Plugin: Plugin Lister
What about C++ plugins?? This one lists only VB plugins....
allex87Plug-Ins07-09-2003 at 12:17 PM
RE: Windows Media Player plugin
OO... ic... Maybe this could be a plugin for both the ppl conversating... U can get the file to be sent from the API. The plugin sends the file name, so u can preview it... I'm not sure if Messenger puts the downloaded files in the My Received Files...
allex87Plug-Ins07-09-2003 at 12:16 PM
RE: Translation for 2.20 - MUST READ
OK... now I know... :) Anyways, since I have 2.20.48... it will be easier to modify the translation... :P
allex87Translation07-09-2003 at 12:05 PM
RE: Advanced nickname changer :)
OK... I made the function to set the nick in only 1 color work!!! :D I hope making the functions for 2 and 3 colors won't be too much trouble... heh... So, I updated the plugin.. on the first link, just to hear from you what u think... I hope u like...
allex87Plug-Ins07-09-2003 at 03:44 AM
RE: Translation for 2.20 - MUST READ
As well as Toshiro, I didn't receive the new translation instructions... I am making the new Romanian translation and it is done... and I posted it on forums, but i dind't receive the new translation instructions... I really want to contribute to ...
allex87Translation07-09-2003 at 03:09 AM
Debugging plugins made with VC++...
Does anyone know a way of debugging plugins with the VC++ debugger? And, please, don't tell me to add MessageBox b4 and after the line... i am doing it right now but it's annoying... VC++ has a nice debugger, I was wondering if and how it can be us...
allex87Plug-Ins07-09-2003 at 03:00 AM
RE: Advanced nickname changer :)
Thank you for the encouragement... it's a pretty complex program, because when i get the red color (for example) i get it as 63 instead of 063, so i must make a function which checks it for that... and... i still have some problems on that.. :(
allex87Plug-Ins07-09-2003 at 02:36 AM
RE: Advanced nickname changer :)
:( I still need to do some more work.. but here's what it can do right now.... the plugin will open a window which will let u select up to 3 colors and it can change ur nickname to whatever u want.. I only need to add the color codes before the nick...
allex87Plug-Ins07-08-2003 at 09:21 PM
RE: Finished Advanced Plugin installer/uninstaller C++ and VB
To facilitate updates and quick installations, you can notify Messenger Plus! that you're going to install a new plugin. In that case, Messenger Plus! will unload all its plugins, wait 5 seconds to let you copy your DLL and reload the plugins. To tr...
allex87Plug-Ins07-08-2003 at 09:11 PM
RE: open a new form
OK... here ya go... this is a snippet from my forthcoming AdvancedN Nickname Changer plugin (still need to work a bit on it). Put this in the parsecommand: DialogBox(hDllInst, MAKEINTRESOURCE(IDD_DIALOG1), NULL, NickChanger); U must have a dialog in ...
allex87Plug-Ins07-08-2003 at 09:00 PM
RE: Bug in plugin support?
maybe because if the message length is longer than 1100 (i think thats maximum), the program will crash...but.. to work around it, just set a strlen if... size_t len; len = strlen(sCommandArg); if (len < 1094) { //do whatever you want } else { M...
allex87Plug-Ins07-08-2003 at 08:43 PM
RE: Windows Media Player plugin
I have looked through the documentation and there is no such thing :( However, there is a function to retreive the download directory... This would make the download manager plugin even harder. :( But, why do you want to retreive the file that's be...
allex87Plug-Ins07-08-2003 at 08:37 PM
RE: Finished Advanced Plugin installer/uninstaller C++ and VB
You will see what he means when I will release the source code for my plugin installer. I will do it sometime today (maybe in half an hour) :) It's in the Readme file anyways...
allex87Plug-Ins07-08-2003 at 08:04 PM
RE: Messenger Plus! 2.20.48 - IMPROVE your plugins!
That is not the contact's email, that is a COM interface... try this: http://www.msnfanatic.be/forums/index.php?showtopi c=5799 It shows the basics of using the Messenger API in c++. They also have it in VB...
allex87Plug-Ins07-08-2003 at 03:21 PM
RE: Messenger Plus! 2.20.48 - IMPROVE your plugins!
u can get the email from the PluginParam struct, using the iConversationWnd COM interface.
allex87Plug-Ins07-08-2003 at 01:15 PM
RE: New plugin features to come in a couple of hours
NICE new features! I like especially the PLUGIN_PARAM struct :P
allex87Plug-Ins07-08-2003 at 11:26 AM
RE: New plugin features to come in a couple of hours
Misterjad, a compiled *windows* c++ code works under wine, not stand-alone. If you try to create a console app in windows, chances are (i think 90%) that ur app will also compile in linux without any modifications... However, MFC, API based, .Net fra...
allex87Plug-Ins07-08-2003 at 11:17 AM
RE: New plugin features to come in a couple of hours
Umm.. what I was trying to say, is that for simple apps, VB is better to use cause u dont have to write up lots of code... :) and i hate typing a lot... lol.
allex87Plug-Ins07-08-2003 at 03:12 AM
RE: open a new form
I think API is the easiest way... anyways, if you want a GREAT API tutorial, go to: http://winprog.net/tutorial/ That's how I started. Basically, u need a dialog as a resource. Then u call CreateDialog to create that dialog. Then, u handle all the ...
allex87Plug-Ins07-08-2003 at 03:10 AM
RE: New plugin features to come in a couple of hours
I feel the same way about VB as you Patchou... But VB is a lot more easier to use.. so.. if u don't need pointers... u're safe with VB :P.. anyway.. that's my opinion... Can't wait for the new features!
allex87Plug-Ins07-08-2003 at 03:05 AM
[Hide Excerpts] Pages: (3): « First « 1 [ 2 ] 3 » Last »