By owner-draw you mean I have to paint the ComboBox myself?
Well, this won't help because I cannot change the height
anyways. I mean I can paint lets say a height of 50, but
the real height will stay the original...19 or so.
\\\
Private Declare Auto Function SendMessage Lib "user32.dll" ( _
ByVal hwnd As IntPtr, _
ByVal wMsg As Int32, _
ByVal wParam As Int32, _
ByVal lParam As Int32 _
) As Int32
Private Const CB_SETITEMHEIGHT As Int32 = &H153
Private Sub Form1_Load( _
ByVal sender As System.Object, _
ByVal e As System.EventArgs _
) Handles MyBase.Load
SetComboEditHeight(Me.ComboBox1, 50)
End Sub
Private Sub SetComboEditHeight( _
ByVal Control As ComboBox, _
ByVal NewHeight As Int32 _
)
SendMessage(Control.Handle, CB_SETITEMHEIGHT, -1, NewHeight)
Control.Refresh()
End Sub
///
If you set your ComboBox.IntegralHeight Property to true it will automatically resize.
and change the ItemHeight and also set the DrawMode.OwnerDrawVariable.
Note : If the DrawMode property is set to DrawMode.OwnerDrawVariable, this property has no effect.
Aravinda
Bilingual IT Engineer.
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.