/// ------------------------------------------------------------------------------------
		/// <summary>
		///
		/// </summary>
		/// ------------------------------------------------------------------------------------
		void HandleSizeChanged(object sender, EventArgs e)
		{
			if (m_fParentIsToolstrip)
			{
				// Make sure the height of the control when it's on a toolstrip
				// doesn't exceed the height of a normal toolstrip combo. box.
				SizeChanged -= HandleSizeChanged;
				ToolStripComboBox cboTmp = new ToolStripComboBox();
				txtScrRef.Font = cboTmp.Font.Clone() as Font;
				Height = cboTmp.Height;
				cboTmp.Dispose();
				SizeChanged += HandleSizeChanged;
			}
		}