"Dom" <
doliv...@gmail.com> wrote in message
news:dfe2065a-1968-4152...@c17g2000yqe.googlegroups.com...
Is the code that's processing the data running on the main thread? If so,
and it's a long-running process, that's probably the issue. Put that code in
a separate thread. You'll have to do a little bit of extra coding to update
the UI, since updates can only be performed by code on the main UI thread,
but there are a zillion examples of doing this on the 'Net. Just search for
".net update main ui from other thread invoke" and you should get more hits
than you can eat.