Showing the FolderBrowserDialog control in the Form itself

Hello .NET Guru's,

I need a small clarification on ForlderBrowserDialog control. On button click i am doing the below.

private void button1_Click(object sender, EventArgs e)
{
folderBrowserDialog1.ShowDialog();
}

The above code opens the floder browser dialog box in a new window. But what i would like to know is is that possible to show the folder browser dialog box below the button in the same form instead of opening in a different window.

Thanks in advance....

Loader.
Up arrow icon