| Forum |
Thread |
Replies |
Latest activity |
| Tech Off |
Should I go 64bit? |
6 |
Dec 02, 2006 at 11:37 AM |
| Tech Off |
Firefox, .NET 2.0, WebResource.axd.....Three friends intertwined in a love/hate relationship |
2 |
Dec 01, 2006 at 2:00 PM |
| Tech Off |
Single .Net EXE problem (I'm THIS close to an e-mail deployment) |
6 |
Dec 01, 2006 at 1:32 PM |
| Tech Off |
NLA missing from Remote Desktop Client 6.0 for Windows XP? |
3 |
Dec 01, 2006 at 12:54 PM |
| Coffeehouse |
Channel9 v4 Previews |
170 |
Nov 14, 2006 at 1:08 PM |
| Tech Off |
Problem installing the Windows SDK 6.0.6000.0 |
1 |
Nov 13, 2006 at 6:14 AM |
| Coffeehouse |
Channel 9: The Videos RSS Feed Question |
0 |
Nov 10, 2006 at 6:41 AM |
| Coffeehouse |
October "Orcas" CTP now available |
24 |
Nov 07, 2006 at 8:06 AM |
| Coffeehouse |
Vista Licensing |
40 |
Oct 21, 2006 at 5:41 PM |
| Tech Off |
PowerShell: Running an executable with a long filename and using a variable as a command line parame |
3 |
Sep 20, 2006 at 3:39 PM |
BlockingCollection<T> Demonstration in Producer-Consumer Scenarios
Oct 30, 2009 at 5:31 AMWhy does BlockingCollection<T> not expose an event for the consumer?
Kim Hamilton and Wes Dyer: Inside .NET Rx and IObservable/IObserver in the BCL (VS 2010)
Aug 04, 2009 at 12:37 PMIn your first C# sample...
var o = Observable.Return(1); o.Subscribe( x => Console.WriteLine("OnNext({0})", x), ex => Console.WriteLine("Error()"), () => Console.WriteLine("Completed()") );I see you are creating an IObservable object, and you are subscribing to it, but what is telling the observable object to begin calling the OnNext method on its subscribers?
Scott Guthrie: Silverlight 3 is here!
Jul 10, 2009 at 4:40 PMI wish Silverlight had an option to disable the screensaver when playing video. It's the only reason I never use the Silverlight player on Channel 9. I am glad to see Silverlight 3 has shipped, but I am disappointed to see the option is still not available.
Better Software Quality with Visual Studio Team System 2010
Oct 07, 2008 at 4:53 AMMSDN/TechNet Site Redesign: More Useful, Better Experience and Search Really Works :)
May 28, 2008 at 6:27 PMHowever, I am still unable to use Subscriber Downloads with Firefox. When I select an item and click "Download," it tries to download an aspx file. Is there any tweaking I can do, or do you guys still insist on me opening IE for this web site?
Programming in the Age of Concurrency - Anders Hejlsberg and Joe Duffy: Concurrent Programming with
Nov 03, 2007 at 8:02 PMThis is not always the case. How would I translate the following into a parallel for loop?
// ShouldCancel() creates a lock and checks some boolean value
for (int i = 99; i >= 3 && !ShouldCancel(); i -= 3) { ... }
Are there overloads for this yet? I would imagine it would be something like this...
int i = 0;
Parallel.For(
() => i = 99;
() => i >= 3 && !ShouldCancel(),
() => i -= 3,
() => ...
);
Open Specification Promise: What. How. Why.
Nov 21, 2006 at 7:08 PMConversation with Soma: VS2005 SP1 on Vista, Visual Studio Evolution, How to Become a VP
Oct 27, 2006 at 9:47 AMConversation with Soma: VS2005 SP1 on Vista, Visual Studio Evolution, How to Become a VP
Oct 25, 2006 at 5:55 PMThanks, but I am looking for a way to do this in unmanaged C++. I would love to throw the CLR switch in my MFC apps, but the performance hit is too dramatic. Even the UI performance. Building the code is also much slower.
Gary
Conversation with Soma: VS2005 SP1 on Vista, Visual Studio Evolution, How to Become a VP
Oct 24, 2006 at 8:57 PMYou mentioned the reason for Visual Studio 2005 compatibility issues was lack of admin privileges. I run as a normal user all the time in XP and I run Visual Studio 2003 and 2005. If I need to modify the system in some way, like install a service, I have to do it at the command line anyway. I just use runas in those cases.
Are there any issues running Visual Studio 2005 in Vista as a standard user which do not exist in XP?
Also, what kind of issues does Visual Studio 2003 have with Vista?
About native C++ support, do you plan on putting WPF support into MFC? If not, is this exposed through COM or standard C calls?
Thanks,
Gary
See more comments…