元SE。田舎の公務員

通勤快足な生活をしながら、開発技術とウェイトコントロールについてつらつらと。。。

2010-10-01から1日間の記事一覧

C#で【FindWindow】

//HWND FindWindow( // LPCTSTR lpClassName, // クラス名 // LPCTSTR lpWindowName // ウィンドウ名 //); [System.Runtime.InteropServices.DllImport("user32.dll",CharSet = System.Runtime.InteropServices.CharSet.Auto)] static extern IntPtr FindWin…

【C#】【ShowWindow】

ShowWindow() :ウィンドウの表示状態を設定します。 //BOOL ShowWindow( // HWND hWnd, // ウィンドウのハンドル // int nCmdShow // 表示状態 //); const int SW_HIDE = 0; const int SW_SHOWNORMAL = 1; const int SW_NORMAL = 1; const int SW_SHOWMINIM…

Visual Studio タスク一覧機能

Visual Studio 2005のオプションを開いて、環境、タスク一覧とたどると、タスク一覧のカスタマイズが出来る。 ここに、今回のプロジェクトでは「HACK」と「TESTCASE」を追加して、ASP.NET側の制限による変態的なコードに「HACK」を、TestLinkの発行するIDの…