Subscribe: Subscribe to BigBlueBallRSSSubscribe to BigBlueBall by emailEmailSubscribe to BigBlueBallTwitter


Go Back   BigBlueBall Forums > Instant Messaging > Yahoo! Messenger Support
Forgot Password? Register
Connect with Facebook

Reply
 
LinkBack Topic Tools
  #11 (permalink)  
Old 09-17-2006, 01:49 PM
tim2679's Avatar
Senior Member
 

Join Date: Aug 2006
Posts: 141
tim2679 has a spectacular aura about (100)tim2679 has a spectacular aura about (100)
Quote:
My only nit would be changing the file version, product name, and product version to 8.0.0.716.
I state in the post with the download link that it is for use with
Yahoo Messenger 8.0.0.711 to 8.0.0.716 and also when you open
the patch the window caption also states 8.0 711 to 716. Also when
you start the program it checks which version of messenger that way it
won't patch a version of messenger where the Offsets would be different
and have the chance of having the messenger crash on start up.

Also you are welcome to scan my program with any anti-virus,
spyware checker, ect that you like. More so if you did not download
it from this thread in bigblueball.
Reply With Quote
 

 
  #12 (permalink)  
Old 09-18-2006, 07:00 PM
Banned
 

Join Date: Feb 2006
Posts: 345
Cchris78 has a spectacular aura about (100)Cchris78 has a spectacular aura about (100)
Tim you are good at programming, I just tried to crash my computer by useing multiple instances of Yahoo Messenger 8.0 with your AD remover.

Features I was using, at the same time on three different IMs are, Broadcasting Webcam on one instance and viewing on the other two, Voice Conference on all three, Yahoo music on all three, IMViroment, Photo Share, File Share, Chat, Audibles, buzz, and also adding each instance as a friend. lol very noisey but everything worked like a charm.

I know nobody is going to send a file/photo or a Voice Conference with themself or even view there own cam, but I was testing to see if you could do many things on each instance of Yahoo.

The only thing that does not work like a charm, on more then one instance of Yahoo is Display Images, and Call only works on one instance at a time.

No problems yet found for tim's AD remover.
or even Yahoo messenger 8.0.0.716

Last edited by Cchris78; 10-20-2006 at 08:16 PM.
Reply With Quote
  #13 (permalink)  
Old 09-18-2006, 08:36 PM
tim2679's Avatar
Senior Member
 

Join Date: Aug 2006
Posts: 141
tim2679 has a spectacular aura about (100)tim2679 has a spectacular aura about (100)
Quote:
I just tried to crash my computer by useing multiple instances of Yahoo Messenger 8.0 with your AD remover.
Remember to use caution when opening many instances of Yahoo Messenger 8.0
Chris. Each new messenger window you open will use resources and have the
chance of running out of Free Memory.

Also remember just as you are able to enable multiple instances, you are also
able to disable them as well.
Reply With Quote
  #14 (permalink)  
Old 09-18-2006, 08:52 PM
Banned
 

Join Date: Feb 2006
Posts: 345
Cchris78 has a spectacular aura about (100)Cchris78 has a spectacular aura about (100)
I already disabled the multiple instances since I don't use it, I only wanted to fully try your software. Since I never used any of your other software before and it works 100% as advertised, for what I saw.

If your wondering this is the computer I used to do the test.

Computer -> Hp Pavilion(a1310y)
Processor-> 3GHz(Pentium 4 HT)
Operating systems-> Windows XP SP2
Memory-> (1GB)
Pagefile-> 1524 - 3048
Connection-> DSL 1.5Mbps
Network-> Realtek RTL8139
Sound-> Realtek High Definition Audio
Display-> Intel 82915G/GV/910GL Express with 128Mb
Firewall-> Winxp firewall

Last edited by Cchris78; 10-20-2006 at 08:17 PM.
Reply With Quote
  #15 (permalink)  
Old 09-19-2006, 02:30 AM
Dermot's Avatar
Here to help!
 

Join Date: Dec 2004
Location: Louth, Ireland.
Posts: 1,304
Dermot is a celebrity (300)Dermot is a celebrity (300)Dermot is a celebrity (300)Dermot is a celebrity (300)
Send a message via ICQ to Dermot Send a message via AIM to Dermot Send a message via MSN to Dermot Send a message via Yahoo to Dermot
Using multiple instances of Messenger is up to your pc, not the program that enabled it.

Doing so to test how many you could open is pretty pointless? unless you're testing your machines ability to before you sell it or update.

I assume tim just used the Plural key like everybody else?

Irish Gaming - 1000+ Games and climbing!
Reply With Quote
  #16 (permalink)  
