Shoutbox

Nick Name Changer - source - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Skype & Technology (/forumdisplay.php?fid=9)
+---- Forum: Skype & Live Messenger (/forumdisplay.php?fid=10)
+----- Thread: Nick Name Changer - source (/showthread.php?tid=26547)

Nick Name Changer - source by matty on 06-02-2004 at 02:54 AM

Ok quite frankly, I am getting sick and tired of all the people on the board who are creating apps and calling a Nick Name Changer when all it does is allow you to create a Nick Name and let you set it yourself.

I made a small app over the past few days, just about 16 colours, 4 Font Styles (Bold, Italic, Underline, and Strikethrough) and 79 Emoticons. The app of course is open source, accept the dll used to set the New Nickname, but it can be found on MSN Fanatic somewhere.

I just hope this will put an end to all the Nick Name creators being made.


Matty


RE: Nick Name Changer - source by Sk3tch on 06-02-2004 at 02:58 AM

nice work Matty

* Sk3tch downloads..

quote:
Originally posted by Matty.
I just hope this will put an end to all the Nick Name creators being made.
well the source on how-to will probably increase the Nick Name creators now :P
RE: Nick Name Changer - source by Phrive on 06-02-2004 at 07:49 AM

[Image: tool.gif]
i got that error message what should i do?


RE: Nick Name Changer - source by Rubber Stamp on 06-02-2004 at 08:22 AM

same message


RE: Nick Name Changer - source by DJeX on 06-02-2004 at 11:50 AM

Runtime Error '429':

ActiveX Componet can't screat object


Thats the error I get.

When I click debug it highlights this line of code:

code:
Set sNickName = New Class1


RE: Nick Name Changer - source by Mike on 06-02-2004 at 12:06 PM

Did you register the dll? :)


RE: Nick Name Changer - source by Phrive on 06-02-2004 at 12:11 PM

its all donw properly but i cnt get it to not say that error


RE: Nick Name Changer - source by matty on 06-02-2004 at 12:35 PM

Are you guys trying to run the EXE or the source in VB?
Does it work for anyone? I know it works for me :)
Try restarting just to be on the safe site


RE: Nick Name Changer - source by Millenium_edition on 06-02-2004 at 12:51 PM

Am I the only one who finds this a very bad way of doing it? You could just use the options dialog instead =/  (open it using Messenger API and then use win32 api to change text and press enter)


RE: Nick Name Changer - source by matty on 06-02-2004 at 12:54 PM

quote:
Originally posted by Millenium_edition
Am I the only one who finds this a very bad way of doing it? You could just use the options dialog instead =/  (open it using Messenger API and then use win32 api to change text and press enter)


But when you do this, your calling open another process that isn't really needed (msmsgs) just to use the api to open the options window.

I could change it to open the options window if no conversation window is open.

The only problem with using the Messenger Api is if they dont have Windows Messenger and you try to even create UIAutomation it fails, So unless you have another way of doing it please share :S

I guess I wrote my reply faster then you could change your reply.
RE: Nick Name Changer - source by Millenium_edition on 06-02-2004 at 01:02 PM

That would be only on XP. But since almost everyone on this forum uses XP (*sigh*), you got a point.

Also: your program would need messenger plus! to work, and since plus! fixes the API automaticly, that wouldn't change a thing.


RE: Nick Name Changer - source by Mnjul on 06-02-2004 at 01:02 PM

Matty, what I am looking for perhaps is the source code of the DLL...inside it is how actual nickname changing works 8-) I think you are still using the method of sending "/nick" to a conversation window, right? ;)


RE: Nick Name Changer - source by matty on 06-02-2004 at 01:05 PM

quote:
Originally posted by Mnjul
Matty, what I am looking for perhaps is the source code of the DLL...inside it is how actual nickname changing works 8-) I think you are still using the method of sending "/nick" to a conversation window, right? ;)

Ya, but its not using sendkeys because that fails to send () its using PostMessage

mnjul check your pm for my email

RE: Nick Name Changer - source by Millenium_edition on 06-02-2004 at 01:30 PM

Sendkeys can send ()

code:
SendKeys "{(}{)}"

RE: Nick Name Changer - source by matty on 06-02-2004 at 01:39 PM

quote:
Originally posted by Millenium_edition
Sendkeys can send ()

code:
SendKeys "{(}{)}"


Ya but if you tell it to sendkeys Text1

and text1 contains () then it doesn't send them, it sends everything else but the ()

RE: Nick Name Changer - source by R1tjuh on 06-03-2004 at 01:43 PM

Can you give me the source of the dll?


RE: Nick Name Changer - source by matty on 06-03-2004 at 02:14 PM

quote:
Originally posted by R1tjuh
Can you give me the source of the dll?

You can find it on MSN Fanatic or You can just use the dll to set the name (just reference to it)
code:
Dim setNickName as Class1
Private Sub Form_Load()
Set setNickName = New Class1

RE: Nick Name Changer - source by Millenium_edition on 06-03-2004 at 03:05 PM

ehm ever thought of using replace()?