.NET - Windows Controls
9.
How can you programmatically position the cursor on a given line or on a character in the RichTextBox control in C#?
The RichTextBox control contains the Lines array property, which displays one item of an array in a separate line. Each line entry has a Length property, which can be used to accurately position the cursor at a character, as shown in the following code snippet:
private void GoToLineAndColumn(RichTextBox RTB, int Line, int Column)
{
int offset = 0;
for(int i = 0; i < Line -1 && i < RTB.Lines.Length; i++)
{
offset += RTB.Lines[i].Length + 1;
}
RTB.Focus();
RTB.Select(offset + Column, 0);
}
10.
What is the difference between the WindowsDefaultLocation and WindowsDefaultBounds properties?
The WindowsDefaultLocation property makes the form to start up at a location selected by the operating system, but with internally specified size. The WindowsDefaultBounds property delegates both size and starting position choices to the operating system.
11.
Where does an ImageList control appear when you add it at the design time?
The ImageList control is a component; therefore, it appears in the component tray at the design time.
12.
How can you programmattically prevent a Combobox from dropping, in .NET 4.0?
To avoid dropping of a Combobox, you need to override the WndProc() method and ignore WM_LBUTTONDOWN and WM_LBUTTONDBLCLK events.
Quick links
Quantitative Aptitude
Verbal (English)
Reasoning
Programming
Interview
Placement Papers