T
Thomas Mercer-Hursh
Guest
Mike seems to be covering the specifics, but let me add a couple of general suggestions. I would recommend *not* drawing the window in the constructor since, if it fails, you are left with a class that has not been realized. Much better to do basic, predictable setup things in the constructor, return with the class realized, and then create the window. I think this will also solve your problem. Why in the world would you want to use pessimistic locking? Especially across UI?!? This is very much not good practice.
Continue reading...
Continue reading...