1
vote
1answer
32 views
To generate a PDF page from an MFC MDI CView
My c++ MFC MDI application displays engineering drawings in its views. What is a good way to dump a CView derived object into a PDF file? What libraries could you suggest (not nesesery free)?
I've …
0
votes
1answer
15 views
How to hide a modal dialogbox in MFC application?
hey guys..I have a hard time hiding the modal dialog box...to tell u exactly..what i am doing is..I am trying a design a UI for my own application in MFC..its kinda setup assistant..
In the 1st dialog …
0
votes
2answers
48 views
MFC, just need some directions
I usually don't expect help from outside but I need to solve this quickly and hence am looking for some directions. I have a 6 year old MFC based application running in an xp machine and deleted some …
1
vote
1answer
19 views
How to enumerate MFC controls if I only have a h_wnd ?
Hello. Long time reader, first time poster.
I'm a big noob when it comes to win32 gui apps so here's my question.
Let's say you have a handle to a window:
HWND h_wnd;
That window ultimately has …
1
vote
1answer
22 views
MFC Automation how to implement RemoveDocument OnCloseDocument
I have an MFC MDI Application and I am trying to implement Automation with it. I am trying to create a RemoveDocument. How is that done? OnCloseDocument is causing problems. Is there a "standard" for …
1
vote
3answers
26 views
How to use TRACE with ascii under unicode MFC environment?
I am developing a MFC program under windows CE. It is unicode by default. I can use TRACE to print some message like this
TRACE(TEXT("Hey! we got a problem!\n"));
It works fine if everything is …
0
votes
2answers
14 views
how to move from one form to another in MFC
hey guys,
I am designing a set-up wizard using MFC application controls... how do I move from one form to another in a button click.plz help me guys
0
votes
1answer
22 views
Databinding in MFC
I have an application that is in mfc with a very rich domain object, but I am not sure how to setup the databinding with the cformview. How do you deal with databinding? Are you ussing the DDX and …
1
vote
2answers
16 views
CMFCRibbonEdit does not get focus.
I just added a CMFCRibbonEdit to my ribbon but it seems it does not get the focus.
It appears disabled.
I even copy/pasted an implementation of the creation of this control from a Microsoft sample …
0
votes
1answer
19 views
MFC Active-X control in a winforms window on Vista 64bit; “Class not registered Exception”
In an attempt to try to confirm another SO posters suggestion for key handling in an ActiveX control hosted on a winforms window, I tried making a bare-bones MFC ActiveX control, then placing it on a …
0
votes
1answer
10 views
Not able to Print the folder path in EditBox- MFC
I am using the following function ..instead of CFolderDialog.. to get the folder path...check my code below....am getting a run time error when i try toprint the folder path name in a edit box..
…
1
vote
1answer
29 views
Controlling WriteProfileString
Is it possible to specify the application name which is used by CWinApp::WriteProfileString()?
If I use CWinApp::SetRegistryKey to set the name of my company to "MyCompany", and I call …
0
votes
0answers
28 views
ShellExecute + runas with quotes (”) in parametees, fails to call the executable/batch
I have tried calling a batch file with elevated permissions. For that I have called fallowing function: (ref - http://msdn.microsoft.com/en-us/library/bb762153%28VS.85%29.aspx)
…
0
votes
3answers
47 views
How To Track No Sound Area In A Wav File?
Hello, everyone.
How to track sections without sounds in a wav file?
a small software what I want to develop is deviding a wav file, and it consider a no volume area as a deviding point.
how can a …
0
votes
1answer
27 views
Vertical Scrollbar in CListCtrl
I'm using a CListCtrl in Icon view, but it scrolls horizontally:
1 3 5 7 -->
2 4 6 8 -->
I'd rather it scroll horizontally:
1 2
3 4
5 6
| |
V V
Is there a way to do this?
