FormStack application and the Transcriber Input System

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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top