Note that the Font constructor is overloaded. If you just want to change the style of the font then use the overload that takes an existing Font as a parameter. For instance, if all you want to do is toggle the Bold style you do this:
VB Code:
myLabel.Font = New Font(myLabel.Font, myLabel.Font.Style Xor FontStyle.Bold)