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
Are you using custom source for auto suggestion? If so the source should also be in the same language. (i.e)in this case, auto suggestion source should also be in tamil.
Else set AutoCompleteSource
to ListItems
, where the datasource is in tamil
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With