Old 09-19-2006, 03:01 AM
tim2679's Avatar
Senior Member
 

Join Date: Aug 2006
Posts: 141
tim2679 has a spectacular aura about (100)tim2679 has a spectacular aura about (100)
Quote:
I assume tim just used the Plural key like everybody else?
Yes, its the easiest way of enabling and disabling multiple instances of YIM 8.0

Easy meaing you don't have to change the YahooMessenger.exe binary data
and also easier to use for those who don't like messing with the registry editor.

It creates the DWord Value for you, and also sets the Value Data.

When you load my program it will look to see if you already have a DWord created.
If one is there it then checks to see if the Value Data is 0 or if its equal or greater
then 1. If there is no DWord or if the Data Value is 0 then it knows its disabled.
If its equal to or greater then 1 if knows it is enabled. If you already had a DWord
created before using my program it will allow you to disable it without having to go
to the registry editor to do it.

Last edited by tim2679; 09-19-2006 at 03:15 AM.
Reply With Quote
  #17 (permalink)  
Old 09-19-2006, 03:12 AM
Dermot's Avatar
Here to help!
 

Join Date: Dec 2004
Location: Louth, Ireland.
Posts: 1,304
Dermot is a celebrity (300)Dermot is a celebrity (300)Dermot is a celebrity (300)Dermot is a celebrity (300)
Send a message via ICQ to Dermot Send a message via AIM to Dermot Send a message via MSN to Dermot Send a message via Yahoo to Dermot
Yeah, same as me.

btw, this is what i use to toggle nicknames on/off on the fly tim.

Code:
Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" (ByVal hwnd As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long


Function StopNN()
Call SendMessage(FindWindow("imclass", vbNullString), &H111, 642, 0)
End Function

Function ShowNN()
Call SendMessage(FindWindow("imclass", vbNullString), &H111, 642, 0)
End Function
..of course you must do the toggle before messenger closes.

You can add it to your patch if you want.

Irish Gaming - 1000+ Games and climbing!

Last edited by Dermot; 09-19-2006 at 03:13 AM. Reason: can't spell
Reply With Quote
  #18 (permalink)  
Old 09-19-2006, 07:43 AM
Banned
 

Join Date: Feb 2006
Posts: 345
Cchris78 has a spectacular aura about (100)Cchris78 has a spectacular aura about (100)
I started just to see if there was anything that would not work with Tim's Ad remover. I saw no problems after I blocked the main messenger AD.

I will get a new pc, once my pc can't handle the software I use. Once that happens, updateing is pointless becouse the things that need to be updated costs more then a new pc. Except I most likely will upgrade to 2GB of memory soon.
Before you say that is dumb, I am talking about like three years from now and not the top of the line pc just newer. I just got this pc a few month ago.

Last edited by Cchris78; 10-20-2006 at 08:17 PM.
Reply With Quote
  #19 (permalink)  
Old 09-19-2006, 07:14 PM
Ven0m's Avatar
Y!Messiah
 

Join Date: May 2005
Location: Missouri
Posts: 1,575
Ven0m has left a lasting impression (500)Ven0m has left a lasting impression (500)Ven0m has left a lasting impression (500)Ven0m has left a lasting impression (500)Ven0m has left a lasting impression (500)Ven0m has left a lasting impression (500)
The only problems I find with 716 are that display pictures aren't working for me again. Just black boxes (711 worked), and they still haven't fixed the chat word filter bug.
Reply With Quote
  #20 (permalink)  
Old 09-19-2006, 07:43 PM
tim2679's Avatar
Senior Member
 

Join Date: Aug 2006
Posts: 141
tim2679 has a spectacular aura about (100)tim2679 has a spectacular aura about (100)
I am currently using Yahoo Messenger 8.0.0.716 and the display pictures are displaying properly for me.
Reply With Quote
Reply


Currently Active Users Viewing This Topic: 1 (0 members and 1 guests)
 
Topic Tools


Similar Topics
Topic Topic Starter Forum Replies Last Post
Yahoo! Messenger v8 Settings, Ports etc. shergill Yahoo! Messenger Support 0 09-25-2006 06:21 AM
Yahoo! Messenger Plus 1.7CT for US, UK, and more oliezekat Yahoo! Messenger Support 48 09-27-2005 01:00 PM
Yahoo! Announces Yahoo! 360 Service Jeff Yahoo! Messenger News 3 08-09-2005 12:23 AM
No Audio in the newest Yahoo Messenger. 2oldtech58 Yahoo! Messenger Support 5 06-06-2004 01:00 AM
having major problems with yahoo messenger Mr.Midnight Yahoo! Messenger Support 3 05-22-2004 01:24 PM

 

All times are GMT -5. The time now is 05:19 PM.