ホーム » 2012 (ページ 3)

年別アーカイブ: 2012

2025年8月
 12
3456789
10111213141516
17181920212223
24252627282930
31  

人気の投稿とページ

カテゴリー

最近の投稿

アーカイブ

ブログ統計情報

  • 121,541 アクセス




VC 2005 MFC スマートデバイス AP

以下の様なコードが動作する様に幾つかを書換えてテスト.   CString TF_GetRunStatus (void)   {     CStringArray sa ;     {       sa.Add(::Ge […]

Continue Reading →

LOG_PBH::Term

「LOG_PBH::Term が呼ばれる前に Init が呼ばれた」 以下の様なコードで,PBH::SetDefaultPenBrush() が呼ばれていないと,デバッグウィンドウに表示される.   {     LOGP […]

Continue Reading →

PAtoMHD.AsPln2D を …

PAtoMHD.AsPln2D を IIS のコンポーネントとして登録. DrawVer.asp   <%@ Language=VBScript %>   <% Option Explicit %> […]

Continue Reading →

VC 6 MFC でオートメーション利用

「Class Wizard」-「クラスの追加」-「タイプライブラリから」 InitInstance 内の追加のコード   #ifdef _AFXDLL     Enable3dControls();   #else    […]

Continue Reading →

ipx , PartsA , PartsA_C3D

2012/04/25 以前の PartsA などの ipx の読込みは,CArchive::ReadString を利用していた. 今回,Parts ファミリのファイルアクセスは,LoadText ,SaveText に […]

Continue Reading →

HTML の表示

SVG をダイアログ上に表示したくなったので,CHtmlView などを利用してみた. Spy++ で見ると,クラス名が “Internet Explorer_Server” となる. HtmlV […]

Continue Reading →

コード分析による修正

VC 9 ~\CharFnc.hxx(155) : warning C6284: オブジェクトがパラメータ '3' として渡されました。 ~\CharFnc.hxx(155) : warning C6284: オブジェク […]

Continue Reading →

BDoc ファミリ

コンパイルで以下の様なエラーになった場合 c:\…\DocIB.cxx(77) : error C2065: ‘BDocCSV_D’ : 定義されていない識別子です。 c:\̷ […]

Continue Reading →

VC 7.1 メモリウィンドウ

Is this 投稿 useful? Useful Useless 0 of 0 people say this 投稿 is useful.

Continue Reading →

Shell Extension 2012.03.22

iShelExt.2012.03.22.zip i_ShellExt 1.31.2012.11 i_Tools i_ShellExt Vector Is this 投稿 useful? Useful Useless 0 […]

Continue Reading →

CFont::CreatePointFont でアサート

————————— Microsoft Visual C++ Debug Library —R […]

Continue Reading →

CCheckListBox の使い方

1. 通常の手順で,リストボックスをダイアログに貼り付ける. 2. コントロールのプロパティを「オーナー描画」-「固定」,「文字列あり」-「チェック」に変更する. 3. クラスウィザードなどを利用して,コントロールの変数 […]

Continue Reading →

Shell Extension InfoTip の追加

Shell Extension の作成 InfoTip 1.プロジェクトの作成  MFC App Wizard(dll)   「スタティックライブラリを使用した DLL」を選択   「オートメーション」のサポート 2.ク […]

Continue Reading →

XML の読込テスト – 4

全ては表現できてないが,msxml.dll により読込んだデータの関連はこんな感じか? IXMLDOMDocument                                          documentE […]

Continue Reading →

XML の読込テスト – 3

BOOL ReadElement( MSXML::IXMLDOMElementPtr pElement, long indent ) { CString tab = _T("\t\t\t\t\t\t\t\t\t\t\t\ […]

Continue Reading →

XML の読込テスト – 2

要素へのアクセスはこんな感じと思われるが,Gettext の使い方がよくわからない. BOOL ReadElement(MSXML::IXMLDOMElementPtr pElement,long indent) { C […]

Continue Reading →

XML の読込テスト

// L_xml_2.cpp : コンソール アプリケーション用のエントリ ポイントの定義 // #include “StdAfx.h” #include “L_xml_2.hR […]

Continue Reading →

勘違いをしていたので, ±×÷

UNICODE で,±×÷ はそれぞれ,U+00B1 , U+00D7 , U+00F7 になる. 以下は,よく参考にさせてもらっている所 文字コード(日本語漢字コード表) Is this 投稿 useful? Usef […]

Continue Reading →

RoundRect と svg:rect

svg:rect の rx , ry は,丸くする楕円の半径. Win 32 API などの RoundRect は,楕円の幅と高さ. Is this 投稿 useful? Useful Useless 0 of 0 p […]

Continue Reading →

文字列の縦方向の配置

svg:text の配置で,横方向の指定(text-anchor=”middle”)はあるが,縦方向はなさそうだったので…   if (fabs(incX) > 1e-7 || […]

Continue Reading →