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

Search Results
Subject Author Forum Time
RE: Sorry if this has been asked...
Music Logger Plus has been written in C#.NET, except some errors after installing it, it does work, but... As far as I know you can only use 1 C#.NET (and probably VB.NET, those are almost the same) plugin in the same time. When installing the second...
J-ThreadPlug-Ins10-04-2005 at 07:13 PM
RE: NEW PLUGIN IN VB.NET NOT WORKING
That's a good point. I know all this and I really tried to be as user friendly as possible. The method I use to get the framework version is not a simple one. I does loop trough a couple of registry values to get the latest installed version. It do...
J-ThreadPlug-Ins10-04-2005 at 06:50 PM
RE: NEW PLUGIN IN VB.NET NOT WORKING
I didn't check, but I assume this is the problem because I couldn't find another problem. But the question is, how can an installer update (or even install) windows messenger correctly? I hate to just place text on my site saying "you must downloa...
J-ThreadPlug-Ins10-04-2005 at 04:18 PM
RE: C Programming Question
How about [code]int num = (int)'A'[/code] So if m is a char: [code]if ((int)m >= (int)'A' || (int)m >= (int)'Z') printf("It is a capital letter");[/code] I don't do C++ but I know a lot of programming languages and this is a method that is s...
J-ThreadTech Talk10-03-2005 at 08:27 PM
RE: [C#] Write to MsgPlus Event Log
Editted again (this one does work): [code] const int HWND_BROADCAST = 0xFFFF; [DllImport("user32", EntryPoint="RegisterWindowMessageA")] public static extern int RegisterWindowMessage([MarshalAs(UnmanagedType.LPS tr)]string lpString); [DllImport...
J-ThreadPlug-Ins10-03-2005 at 06:21 PM
RE: NEW PLUGIN IN VB.NET NOT WORKING
Hmmm, but on a standard windows 98 install... Windows messenger is installed isn't it? So that doesn't help me...
J-ThreadPlug-Ins10-03-2005 at 04:32 PM
RE: Two things
C++ is better, no shit with registering those plugins and stuff... Just copy to the dir and it works. But C++ is a more difficult language to learn off course
J-ThreadPlug-Ins10-03-2005 at 06:54 AM
RE: NEW PLUGIN IN VB.NET NOT WORKING
WOW wait that can help me!:| No messenger API you say, isn't that standard in MSN? Where to download it?
J-ThreadPlug-Ins10-03-2005 at 06:51 AM
RE: Patchou says: "this is my cat waiting for me to finish my cereals"
Well the thread was about the cat, look at the title;). About that notification, I think the plugin itself isn't illigal, but it is illigal to use it. So you should let your contact know your recording it yourselves...
J-ThreadPlug-Ins10-02-2005 at 06:47 AM
RE: Personalised Status: Weird character
That character seems to be ASCII character 255, or 0xFF... Maybe that will help somebody?
J-ThreadWLM Plus! Bug Reports10-01-2005 at 08:40 PM
RE: Patchou says: "this is my cat waiting for me to finish my cereals"
Conclusion: What we've got here is an illigal movie of patchou's cat:o But to be serious, I think it isn't illigal as long as you tell the other person you are recording the video...
J-ThreadPlug-Ins10-01-2005 at 08:35 PM
RE: PHP help
That isn't an error is it? I'd rather prefer:[code]return "<a href=\"http://" . $lang . ".wikipedia.org/wiki/" . $title . "\">" . $title1 . "</a>";[/code] But thats just style..
J-ThreadTech Talk10-01-2005 at 06:03 PM
RE: Install a new plugin
There are some installer scripts posted here on the forums a while ago... You can search for it. By the way, don't try the VB.NET plugin, I can't even install it myself:P
J-ThreadPlug-Ins10-01-2005 at 06:01 PM
RE: Patchou says: "this is my cat waiting for me to finish my cereals"
I only like the cat8-)
J-ThreadPlug-Ins10-01-2005 at 05:59 PM
RE: Install a new plugin
The plugin should be registered too... You should use installers to install them...
J-ThreadPlug-Ins10-01-2005 at 05:58 PM
RE: What am I doing wrong?
C++ plugins don't need to be registered, they can just be placed in the plugin dir...
J-ThreadPlug-Ins10-01-2005 at 03:10 PM
RE: PHP help
[code]$string = preg_replace('/\[\[wiki(?:\:|)([a-zA-Z]+|)\]( [a-zA-z0-9]+)\]/e', 'defL("$1","$2")',$string); function defL($lang,$title){ if($lang=='')$lang='en'; return "<a href='http://$lang.wikipedia.org/wiki/$title'>" . str_r...
J-ThreadTech Talk10-01-2005 at 11:08 AM
RE: PHP help
My PERL Regex aren't that good... At least I'm sure the replacement of _ isn't possible with a simple regular expression. How would you do that with your preg function? By the way, Leo's solution with the preg_replace does work, but only if there...
J-ThreadTech Talk10-01-2005 at 08:22 AM
RE: nick changer on timer
Euhm...nope... But I'll give you a few parts of it. [code]public bool Initialize(long nVersion, string sUserEmail, MessengerAPI.MessengerClass oMessenger) { Timer tmr = new Timer(); tmr.Interval = 1000 * 10; // 10 seconds tmr.Tick += new EventHa...
J-ThreadPlug-Ins10-01-2005 at 08:10 AM
RE: PHP help
[code]function wiki_link($input) { $i = 0; $output = ""; while($i < strlen($input)) { $searchfor = "[[wiki"; if(substr($input, $i, strlen($searchfor)) == $searchfor) { if($input{$i+strlen($searchfor)} == ":") { ...
J-ThreadTech Talk09-30-2005 at 08:58 PM
RE: PHP help
$input = ereg_replace("\[\[wiki\]([[:alpha:]]+)\]", "<a href=\"http://www.wikipedia.org/wiki/\\1\"> \1</a>", $input); That's your first question. With languages it is: [noparse]$input = ereg_replace("\[\[wiki:([[:alpha:]]+)\]([[:...
J-ThreadTech Talk09-30-2005 at 05:24 PM
RE: plugin to change my display name
The way I made it now, there is just a Interval. For example, you can choose 3 hours, then every 3 hours your name is changed. When you turn of msn and you come back 8 hours later, your name is immediatly changed, but off course only once. So when yo...
J-ThreadPlug-Ins09-30-2005 at 01:44 PM
RE: nick changer on timer
I've made the plugin in C# and it's working properly, just got some problems installing it at windows 98 machines...
J-ThreadPlug-Ins09-30-2005 at 01:36 PM
RE: Patchou says: "this is my cat waiting for me to finish my cereals"
WOW Patchou you've got a nice cat!! :D And eh TB, nice plugin, good to see there are such great programmers in this world!(Y)
J-ThreadPlug-Ins09-29-2005 at 08:03 PM
RE: plugin to change my display name
Hmm I can but I would rather like to have a final version that just works. I tested again today but at windows 98 (different pc's, all the same) and everything looks the same as windows XP (registry ed) but the plugin totally isn't loaded :S Well I...
J-ThreadPlug-Ins09-29-2005 at 07:51 PM
[Hide Excerpts] Pages: (19): « First « 12 13 14 15 [ 16 ] 17 18 19 » Last »