FormStack application and the Transcriber Input System

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I used the FormStack example to speed up my application. However, it
seems that textboxes no longer work with the "Transcriber" text input system.
I'm using Transcriber version 1.51 and .NET CF 1.0SP2

I think the problem has to do with the FormStack event loop which looks like
this.

public void Run() {
do
{
System.Windows.Forms.Application.DoEvents();
} while(List.Count > 0);
}

For some reason, this doesn't seem to do some "extra" processing that is
done when you do Application.Run(form) or form.ShowDialog().

Has anybody else seen this?

Vincent.
 
Back
Top