Unfortunately, it looks like that font has many issues. Googling 'Univers Condensed Fonts .net' gets a number of interesting posts. E.g.;
Univers 67 Bold Condensed Font does not show in my Flash Fonts List
See if you can select the font in the properties window of the VS.NET IDE.
It would also be interesting to see if the following will work in a new test app:
Private Sub Form1_Load(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles MyBase.Load
Label1.Font = New Font("Univers 57 Condensed Font – Univers 57 Condensed", 12, FontStyle.Regular)
End Sub
- Ludek