Named pipes are a great way to communicate between multiple processes. What's makes them even better is that the processes don't have to share the same language. If you'd like detailed information about named pipes, MSDN has a fairly in depth article. This tutorial is going to demonstrate how to implement communication over named pipes using C# and Interop Services. In Windows, named pipes work al
バージョンが上がるたびにコロコロ名称が変わっているような気がするWindows Searchですが、最新版のWindows Search 4.0のAPIを、C#から利用することについて調べ中です。 途中経過として、各情報へのリンク集(2008年7月時点)と、ちょっとしたサンプルを。 各OS向けWindows Search 4.0ダウンロード先 Windows XP 向け Windows Search 4.0 (KB940157) http://www.microsoft.com/downloads/details.aspx?displaylang=ja&FamilyID=55c18cb3-c916-4298-aba3-5b98904f7cda Windows Server 2003 向け Windows Search 4.0 (KB940157) http://www.microsoft.
Windows Vista and Office View Data Your Way With Our Managed Preview Handler Framework Stephen Toub Code download available at: Preview Handlers 2007_01.exe(276 KB) Contents Hosting a Preview Handler The PreviewHandler Framework Implementing PreviewHandler Using the COM Interfaces Registering Handlers Debugging Conclusion Every version of Microsoft Windows and Office brings new methods and approac
This browser is no longer supported. Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support. .NET, MSDN Magazine, and other Adventures in Life Blogging on pfxteam Hi all- It's been a very long time since I've posted to this blog. That's because I've been spending... Author: Stephen Toub - MSFT Date: 04/21/2010 .NET Matters: Stream Pipeline My la
(Note: I completely rewrote this post on 18th March 2010 to bring it all up to date.) Back with the release of Windows Vista, Microsoft introduced the concept of preview handlers. These let you preview all different file types from within Windows Explorer. Even better, they are both extensible (so you can add more types) and they work in Office too. To make them more developer friendly, I develope
Preview Adobe Photoshop® (PSD) files with the help of Photoshop Preview Handler and Managed Preview Handler Framework in Windows Vista™ Download only the Handler Framework and Photoshop Preview Handler - 314.0 KB Download complete Source code for Photoshop Preview handler - 1,566.8 KB Introduction Preview handler is the latest methodology in Microsoft Windows Vista™, which provide a rich, interact
A C#, C++, Delphi, ActiveX , Javascript , NodeJs and Java trace framework and a trace viewer: Tail, OutputDebugString, event log, and with Log4J, Log4Net, and Microsoft Enterprise Instrumentation Framework (EIF) support. This also comes with full support for Pocket PC, Silverlight, and Android. Download C# demo, library, and documentation (12.9) - 1.45 MB Download Delphi demo, library, and documen
前回、wsdlの定義を参照しC#のクラスに変換と 簡単なメソッドの実行を確認しました。 今回は、登録されている案件の取得を行ってみます。 その前に、mantisに登録されているプロジェクトの一覧の取得から。 プロジェクトを取得するには、 mc_projects_get_user_accessible(username, password) を使用します。 http://[server]/[mantis]/api/soap/mantisconnect.php にアクセスし、左側のmc_projects_get_user_accessibleを クリックすると、こんな画面が表示されるかと。 これが、メソッドの使い方の解説になります。 Input: use: encoded namespace: http://futureware.biz/mantisconnect encodingStyle:
はじめに 2006年9月、.NETで動作するPython「IronPython」が正式にリリースされました。.NET環境の本格的な動的言語ということもあってIronPythonは多くの注目を集めました。その反面、C#やVisual Basicを使っている開発者にとって、IronPythonをどのような局面で使ってよいのかわからない人も少なくないと思います。また、IronPythonの魅力がわからない人もいるのではないかと思います。 そこで、本稿では、C#からIronPythonを利用するメリットとその方法について紹介します。この記事を通してIronPythonに興味を持っていただければ幸いです。対象読者 IronPythonに興味のある.NET開発者。必要な環境 このサンプルは.NET Framework 2.0環境(Visual Studio 2005と2008)にて作成しています。Ir
USBカメラをWindows環境で利用するためには,主に二種類の方法があります.一つはVideo for Windowsを利用する方法,もう一つはDirect Showを利用する方法です.今回は,後者のDirectShowを利用して,C#でUSBカメラを制御する方法を紹介します.このプログラムは,以下のような機能を持っています. USBカメラのプレビュー USBカメラから静止画をキャプチャ&保存 USBカメラから動画をキャプチャ&保存 キャプチャした動画の再生 USBカメラのプロパティを変更(色調,ズームなど) ここではまず,DirectShowの基本的な用語などをまとめ,次に機能ごとにプログラムの大まかな流れを説明していきます.より詳しい内容については,サンプルコードや参考URLを参照してください. なお,動作確認環境は以下のとおりです.他のUSBカメラでもおそらく動作すると思いますが,
NEWSで取り上げたPostSharpが面白そうなので早速実験です。 まず、コンソールアプリケーションプロジェクトを作成して、MyTestAttributeクラスを作成します。 using System; using PostSharp.Laos; [Serializable] class MyTestAttribute : OnMethodBoundaryAspect { public override void OnEntry (MethodExecutionEventArgs eventArgs) { Console.WriteLine ("Enter:" + eventArgs.Method.Name); } public override void OnExit (MethodExecutionEventArgs eventArgs) { Console.WriteLine ("
2022-03-17 digital-marketing-services-5 2021-11-20 Moviesjoy 2021-02-18 digital1 2019-08-02 SeniorAssociateRole 2019-06-22 DellRouter 2019-06-20 Tips For Gift Baskets 2019-06-19 fieldengineer 2019-05-30 Win Out Of Stock Taylor Swift Concert Tickets From Country Radio Station The Bull Facts On How To Purchase Cheap Concert Tickets Online 2019-05-29 Jonas Brothers Concert Tickets Best Bets Jersey Bo
ここに掲載したコードは、『増補改訂版Java言語で学ぶデザインパターン入門 / 結城 浩(著)』に掲載されているサンプルコードをC#に移植したものです。移植後のコードの公開に関しては、結城氏の了解を得ています。 ※当ソースは、Visual C# 2005 Express Editionで動作を確認しています。 ParseExceptionインターフェース using System; namespace Gushwell.DesignPatterns { [Serializable] public class ParseException : System.Exception { public ParseException(string msg) : base(msg) { } } } Nodeクラス using System; namespace Gushwell.DesignPatter
リリース、障害情報などのサービスのお知らせ
最新の人気エントリーの配信
処理を実行中です
j次のブックマーク
k前のブックマーク
lあとで読む
eコメント一覧を開く
oページを開く