when the label has received a end user caption, they can go into a menu to specify the whole label as a particular format. one of those formats, i am trying to accomplish is Bold + Italic; however, its toggling between either/or, instead of setting it bold + italic or neither. i cannot seem to find anywhere, where you can set both and then toggle between the two. this is what i have so far?
VB Code:
  1. Private Sub mnuLabelFontStyleBoldItalic_Click()
  2.     With lblText(m_intControlIndex)
  3.         .Font.Bold = Not .Font.Bold
  4.         .Font.Italic = Not .Font.Italic
  5.     End With
  6. End Sub