No way it makes you lazy. In fact I firmly believe Googling is an integral part of our job.
Matthew Edmondson
Posts
-
Does the Internet make software developers lazy? -
Stupid Router!!!I had this problem, its not a speedtouch is it? It turned out the time on the router was an hour out, and the MS time server wasn't responding. So I found another time server, the router collected the correct time, and its never happened since.....
-
Report Progress from a method being executed within a background worker.Hi, I have just got the handle of using a background worker in order to mutithread my application. However from all the examples I've seen it appears that EVERYTHING invloved in the background worker thread must be within the DoWork event - not very object orientated! How do I call a method of another object WITHIN that separate thread and have the intricasies of such a method be reported back to the background worker? For example:
private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
{
Assessment.Update()
}I would like Assessment.Update() to be able to ReportProgress back to backgroundWorker1 in addition to any ReportProgress which may happen after Assessment.Update() has completed. Many thanks