I have C# winform, I installed a couple of ttf fonts, but when i set the text box font to any of the ones i downloaded, i get this error Even though I\'m 100% sure that the
Try
private void Form1_Load(object sender, System.EventArgs e) { label1.Font = new Font("myFont", 12, FontStyle.Regular); }