Click here to Skip to main content
15,886,199 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
Hello,

I am developing windows application in .net framework 4.5.
Facing problem with font size of auto complete list of combo box. The size of combo box test is smaller than font-size of auto complete list.
I want to decrease the size of auto complete list items. Please help me..!!

Thanks in advance :)
Posted
Updated 19-Aug-13 18:05pm
v5
Comments
Richard MacCutchan 19-Aug-13 3:20am    
What, you only posted this 21 minutes ago. Learn some patience. And while you're waiting go to MSDN and look at the properties of a ComboBox.
Richard MacCutchan 19-Aug-13 5:37am    
You're right, it's not that simple.

ummm ..............

...................
...................




...................



...................
 
Share this answer
 
Try like
VB
Code:

        Me.TextBox1.Font = New System.Drawing.Font("Microsoft Sans Serif", 8.25!, _
                               System.Drawing.FontStyle.Regular, _
                               System.Drawing.GraphicsUnit.Point, CType(0, Byte))
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900