You are designing a Windows Forms application. You have added a textbox control (say myTextBox) to a FlowLayoutPanel(say myFLPanel). Now you need to set a flow break on the textbox control?
Which of the following piece of code will do that?

 Posted by Niladri.Biswas on 1/18/2013 | Category: Others Interview questions | Views: 3405 | Points: 40
Select from following answers:
  1. myTextBox.SetFlowBreak();
  2. myTextBox.SetFlowBreak(myFLPanel);
  3. myFLPanel.SetFlowBreak(myTextBox, true);
  4. myFLPanel. myTextBox.SetFlowBreak();
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response