void UpdateGeneratedText(string text)
 {
     if (!SearchControl.IsDisposed)
     {
         SearchControl.BeginInvoke(new Action(() =>
         {
             if (string.IsNullOrEmpty(text))
             {
                 SearchControl.SendKey(new KeyEventArgs(Keys.Enter));
             }
             SearchControl.Text = text;
         }));
     }
     RaiseSpeechRecognized(100, text);
 }