In my desktop application, I use the tamil font (not unicode, but glyphs) in the ComboBox Font property.
It displays well when I enter it into it. But my auto suggestion in the DropDown window displays the default font. How to change this font?
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 the .NET Framework v4.0
source share