Z-TIA
---
Outgoing mail is certified Squeeky clean.
Checked by AVG anti-virus system (http://www.grisoft.com).
Version: 6.0.330 / Virus Database: 184 - Release Date: 28/02/2002
Create a new DWORD value, name it EnableBalloonTips, and set it equal to 1.
If EnableBalloonTips is already there and equal to 0, set it equal to 1.
Quit the registry editor, log off, and log back on.
That will enable the balloon tips.
--
Jason Tsang - Windows XP MVP & Associate Expert
Find out about the Windows XP Expert Zone -
www.microsoft.com/windowsxp/expertzone
Find out about the MS MVP Program -
http://support.microsoft.com/support/mvp/
"Z" <B@MAN> wrote in message news:Ounuc8jxBHA.2368@tkmsftngp02...
Z
"Jason Tsang" <jason-o...@ETEmvps.org> wrote in message
news:u2qcpTkxBHA.2716@tkmsftngp04...
--
Jason Tsang - Windows XP MVP & Associate Expert
Find out about the Windows XP Expert Zone -
www.microsoft.com/windowsxp/expertzone
Find out about the MS MVP Program -
http://support.microsoft.com/support/mvp/
"Z" <B@MAN> wrote in message news:u5apmYkxBHA.2120@tkmsftngp04...
'xp_balloontips.vbs - Disables/Enables Windows XP BalloonTips
'© Doug Knox - rev 02/06/2002
'This code may be freely distributed/modified
Option Explicit
'Declare variables
Dim WSHShell, n, MyBox, p, itemtype, Title
Set WSHShell = WScript.CreateObject("WScript.Shell")
p =
"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanc
ed\"
p = p & "EnableBalloonTips"
itemtype = "REG_DWORD"
n = 1
WSHShell.RegWrite p, n, itemtype
Title = "Balloon Tips are now Disabled." & vbCR
Title = Title & "You may need to log off/log on" & vbCR
Title = Title & "For the change to take effect."
MyBox = MsgBox(Title,4096,"Finished")
Leaves the value at 1 not 0??
Z
"Jason Tsang" <jason-o...@ETEmvps.org> wrote in message
news:OYWNAfkxBHA.2296@tkmsftngp03...
In the disabled state, the value is 0
Therefore, in its enabled state, the value should be 1 (or delete the dword value enableballontips)
--
Jason Tsang - Windows XP MVP & Associate Expert
Find out about the Windows XP Expert Zone -
www.microsoft.com/windowsxp/expertzone
Find out about the MS MVP Program -
http://support.microsoft.com/support/mvp/
"Z" <B@MAN> wrote in message news:ed5mxkkxBHA.1396@tkmsftngp05...