[go: up one dir, main page]
More Web Proxy on the site http://driver.im/

タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

mfcに関するcknbstrのブックマーク (5)

  • http://www.g-ishihara.com/mfc_ge_01.htm

    cknbstr
    cknbstr 2012/02/29
    fatal error C1189: #error : Please use the /MD switch for _AFXDLL builds  これはafxver_.h内のプリプロセッサで出ているものですが、_AFXDLLという定義は、本来MFCをDLLで使うときにしか定義されないものです。これが何かしらの原因で定義され
  • How to write Textfiles with encoding in MFC - Jochen Kalmbach's WebLog

    How to write Textfiles with encoding in MFC MFC only can handle ANSI-textfiles with CStdioFile, because it uses the default behaviour of the CRT. But you can open the file-stream by yourself and then you can use the new encoding functionality in the CRT to specify the correct encoding. The follwing example demonstrates this: // Old-Style... do not use... //CStdioFile f; //f.Open(_T("\test.txt"), C

    cknbstr
    cknbstr 2012/02/29
    エンコーディング指定でファイルに書く // Open the file with the specified encoding FILE *fStream; errno_t e = _tfopen_s(&fStream, _T("\test.txt"), _T("wt,ccs=UNICODE")); if (e != 0) return; // failed.. CStdioFile f(fStream); // open the file from this stream f.Write
  • Visual C++ 入門 (MFC)

    ここでは MFC (= Microsoft Foundation Class) を使用したプログラミングの簡単な解説をしています。 使用環境は Windows Xp + Visual Studio .NET (2003) です。 MFC には

    cknbstr
    cknbstr 2012/02/29
  • WorkSpace Visual C++ & MFC

    ※論理座標はページ座標と同じ意味です。 ※デバイス座標はクライアント座標と同じ意味です。原点はウィンドウ領域の左上、単位はピクセルです。 つまり、MM_TEXTと同じ。 ※1twip単位は1/20ポイント。 ※ポイントは計測単位で約1/72インチ。 ※1インチは約25.4mm。1cmは0.39インチ。 ※1インチ当たりのピクセル数を知りたい場合は、次のメンバ関数を使用します。 CDC::GetDeviceCaps(LOGPIXELSX) CDC::GetDeviceCaps(LOGPIXELSY) ※OLEコンテナをサポートする場合は MM_HIMETRICが便利のようです。 CView::OnPrepareDC 画面表示のために OnDraw関数が呼び出される前、 および印刷または印刷プレビューで各ページで OnPrint関数が呼び出される前に、 フレームワークが呼び出します。 マッピン

  • MFC Tips

    作者ホームページサービス(hp.vector)は終了いたしました。 長らくのご利用、ありがとうございます。 ご不明な点があれば、お問い合わせページをご覧の上、お問い合わせください。 ※15秒後にトップページに戻ります。 (c) Vector HOLDINGS Inc.All Rights Reserved.

  • 1