カテゴリー
アーカイブ
2010/07/30 / コメントする
CXxxxView::OnDraw が以下の様な場合,それを単純にプリンタに送る
{
CXxxxDoc* pDoc = GetDocument();
CRect drawRect ;
GetClientRect(drawRect) ;
pDoc->Object.Draw(pDC,drawRect,…) ;
}
CXxxxView::OnPrint を追加.
void CXxxxView::OnPrint(CDC* pDC, CPrintInfo* pInfo)
{
CXxxxDoc* pDoc = GetDocument();
CRect drawRect ;
drawRect = pInfo->m_rectDraw ;
pDoc->Object.Draw(pDC,drawRect,…) ;
// CView::OnPrint(pDC, pInfo);
}
Is this 投稿 useful?
Useful
Useless
0 of 0 people say this 投稿 is useful.
2010/07/29 / コメントする
ドキュメントのファイルタイプを指定してスケルトンを作成した場合
CXxxxApp::InitInstance 内の以下をコメントに
// EnableShellOpen();
// RegisterShellFileTypes(TRUE);
後から,ドキュメントタイプを指定する場合
リソースの StringTable の対応するドキュメント文字列を変更する.
Is this 投稿 useful?
Useful
Useless
0 of 0 people say this 投稿 is useful.
2010/07/28 / MDI , SDI へのドロップの追加 への1件のコメント
CXxxxApp::InitInstance のメインフレームを作成した後に,以下を追加.
m_pMainWnd->DragAcceptFiles();
Is this 投稿 useful?
Useful
Useless
0 of 0 people say this 投稿 is useful.
2010/07/27 / コメントする
起動時に MDIチャイルドウインドウを表示させない
CXxxxApp::InitInstance の ParseCommandLine(cmdInfo); の後に
if (cmdInfo.m_nShellCommand == CCommandLineInfo::FileNew) {
cmdInfo.m_nShellCommand = CCommandLineInfo::FileNothing ;
}
Is this 投稿 useful?
Useful
Useless
0 of 0 people say this 投稿 is useful.
2010/07/26 / コメントする
メモリカバーを外す事が容易でなかった.
- ネジを緩める所まではマニュアル通り.
- 「カバーをはずす②」が,思ったほど簡単ではない.
- ネジの近くと,その右の部分を上に上げる感じ.
- ネジの付近以外?にツメがあった.
Is this 投稿 useful?
Useful
Useless
0 of 0 people say this 投稿 is useful.
2010/07/16 / コメントする
Is this 投稿 useful?
Useful
Useless
0 of 0 people say this 投稿 is useful.
2010/07/15 / コメントする
mk:@MSITStore:X:MSDNShellcc.chm::/platform/Shell/Shell_Int/Taskbar.htm
http://msdn.microsoft.com/ja-jp/library/cc144179(VS.85).aspx
Is this 投稿 useful?
Useful
Useless
0 of 0 people say this 投稿 is useful.