2006-02-01から1日間の記事一覧

Vista

nVidiaのVista対応グラフィックカードについて ・Windows Vista Ready http://jp.nvidia.com/page/technology_vista_home.html

GotFocus、LostFocus

VB6にはあったコントロールのGotFocus、LostFocusが.Netではなくなっています。 ・Control.GotFocus イベント http://www.microsoft.com/japan/msdn/library/default.asp?url=/japan/msdn/library/ja/cpref/html/frlrfsystemwindowsformscontrolclassgotfocu…

HTMLタグを除去する正規表現

文字列からHTMLタグを除去する方法。 // タグを検索する正規表現 Regex regex = new Regex( @"" ); String returnString = regex.Replace( targetString, "" ); ・・・Replaceの使い方がおかしいかも。

USBメモリが認識されない場合

USBメモリが認識されなくなる場合がある。その場合、リンクのような対処をすればよいとのこと。 1.ドライバの再インストール 2.ドライブレターの再割り当て ・USBメモリーがパソコンで認識されないhttp://www.iodata.jp/support/product/wnapgr/wnapgr/htm/f…

文字列から数値だけを取得する

Regex regex = new Regex( "[^0-9]+" ); String test = "1234-567- 3333"; String retrunString = regex.Replace( test, "" );