A family of Microsoft spreadsheet software with tools for analyzing, charting, and communicating data.
I just stumbled on the answer then tested it.
Totally screwy, and non-intuitive.
The setting is
Application.ShowMenuFloaties
however
Application.ShowMenuFloaties = True
actually sets the setting it to False.
Application.ShowMenuFloaties = False,
if it is already False, toggles it to True.
If it is True, it does nothing
Application.ShowMenuFloaties = Application.ShowMenuFloaties
toggles it.
So, for any guarantee, level the playing field with
Application.ShowMenuFloaties = True
(which sets it False).
Then toggle it
Application.ShowMenuFloaties = Application.ShowMenuFloaties
or not, as need be.
Sub ShowFloaties() ' True = False, 2nd line toggles to True
Application.ShowMenuFloaties = True
Application.ShowMenuFloaties = Application.ShowMenuFloaties
End Sub
Sub Hidefloaties() ' True = False
Application.ShowMenuFloaties = True
End Sub
Cheers -
- glenn