In my desktop application, I am using a tamil font (not unicode, but glyphs) in a ComboBox Font property.
It displays well when I type into it. But my auto suggestion in the DropDown box is displaying with the default font. How to change that font as well?
Private Sub Billing_Shown(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Shown
If My.Settings.Options_Display_UseOtherLanguage Then
CustomerNameCombo.Font = My.Settings.Options_Display_OtherLanguageFont
End If
End Sub
I am using .NET Framework v4.0