Hello EveryOne,
I am using WPF Standalon application and at the login time we are loading complete Chart of Account List.
so it will take a time so we were use the thread like
ThreadStart dataDownloadThread1 = delegate
{
Dispatcher.BeginInvoke(DispatcherPriority.Send, (EventHandler)
delegate
{
}, null, null);
dataDownloadThread1.BeginInvoke(delegate(IAsyncResult aysncResult) { dataDownloadThread1.EndInvoke(aysncResult); }, null);
but still we are not happy so is there any way to improve perfomance...
Thanks...