Hi All,
I want the to increase the width of dropdown list when user click (v) button of ultracombo. In .net combobox, I've achieve this by using sendmessage api as follows:
//Declaration
[DllImport("user32.DLL", EntryPoint = "SendMessage")]private static extern int SendMessage(int hwnd , int wMsg , int wParam ,int lParam );
//In Load
SendMessage(comboBox1.Handle.ToInt32(), 352, 200, 0);
I notice that sendmessage is not working in ultracombo. Can someone help me to achieve this functionality in ultracombo.
Anil Awale
Hi Anil,
Try setting the DropDownWidth property.
Thanks Mike