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:
Private Sub mnuLabelFontStyleBoldItalic_Click() With lblText(m_intControlIndex) .Font.Bold = Not .Font.Bold .Font.Italic = Not .Font.Italic End With End Sub




Reply With Quote