Search the web
Sign In
New User? Sign Up
PowerThreading · Richter/Wintellect Power Threading
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 409 - 438 of 615   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
409
Hi Jeffrey, I am relatively new to programming and just wanted to say thank you for your input into the developer community, it has helped my understanding of...
rynoalberts
Offline Send Email
Apr 2, 2009
8:49 pm
410
Thanks for reporting this. This is my bug and I have just fixed it; I had some bugs in my code when running on 64-bit Windows. I'm enclosing a build which I...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Apr 3, 2009
3:31 am
411
Hi Jeff, Your excellent OneManyResourceLock predates .NET 3.5 and was a welcome and much-needed addition to managed concurrency. However, now with 3.5 we have...
glennslayden
Offline Send Email
Apr 3, 2009
5:24 pm
412
My performance tests show that my OneManyResourceLock lock is still faster than ReaderWriterLockSlim. However, ReaderWriterLockSlim's perf numbers are not bad;...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Apr 3, 2009
5:32 pm
413
Hi, I have just successfully tested the new build and the bug has definitely been fixed, thanks for your quick response. Also, are you in a position to comment...
rynoalberts
Offline Send Email
Apr 3, 2009
7:29 pm
414
Hi Ryno, for your question about the book you may check this post ...
Nikos Baxevanis
n.baxevanis
Offline Send Email
Apr 5, 2009
5:05 pm
415
Yes, that post is true. However, I DO plan to revise the book for .NET 4.0 and I've already started work on that. It should be out by the end of this year or...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Apr 5, 2009
5:08 pm
416
Hi guys, Please accept my apologies for the last question, I'm sure it garnered a lot of frowns, I should have had more tact. In hindsight I suppose it is...
rynoalberts
Offline Send Email
Apr 5, 2009
8:08 pm
417
Hi Jeffrey, I get unhandled exception in very rare situation and cant detect what AE (there are many AEs in our server) throws it. ...
€ ΆΠ’½ΠΈΠΊΠΎΠ»Π°ΠΉ € ...
nsentinel@...
Send Email
Apr 11, 2009
2:26 pm
418
If you are using a recent (within the past 2 or 3 months) version of my library, then I added a bunch of debugging support that can help you with this. First,...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Apr 11, 2009
4:47 pm
419
Thank you for detailed explanation. The main problem is that it happens on customer machine and never happens on developer machine. But we will try to make...
 
nsentinel@...
Send Email
Apr 11, 2009
7:22 pm
420
This info is not currently part of the exception message. However, I can add this to a future version of the library. --Jeffrey Richter...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Apr 12, 2009
3:08 pm
421
Thank you, it will helps a lot in future cases. I carefully analyzed our code and found some cases when exception can be thrown, our customer tested new build...
 
nsentinel@...
Send Email
Apr 12, 2009
7:06 pm
422
Hi Jeffrey, The abstraction provided by AsyncEnumerator makes for beautifully simple and elegant code, but sometimes it's hard to see exactly how to put the...
tim.coulter@...
tim.coulter...
Offline Send Email
Apr 15, 2009
12:51 pm
423
I don't know exactly what you are trying to do but from what I can discern, I would probably write the code this way: public class MyBrowser : GeckoWebBrowser...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Apr 15, 2009
7:08 pm
424
Tim, In general the EventApmFactory suits better for components implementing the Event-Based Asynchronous Pattern. Maybe you should use the AsyncResult<T>...
Nikos Baxevanis
n.baxevanis
Offline Send Email
Apr 15, 2009
7:48 pm
425
You might be right. I don't know enough about the GeckoWebBrowser control. I was assuming that this control already supports the event-based APM and the one...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Apr 15, 2009
7:56 pm
426
Jeffrey, Nikos, Thanks to both of your for your replies and suggestions. It's true that my original question is not specific to GeckoWebBrowser - it could be...
tim.coulter@...
tim.coulter...
Offline Send Email
Apr 15, 2009
8:56 pm
427
So then, you basically want this: private static void WaitForAllAndEachDemo() { // Demonstrate process AsyncEnumerator ae = new...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Apr 16, 2009
1:52 am
428
Hi again Jeffrey, Sorry - it seems that the more I try explain my goals, the more I complicate things. Your example using WebRequest is very instructive, but I...
tim.coulter@...
tim.coulter...
Offline Send Email
Apr 16, 2009
7:43 am
429
I think you want this (which is what Nikos suggested): class MyBrowser : GeckWebBrowser { private AsyncResult m_result; // in the...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Apr 16, 2009
12:01 pm
430
Wow! - so simple when it's explained like that. It's just what I wanted Jeffrey - thanks. Nikos - thanks also for your help. I did read the tutorial that you...
tim.coulter@...
tim.coulter...
Offline Send Email
Apr 16, 2009
3:19 pm
431
Hello, in my little example I want to convert the method 'DoBlockingOperation' to asynchronous operation. But I still blocking the GUI. What am I doing wrong? ...
zeta_ar81
Offline Send Email
Apr 22, 2009
4:27 pm
432
Hi Ezequiel, This is happening because in your iterator you are still calling the method synchronously. Basically for a GUI app you can define a delegate for...
Nikos Baxevanis
n.baxevanis
Offline Send Email
Apr 22, 2009
5:44 pm
433
Yes, this will work and if this is all you're trying to do, then you could simplify it more by just calling ThreadPool.QueueUserWorkItem (if you don't care...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Apr 22, 2009
5:56 pm
434
Hi, you may try this little helper: http://blog.vyvojar.cz/jirka/archive/2009/01/17/running-sync-methods-in-async-way.aspx -- Jiri {x2} Cincura (CTO...
Jiri Cincura
x2develop
Offline Send Email
Apr 22, 2009
6:34 pm
435
In the code below, "LoadSomething" is called in response to a user event in a Silverlight app. I only care about the last call. If I cause the user event many...
el_diosloco
Offline Send Email
Apr 23, 2009
5:34 am
436
This exception occurs if you call DequeueAsyncResult when there is nothing in its queue. My guess is that the item is being discarded AND you are trying to...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Apr 23, 2009
2:22 pm
437
I replaced the discard with a cancel (ae.Cancel(null)) and then wrapped the code after the yield in a only execute if not canceled (if (!ae.IsCanceled())) and...
el_diosloco
Offline Send Email
Apr 23, 2009
6:39 pm
438
I don't have enough information to help you. Somehow, you must be calling DeueueAsyncResult when there is nothing in the queue. -- Jeffrey Richter...
Jeffrey Richter (Wint...
jeffrey.richter
Offline Send Email
Apr 23, 2009
6:42 pm
Messages 409 - 438 of 615   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help