ホーム » VC (ページ 12)

VC」カテゴリーアーカイブ

2025年10月
 1234
567891011
12131415161718
19202122232425
262728293031  

人気の投稿とページ

カテゴリー

最近の投稿

アーカイブ

ブログ統計情報

  • 124,746 アクセス




C2146

次の様なコードで,C2146 , C2065   private: System::Void Form1_Paint(System::Object^ sender, System::Windows::Forms::Pai […]

Continue Reading →

CLI

今度は,C++/CLI . 以前作成した MFC プロジェクト MemStt を変更.   Release 版プロジェクトのプロパティで,     「構成プロパティ」-「全般」-「共通言語ランタイム…」を「/ […]

Continue Reading →

VC 7 で error C2664 std::vector

VC 6 では通っていたが,VC 7 でエラーとなってそのままだったコード. std::vector <void*> voidPtrs(1024,NULL) ; c:\Program Files\Micros […]

Continue Reading →

MFC と STL – 2

Xml_E で,MFC を使用しない様に変更中. XML のデータを用意して,以下の様に単純に 100 個の配列にコピーする時間を計測しようとした.    ElapseTick et ;    CArray xmlAry […]

Continue Reading →

MFC と STL

MFC STL CString::Right など string::substr LPCTSTR string::c_str LPTSTR CString::GetBuffer()    - CString::Rever […]

Continue Reading →

_T(‘C’)

_T(“String”) の様な文字列の場合の動作は理解していたつもりでいたが,… 文字の場合も,同様に _T(‘C’) とはすぐ思いつかなかった. 7 bit […]

Continue Reading →

error C2065 _lpa

T2OLE を利用したら, ——————–構成: Test – Win32 Debug——̵ […]

Continue Reading →

operator[]

以下の様なコードで,配列の要素として書き戻す部分がうまく機能してなかった. BOOL d3D_PgonsA::SetUniqueName (void) {   { // 空の場合 “Pgons_0x̶ […]

Continue Reading →

MemStat.hxx

Xcode や VC , W Mobile で可能な様にコードを書いてみた. #ifndef MemStat_hxx #define MemStat_hxx // #ifdef _WIN32   typedef __in […]

Continue Reading →

C1083

—— ビルド開始 : プロジェクト : CalAxByC, 構成 : Debug Win32 —— コンパイルしています… StdAfx.cpp c1xx : […]

Continue Reading →

コード分析による修正

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

Continue Reading →

VC 7.1 メモリウィンドウ

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

Continue Reading →

explorer /e,/select

Explorer.exe コマンドライン オプション   void CDropADlg::OnExecExplorer()   {     UpdateData(TRUE) ;     CString file = m_ […]

Continue Reading →

xmlns を間違えて 0xE06D7363

xmlns の所を xmlne とタイプミス.そのまま実行して 0xE06D7363. ————————— Mi […]

Continue Reading →

コンパイルで C4786

——————–構成: T_xml_7 – Win32 Debug————&# […]

Continue Reading →

DocTh.exe 2011.01.18 0xc0000374

Win7 環境のイベントビューアを見ていたら,エラーがいっぱい. 障害が発生しているアプリケーション名: DocTh.exe、バージョン: 1.10.2012.120、タイム スタンプ: 0x4f16d6f9 障害が発生 […]

Continue Reading →

HBITMAP から画像サイズ取得

昨日,クリップボードからの取得で画像サイズを求める方法がわからなかった.   HBITMAP hbm = (HBITMAP)::GetClipboardData(CF_BITMAP) ;   if (hbm != NUL […]

Continue Reading →

Clipboard Viewer

MSDN 2001.10 Creating a Clipboard Viewer Window mk:@MSITStore:C:\Program%20Files\Microsoft%20Visual%20Studio\M […]

Continue Reading →

起動時のエラー

Point.hxx include が間違っていて,VTABLE が合ってない. Is this 投稿 useful? Useful Useless 0 of 0 people say this 投稿 is useful […]

Continue Reading →

BDH_Modify クラスを用意

BDH_Modify クラスを用意しました.  class BDH_Modify {  public:    BDH_Modify () { Modified = FALSE ; }  public:   virtual […]

Continue Reading →