Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
270
Increasing the dropdown list in the ultracomboeditor
posted

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

Parents Reply Children
No Data