So, I'm just making me a little agent which will sit on top of all my Windows and read my MSN messages (I've disabled TTS, that was annoying! but I like the balloon). It works great, except... the balloon displays each word individually... and that's really annoying.
I got the PropertySheet up (that was a nuisance!) but there doesn't seem to be an option for this, only for disabling the balloon completely. Not what I want obviously.
Anyone know a way for it just to show the full message?
Ta.
PS: For those interested, in VB .NET you can add a reference to the MS Agent Server 2.0 thing, and use this code:
code:
Dim server As AgentServerObjects.AgentServer = New AgentServerObjects.AgentServer
Dim tv As AgentServerObjects.IAgentPropertySheet = server
tv.SetVisible(True)
To show the property pages.