Skip to main content

Home/ Coders/ Group items tagged microsoft

Rss Feed Group items tagged

Jack Wong

Charlie Calvert's Community Blog : LINQ Farm: Covariance and Contravariance in C# 4.0 - 0 views

  •  
    null
Jack Wong

Charlie Calvert's Community Blog : CodeRush Xpress for C# - 0 views

  •  
    null
Joel Bennett

Dynamic Languages : The Official Microsoft Silverlight Site - 0 views

  •  
    The Silverlight Dynamic Languages SDK enables developers to use dynamic languages running on the Dynamic Language Runtime (DLR) to build Silverlight applications.
Joel Bennett

VS2010 and .NET Framework 4.0 CTP - 0 views

  •  
    VS2010 is looking really cool with all that "Eliminating 'No-Repro'" stuff...
  •  
    Download Visual Studio 2010 and .NET Framework 4.0 CTP in a Virtual PC image
Joel Bennett

Touchless SDK - CodePlex - 0 views

  •  
    The Touchless SDK enables developers to create multi-touch based applications using a webcam for input. Yeah ... touch without touching. The main idea: to offer users a new and cheap way of experiencing multi-touch capabilities, without the need of expensive hardware or software. All the user needs is a camera, which will track colored markers defined by the user.
Joel Bennett

WPF Chrome - MSDN Code Gallery - 0 views

  •  
    A sample project to implements a custom chrome with a UI similar to what Office 2007 does with its caption area... Basically achieves the effect, respecting the Theme chrome, and providing the same (not quite right) right-click menu on the caption as Office 2007 does
Joel Bennett

How to spawn console processes with redirected standard handles - 0 views

  •  
    Redirecting stdio for child processes
Joel Bennett

REGSVR Sample: Invokes Self-Registration Code - 0 views

  •  
    The source code to (an improved version of) RegSvr32.exe  -- this version has a /c command parameter that forces it to output on the command line instead of using message boxes (why isn't that in the default one?)
Joel Bennett

ImageX Command-Line Options - 0 views

  •  
    the commandline reference for imagex
Joel Bennett

Mvp.Xml Project - Home - 0 views

  •  
    A project by Microsoft MVPs to supplement the .Net Framework's XML processing functionality.  Includes EXSLT, Xinclude, XPointer, etc.
Joel Bennett

Windows Vista update - improves compatibility, reliability, and stability - 0 views

  • It improves the stability of Windows PowerShell.
  • It shortens the recovery time after Windows Vista experiences a period of inactivity.
  • It improves the reliability of Windows Vista when you open the menu of a startup application.
  • ...1 more annotation...
  • This hotfix may receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next service pack that contains this hotfix.
  •  
    Wow, it slices, it dices, it juliannes... and it even seems to help!
Joel Bennett

Deriving from WebClient to handle persisting cookies for login - 0 views

  • Then just use the ExWebClient class to make your requests;
  • Public Class CookieWebClient : Inherits WebClient ' overridden to add cookie headers to http requests. Protected Overrides Function GetWebRequest(ByVal address As System.Uri) As System.Net.WebRequest Dim request As WebRequest = MyBase.GetWebRequest(address) If TypeOf request Is HttpWebRequest Then DirectCast(request, HttpWebRequest).CookieContainer = _cookies End If Return request End Function ' overridden to save cookies to the container for http requests. Protected Overrides Function GetWebResponse(ByVal request As System.Net.WebRequest) As System.Net.WebResponse Dim response As WebResponse = MyBase.GetWebResponse(request) If TypeOf response Is HttpWebResponse Then _cookies.Add(response.ResponseUri, DirectCast(response, HttpWebResponse).Cookies) End If Return response End Function ' overridden to save cookies to the container for async http requests. Protected Overrides Function GetWebResponse(ByVal request As System.Net.WebRequest, ByVal result As System.IAsyncResult) As System.Net.WebResponse Dim response As WebResponse = MyBase.GetWebResponse(request, result) If TypeOf response Is HttpWebResponse Then _cookies.Add(response.ResponseUri, DirectCast(response, HttpWebResponse).Cookies) End If Return response End Function Private Shared _cookies As CookieContainer = New CookieContainer End Class
Joel Bennett

/\/\o\/\/ PowerShelled: Large AD queries in Monad - 0 views

  •  
    For searching for huge result sets in AD you need to set a PageSize, or maybe do the paging by hand.

    Related:
    http://groups.google.com/group/microsoft.public.windows.server.scripting/tree/browse_frm/thread/32864b65a7a4fb70/14689e6f46898340
« First ‹ Previous 201 - 220 of 310 Next › Last »
Showing 20 items per page