ILoggable

A place to keep my thoughts on programming

Tag Archives: cross-thread exception

Cross-thread data access

Continuing on my recent asynchronous UI adventures, my background object tried to access the SelectedItem of a ComboBox and I came crashing down with the dreaded Cross-Thread exception. At this point most of my code has the if(InvokeRequired) boilerplate down…. … Continue reading

July 12, 2007 .net , ,

INotifyPropertyChanged and Cross-thread exceptions

I’m currently reading Adam Nathan‘s WPF Unleashed. It’s a good read and has me ready for doing some serious WPF work. However, the things I have on my plate are a already Windows Forms and can’t really take a late … Continue reading

July 8, 2007 .net , , , , ,