In MFC i can get the it using the following method:
textbox = CWnd::GetWindow(GW_CHILD);
How can i directly access the textbox control of a combobox in C#, so that i can do the following:
textbox.TextAlign = HorizontalAlignment.Right;
???
In MFC i can get the it using the following method:
textbox = CWnd::GetWindow(GW_CHILD);
How can i directly access the textbox control of a combobox in C#, so that i can do the following:
textbox.TextAlign = HorizontalAlignment.Right;
???
I think it is impossible in WinForms.
but you can btain the Horizontal-Alignment functionality by setting ComboBox1.RightToLeft
To RightToLeft.Yes
.