Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
0answers
133 views

Float a control over a CView

I've got an app that uses several CView-derived classes (actually CScrollView) to display document data. For one particular view, I want to add a fly-out edit box to add notes. That is, you'd see a ...
1
vote
1answer
39 views

MFC CView::OnFilePrint won't print more than one copy

I have a class which derives from CView which calls OnFilePrint(), but it seems as though only one copy ever gets printed regardless of how many I enter in the print dialog. Is this a known bug, or am ...
1
vote
1answer
444 views

MFC MDI CView and some kind of bar at bottom of CView

I have created a MDI project with CView's using VS2008Pro. I want to have some sort of bar at the bottom of every CView where i can put controls on, like buttons. I dont know how this bar is called ...
0
votes
1answer
60 views

Copy CView contents to a bitmap

I'd like to create a bitmap copy of the current contents of my CView, which may or may not be currently visible on the screen. Here is the code I've added to my OnDraw function: void MyView::OnDraw ...
0
votes
1answer
143 views

Limiting rendered image size in CView::onDraw()

In a MFC SDI application containing a single CView, I pass the output device context pDC->m_hDC to a mapping library to render the map within the CMyView::OnDraw() method. I would like the ...
0
votes
1answer
290 views

How to get a CView based Windows that do not contain title bar and status bar

I am writing MFC application, I choose CView based application other then Dialog based application. I don't know how to remove title bar and status bar, is there any method to do this? And made a ...