checkbox trouble
Checkbox trouble
At run time, when i click on the check box the text inside the label control displays a false string,
i want the text string to be display in bold..once the check box has been tick..
here is my code, what am i doing wrong..
Private Sub boldCheckBox_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles boldCheckBox.CheckedChanged
With Me
KindredBloomOrderForm.formHeaderlbl.ForeColor = Color.Black
If .boldCheckBox.Checked Then
KindredBloomOrderForm.formHeaderlbl.Text = Font.Bold = True
End If
End With
|