Clement Lo
New Member
- Joined
- Dec 17, 2024
- Messages
- 1
- Office Version
- 2003 or older
- Platform
- Windows
Hi I have been struggling with this bugs for a few years and managed to resolve it today with copilot help.
It seem Microsoft have this .bold and .italic property set to a tristate Boolean , the traditional False and True value will always map it to True, You must use msoFalse for False value and msoTrue for True value .
e.g. to turn off the Bolding effect.
More of this info here
Hope your days are better when you solve this bug .
Cheers
It seem Microsoft have this .bold and .italic property set to a tristate Boolean , the traditional False and True value will always map it to True, You must use msoFalse for False value and msoTrue for True value .
e.g. to turn off the Bolding effect.
Code:
.Bold = msoFalse
More of this info here
MsoTriState Enum (Microsoft.Office.Core)
Specifies a tri-state Boolean value.Hope your days are better when you solve this bug .
Cheers
Last edited by a moderator: