Hi,
This code snippet is to change the font style of a control. This is specially useful for controls that are dynamically added from code at runtime.
lblSample.Font = new Font(lblSample.Font, FontStyle.Bold);
chkSample.Font = new Font(chkSample.Font, FontStyle.Bold);
Thanks,
DnG